Ask Your Question
0

Best methods for detecting trees in aerial images?

asked 2017-06-22 20:53:52 -0600

cartycrabber gravatar image

I'm working on a project to count the number of trees in an aerial image. I've looked at different object detection techniques in OpenCV (haar cascades, HOG) but I feel like I don't have a very good grasp one what situations to use the different techniques in. I'm thinking that I'm probably going to implement a few techniques and compare them, but which techniques should I be looking at and why?

edit retag flag offensive close merge delete

Comments

LBerger gravatar imageLBerger ( 2017-06-23 04:28:57 -0600 )edit

How do these methods come here? He isn't about reconstructing 3D models from multi-view images, but tree counting...

kbarni gravatar imagekbarni ( 2017-06-23 07:21:46 -0600 )edit

"We process images of real cities automatically and efficiently to create parameterized and semantic 3D models, in which streets, buildings and vegetation are discriminated, and the number of floors, positions ..." right vegetation is not only tree

LBerger gravatar imageLBerger ( 2017-06-23 07:51:08 -0600 )edit

1 answer

Sort by ยป oldest newest most voted
3

answered 2017-06-23 03:19:14 -0600

kbarni gravatar image

How is the forest you are trying to analyse?

If it's a planted forest (regular tree distribution) you can try a fourier analysis to see the density of the trees and the direction of the rows. Then try to segment the forest area using a texture analysis (Haralick descriptors, wavelet analysis, etc...) and estimate the number of trees from the area and density. (see the articles of Olivier Regniers)

Another method I know for tree counting is the marked point processes. It gives good results, but it is harder to implement. See the work of Guillaume Perrin at INRIA Nice.

If the trees are similar, you might also try the template matching algorithm; it's already implemented in OpenCV, but it's a less robust approach.

Probably by searching on the internet, you can find more articles on this topic, forest detection and tree counting is an important application of the remote sensing techniques. I know well the work of the two researchers I mentioned above, so I can recommend their approaches.

edit flag offensive delete link more

Question Tools

1 follower

Stats

Asked: 2017-06-22 20:53:52 -0600

Seen: 2,935 times

Last updated: Jun 23 '17