Welcome to the Java Programming Forums


The professional, friendly Java community. 21,500 members and growing!


The Java Programming Forums are a community of Java programmers from all around the World. Our members have a wide range of skills and they all have one thing in common: A passion to learn and code Java. We invite beginner Java programmers right through to Java professionals to post here and share your knowledge. Become a part of the community, help others, expand your knowledge of Java and enjoy talking with like minded people. Registration is quick and best of all free. We look forward to meeting you.


>> REGISTER NOW TO START POSTING


Members have full access to the forums. Advertisements are removed for registered users.

Results 1 to 3 of 3

Thread: blur filter

  1. #1
    Junior Member
    Join Date
    Oct 2013
    Posts
    2
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default blur filter

    can somebody briefly explain the blur filter process???


  2. #2
    Member
    Join Date
    Oct 2013
    Location
    Saint-Petersburg, Russia
    Posts
    33
    Thanks
    0
    Thanked 5 Times in 5 Posts

    Default Re: blur filter

    Obviously you just need to substitute every pixel by average between it and several neighbor pixels. Process each component (R, G, B) separately for this purpose, of course.

  3. #3
    Administrator copeg's Avatar
    Join Date
    Oct 2009
    Location
    US
    Posts
    5,320
    Thanks
    181
    Thanked 833 Times in 772 Posts
    Blog Entries
    5

    Default Re: blur filter

    What did your favorite search engine tell you? Perhaps this webpage was at the top for your search too? Java Image Processing - Blurring for Beginners

Similar Threads

  1. image filter
    By Shomora in forum What's Wrong With My Code?
    Replies: 1
    Last Post: December 5th, 2012, 06:36 AM
  2. image filter
    By wap in forum Java Theory & Questions
    Replies: 2
    Last Post: June 28th, 2012, 06:26 AM
  3. Blur Image
    By smack in forum Algorithms & Recursion
    Replies: 2
    Last Post: April 7th, 2012, 10:16 AM
  4. Screen Blur
    By Ludicrous in forum Java Theory & Questions
    Replies: 2
    Last Post: April 1st, 2012, 10:34 AM
  5. Blur Image
    By psrkiran in forum Algorithms & Recursion
    Replies: 10
    Last Post: December 31st, 2009, 07:57 AM