Poor Performance on NAIP Imagery - Worse than just wrangling NDVI thresholding #807
-
Hello, I tested this on multiple tiles of NAIP imagery by removing the NIR band on 60 cm pixel size (higher res NAIP). Even with using a high overlap and many different patch_sizes the model performance is basically worse than just using NDVI. If I use a very small patchsize=64 then I atleast get a large number of trees where atleast a small box is found near the canopy centroid, but the entire tree or multiple connected tree crowns won't really be detected and dozens of false negatives on water pixels. IF there is an area in the tile with a large density of trees and another part of the tile has low density trees it just doesn't find the low density ones using a larger patchsize. Anything from 256-1024 really doesn't find hardly any trees even though there are hundreds-thousands of trees to find. I did check and see that you are / 255 to normalize uint8 which is what NAIP is. Also you permute the bands to BGR internally so I didn't do that beforehand, but I did make it channels last. I used this code:
512 patchsize / 0.9 overlap (tile is 1666x1666 pixels)64 patchsize / 0.5 overlap (tile is 1666x1666 pixels)Did I miss something internally or with a different function that significantly improves performance? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 8 replies
-
Hi @zackaryleady - welcome and thanks for the questions! We haven't done much work on data at this coarse a resolution ourselves, but others have seen good results with NAIP data. They perform two of our recommended approaches to improve on the out-of-the-box predictions, so let me start by asking:
If you still aren't seeing decent performance at that point we can be of more help if you can provide a sample image for us to play with. |
Beta Was this translation helpful? Give feedback.
Hi @zackaryleady - welcome and thanks for the questions! We haven't done much work on data at this coarse a resolution ourselves, but others have seen good results with NAIP data. They perform two of our recommended approaches to improve on the out-of-the-box predictions, so let me start by asking: