I'm trying to develop a system, which recognizes various objects present in an image based on their primitive features like texture, shape & color.

The first stage of this process is to extract out individual objects from an image and later on doing image processing on each one by one.

However, segmentation algorithm I've studied so far are not even near perfect or so called Ideal Image segmentation algorithm.

Segmentation accuracy will decide how much better the system responds to given query.

Segmentation should be fast as well as accurate.

Can any one suggest me any segmentation algorithm developed or implemented so far, which won't be too complicated to implement but will be fair enough to complete my project..

Any Help is appreicated..

link|improve this question

73% accept rate
Sorry, what you're looking for hasn't been invented yet. – nikie Feb 18 '11 at 14:33
feedback

2 Answers

Doing a Google search turned up this paper: http://www.cse.iitb.ac.in/~sharat/papers/prim.pdf

It seems that getting it any better is a hard problem, so I think you might have to settle for what's there.

link|improve this answer
When we took this project, we promised our guides that we'll be able to detect different people based on their faces in the image. We thought there would be an algorithm. But I quite agree with you Tony & Nikie. I thought may be I've not done proper research. So, I posted this question here so that I may be get some better suggestion from even better people who have much experience. – Mew 3.4 Feb 18 '11 at 15:23
@Mew 3.4: Do you want a segmentation algorithm or do you want a face/person detector? There are face detectors (google for Viola&Jones) and person detectors (google histogram of oriented gradients) that are relatively simple, fast and reliable. No segmentation needed. – nikie Feb 18 '11 at 16:12
@nikie: I've gone through those algo. They are quite accurate. But I'm actually looking for a general purpose thing which will help me with all the general objects detection like trees, stones, flag, head, etc.. or something closer to it.... – Mew 3.4 Feb 19 '11 at 13:51
feedback

you can try the watershed segmentation algorithm also you can calculate the accuracy of the segmentation algorithm by the qualitative measures

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.