Ask Your Question
3

object identification in aerial image

asked Apr 29 '13

Darshan gravatar image

image description i am considering an aerial image taken from an UAV as input to our project. Please suggest the method or procedure that should be followed in order to identify and, later count the banana trees in the image. i am using opencv library along with visual studio 2010. I have been able to filter the images using mean shift and also image descriptionextract only the vegetation part of the image but i am unable to proceed further. Any help would be hugely appreciated. image description

Preview: (hide)

3 answers

Sort by » oldest newest most voted
4

answered Apr 29 '13

You can use findContours on your binary images to define regions of interest and segment out the existing blobs. Before that you might want to remove some small blobs by applying erosion and dilation functionality.

After you retrieved the different contours, you could use those contours to perform object detection. If your banana plant has a specific look from top, then you can create a cascade classifier for the model. Or you could use a machine learning technique like SVM or random forests.

Preview: (hide)

Comments

thank u. i finished finding d contour an all... but can u tell me how to train a SVM or random forests to identify all d banana tree in the image... M new to machine learning and opencv as well..

Darshan gravatar imageDarshan (Apr 29 '13)edit

then basically you need to go read topics like this one, which is a tutorial about SVM. I will not work out the code for you, because it will take some time to actually complete it...

StevenPuttemans gravatar imageStevenPuttemans (Apr 29 '13)edit

okay i go through the tutorial. i tried template matching to identify the trees but it only identifies the tree from which i took template.. can u tel me how can i actually make that it to identify all the trees.

Darshan gravatar imageDarshan (Apr 29 '13)edit

you need to switch from template matching towards model based matching. Look for Viola & Jones cascade classifier, a SVM based on HOG features or even a latentSVM approach.

StevenPuttemans gravatar imageStevenPuttemans (Apr 29 '13)edit
0

answered May 6 '15

Lance gravatar image

Hi! I'm solving the exact same problem right now. Were you able to count the bananas? Can you please help me.

Preview: (hide)

Comments

Why are you popping up all these ancients topics, please create a new one for your purpose!

StevenPuttemans gravatar imageStevenPuttemans (May 7 '15)edit
0

answered Sep 22 '17

Dear Darshan,

This is a very interesting topic. I have been doing similar research in banana plantation. I would like to know your progress in banana plant counting ?

Can you give me some insights on how to apply OpenCV to detect the banana plantations. I look forward to hear from you.

Thank you.

Regards,

Suman Ghimire

Msc in Engineering & Technology SIIT, Thammasat University Thailand

Preview: (hide)

Question Tools

Stats

Asked: Apr 29 '13

Seen: 3,650 times

Last updated: Apr 29 '13