The implementation of paper:"Tree Species Classification of Forest Stands Using Multisource Remote Sensing Data"
Fusion different structure data base on mechine learning
1.1 Multi-spectral image(Sentinel-2)
2.2 LiDAR data
3.3 Hyper-spectral image
Traditional OBIA (Object-Based Image Analysis) methods were adopted to cluster the same pixel. (This is just a clustering method; you can choose any method you prefer, such as super-pixel segmentation or k-means based on features extracted by a deep learning model.)
The key point of this method is how to express different structure data as curves.
Drawing the histogram on each band.
Each pixel location involves 12 bands; therefore, simply calculate the mean value based on the object.

Before we start extracting features, let's assume that the same tree has the same structure, such as height and the shape of the canopy.
Based on this assumption, the curve that reflects the tree's geo-structure can be generated by counting the lighting numbers in the vertical direction.



Now, all different structure data has been described as curves. You can use any ML algorithm you like to classify them. However, according to our experiment, curve matching might be better, as it can achieve higher accuracy performance with fewer samples.



