I have a drone-based image point cloud with thousands of points per sq. meter (where each point has a RedGreenBlue value between 0 and 255 for each channel), and I would like to know the proportion of points that are ‘green’ (say where 2G - R - B >200) in each 1m cell of raster encompassing the point cloud. I guess doing this would involve a combination of lasfilter and lasvoxel, but could anyone suggest a suitable pipeline for this?
I have a drone-based image point cloud with thousands of points per sq. meter (where each point has a RedGreenBlue value between 0 and 255 for each channel), and I would like to know the proportion of points that are ‘green’ (say where 2G - R - B >200) in each 1m cell of raster encompassing the point cloud. I guess doing this would involve a combination of lasfilter and lasvoxel, but could anyone suggest a suitable pipeline for this?
--
Download LAStools at
http://lastools.org
http://rapidlasso.com
Be social with LAStools at
http://facebook.com/LAStools
http://twitter.com/LAStools
http://linkedin.com/groups/LAStools-4408378
Manage your settings at
http://groups.google.com/group/lastools/subscribe
---
You received this message because you are subscribed to the Google Groups "LAStools - efficient tools for LiDAR processing" group.
To unsubscribe from this group and stop receiving emails from it, send an email to lastools+u...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/lastools/5ce0b058-2126-410a-a87f-a165996a04fd%40googlegroups.com.
Hello,we could add a filter that uses your formula for "greenness" aka 2G - R - B that then allows to eliminate points. Then we compute two rasters with point counts and by dividing one with the other you get the desired ratio of "greenness". On my example I have tried no filter, greenness above 10, above 20, and above 40 as you can see in the attached screenshots. Is that what you are looking for?Regards from Indonesia,Martin
On Thu, Feb 13, 2020 at 1:06 AM Guillermo Castilla <guillerm...@canada.ca> wrote:
--I have a drone-based image point cloud with thousands of points per sq. meter (where each point has a RedGreenBlue value between 0 and 255 for each channel), and I would like to know the proportion of points that are ‘green’ (say where 2G - R - B >200) in each 1m cell of raster encompassing the point cloud. I guess doing this would involve a combination of lasfilter and lasvoxel, but could anyone suggest a suitable pipeline for this?
Download LAStools at
http://lastools.org
http://rapidlasso.com
Be social with LAStools at
http://facebook.com/LAStools
http://twitter.com/LAStools
http://linkedin.com/groups/LAStools-4408378
Manage your settings at
http://groups.google.com/group/lastools/subscribe
---
You received this message because you are subscribed to the Google Groups "LAStools - efficient tools for LiDAR processing" group.
To unsubscribe from this group and stop receiving emails from it, send an email to last...@googlegroups.com.
Hello,
this has now been added to LASlib and can be used in lasgrid via these command switches to create two rasters. Then simply use a raster calculator to divide one raster by the other to calculate the percentage.lasgrid -i in.laz -step 2 -counter_16bit -odix _all -obil
lasgrid -i in.laz -keep_RGB_greenness 40 65535 -step 2 -counter_16bit -odix _green40 -obilHere is a preliminary version of lasgrid with this new function:Regards,Martin