Click here to Skip to main content
15,886,631 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi All,

I am having a set of images in Folder1 . If the image contains elephant(s) then need to move those images to Folder2. How can I achieve this functionality. Kindly help me.

Thanks in Advance
Posted
Updated 7-Jun-14 0:32am
Comments
Nirav Prabtani 7-Jun-14 6:01am    
What do you mean by elephant(s)??
P.Salini 7-Jun-14 6:04am    
The image may contain elephants, human or train. From those i need to get the images which contains only elephants. My question is, Is there a way to achieve this?

I tried edge detection and template matching techniques but not able to detect properly
Richard MacCutchan 7-Jun-14 7:10am    
Then you need to refine your code. There is no simple way to determine the shape of an object by programming.
P.Salini 7-Jun-14 7:46am    
Thank you for the reply, can you tell me what are the refining techniques that can be used, so that I can study and try to implement.
Richard MacCutchan 7-Jun-14 7:52am    
Sorry, but image detection is a large subject, you need to find tutorials and libraries to study for yourself.

This is not a coding problem, it is the area of machine learning.
How do you know an elephant is an elephant? You have seen one before and was told that that was how an elephant looked. Right?
How do you expect a computer to do the same thing. Yes, it has to learn like what you did. You have to train the computer to recognize images of different animal types, so that when it sees new image it can compare it with those images that it has seen and memorized and to determine its type based on some similarity measures.
How to train a computer to achieve this, that is the area of machine learning, a field of artificial intelligence, which is beyond the scope of this quick answers forum. To learn more, you can ask google on topics like artificial neural networks, support vector machine, self-organizing map etc.
 
Share this answer
 
v3

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900