views:

148

answers:

5

any websites, books etc. If someone would like to share their own experiences. thank you

+1  A: 

I've had a lot of success with open-cv. I've done an effect similar to Adobe's "Magic Wand" tool.

http://opencv.willowgarage.com/wiki/

http://en.wikipedia.org/wiki/OpenCV

If you are interested in writing your own library you will need a pretty serious math background. The algorithms involved can be pretty intense.

Joe Cannatti
OpenCV is a computer vision library, not an image processing library.
rlbond
A: 

There's a good list of simple image processing operators here, but really the best is to take courses in DSP and image processing.

rlbond
well they usually use MATLAB.
rashid
Image processing is not language-dependent.
rlbond
+2  A: 

This is a free book which runs through some recurring tasks in computer vision and image processing.

Regarding the C++, you can take a look at OpenCV which is a computer vision library written in c/c++

liza
A: 

Did some C image processing when I was in school.

I read this ebook. It was helpful.

http://homepages.inf.ed.ac.uk/rbf/BOOKS/PHILLIPS/cips2ed.pdf

Yada
A: 

Magick++ is a good API for image processing in C++, and has a tutorial(PDF).

Chinmay Kanchi