Thread: Name that image process!

  1. #16
    Malum in se abachler's Avatar
    Join Date
    Apr 2007
    Posts
    3,195
    Quote Originally Posted by Sebastiani View Post
    Wow, big diff. What's the process being used to generate the upper right-hand image? I really don't know a whole lot about what filters do what, so I can't even begin to guess (except that it's some sort of edge-detector). But yeah, whatever you did, it looks a lot better.
    Well, its similar to a sobel filter, except I threw out all the cumbersome matrix math. It's actually the same process i was using before except I removed the part that filters based on vector angle. The earlier image was only returning diagonal edges that ran LL to UR. This one actually just returns all edges.

    Basically Im taking the pixel gradient and applying a sigmoid clamping function sqrt(sin(atan())), so that hard edges stay hard, but soft edges, like gradual shade or lighting changes get softened even further.

  2. #17
    Registered User
    Join Date
    Oct 2009
    Posts
    1
    hi to every one

  3. #18
    Malum in se abachler's Avatar
    Join Date
    Apr 2007
    Posts
    3,195
    Please don't bump old threads.

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Problem reading tiff image files?
    By compz in forum C++ Programming
    Replies: 9
    Last Post: 10-30-2009, 04:17 AM
  2. sequenceing or queueing multiple process
    By sv_joshi_pune in forum Windows Programming
    Replies: 1
    Last Post: 08-14-2009, 09:43 AM
  3. Replies: 3
    Last Post: 10-15-2008, 09:24 AM
  4. Problem with forking a process
    By Unitedroad in forum C Programming
    Replies: 10
    Last Post: 10-04-2007, 01:43 AM
  5. process programming
    By St0rM-MaN in forum Linux Programming
    Replies: 2
    Last Post: 09-15-2007, 07:53 AM