learning steps for image recognition algorithm

25,579

Solution 1

Need a lot more information on what you want, but take a look at OpenCV

http://sourceforge.net/projects/opencvlibrary/

To see good examples.

Solution 2

I'd get Ritter's book (warning: costly!) and give it serious studying. If you just want to grab existing code and go play then perhaps you should look at libraries like OpenCV (see Lou's answer).

Solution 3

The ultimate goal of most image processing is to extract information about some high-level and application-dependent objects from an image available in low-level (pixel) form. The objects may be of every day interest like in robotics, cosmic ray showers or particle tracks like in physics, chromosomes like in biology, houses, roads, or differently used agricultural surfaces like in aerial photography or synthetic-aperture radar, etc.

This task of pattern recognition is usually preceded by multiple steps of image restoration and enhancement, image segmentation, or feature extraction, steps which can be described in general terms. The final description in problem-dependent terms, and even more so the eventual image reconstruction, escapes such generality, and the literature of application areas has to be consulted.

Share:
25,579
Dead Programmer
Author by

Dead Programmer

Sr.Java Programmer, SCEA When you torture data too much, it will reveal itself.

Updated on July 09, 2022

Comments

  • Dead Programmer
    Dead Programmer almost 2 years

    I have decided to spend my personal time after office hours to learn the building blocks of how images jpeg type are parsed and represented in screen. My interest is on object recognition in an image.so I want to know where to start , I know there are math involved in this.so I needed step by step on what resources in Internet specifically to look at.