v.lidar.growing.html 3.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. <h2>DESCRIPTION</h2>
  2. <em>v.lidar.growing</em> is the second of three steps to filter LiDAR data.
  3. The filter aims to recognize and extract attached and detached object
  4. (such as buildings, bridges, power lines, trees, etc.) in order to create
  5. a Digital Terrain Model.
  6. <br>
  7. <br>
  8. The modules identifies which is the internal area of every object on a
  9. LiDAR point surface. The classification categories from
  10. <em>v.lidar.edgedetection</em> are now rasterized. For each cell, it is
  11. evaluated if it (the cell) contains a point with double impulse (difference
  12. between the first and last pulse greater than a given threshold). Starting
  13. from cells classified as OBJECT and with only one pulse all linked cells
  14. are selected and a convex hull algorithm is applied to them. Simultaneously,
  15. the mean of the corresponding heights (mean edge height) are computed.
  16. Points inside the convex hull are classified as OBJECT if their height is
  17. greater than or equal to the previously mean computed edge height. This
  18. last step is done only in case of high planimetric resolution.
  19. <h2>NOTES</h2>
  20. The input data should be the output result of the <em>v.lidar.edgedetection</em>,
  21. module. Otherwise, it goes to error! The output of this module will be
  22. the input of <em>v.lidar.correction</em> module. The output will be a vector
  23. map which points are pre-classified as:
  24. <br>
  25. <br>
  26. TERRAIN SINGLE PULSE (cat = 1, layer = 2)
  27. <br>
  28. TERRAIN DOUBLE PULSE (cat = 2, layer = 2)
  29. <br>
  30. OBJECT SINGLE PULSE (cat = 3, layer = 2)
  31. <br>
  32. OBJECT DOUBLE PULSE (cat = 4, layer = 2)
  33. <br>
  34. <br>
  35. The final result of the whole procedure (<em>v.lidar.edgedetection</em>,
  36. <em>v.lidar.growing</em>, <em>v.lidar.correction</em>) will be a point
  37. classification in the same categories as above.
  38. <h2>EXAMPLES</h2>
  39. <h3>Basic region growing procedure</h3>
  40. <div class="code"><pre>
  41. v.lidar.growing input=edge output=growing first=firstpulse
  42. </pre></div>
  43. <h2>REFERENCES</h2>
  44. Antolin, R. et al., 2006. Digital terrain models determination by LiDAR
  45. technology: Po basin experimentation. Bolletino di Geodesia e Scienze
  46. Affini, anno LXV, n. 2, pp. 69-89.
  47. <p>
  48. Brovelli M. A., Cannata M., Longoni U.M., 2004. LIDAR Data Filtering and
  49. DTM Interpolation Within GRASS, Transactions in GIS, April 2004, vol. 8,
  50. iss. 2, pp. 155-174(20), Blackwell Publishing Ltd.
  51. <p>
  52. Brovelli M. A., Cannata M., 2004. Digital Terrain model reconstruction in
  53. urban areas from airborne laser scanning data: the method and an example
  54. for Pavia (Northern Italy). Computers and Geosciences 30 (2004) pp.325-331
  55. <p>
  56. Brovelli M. A. and Longoni U.M., 2003. Software per il filtraggio di dati
  57. LIDAR, Rivista dell?Agenzia del Territorio, n. 3-2003, pp. 11-22 (ISSN 1593-2192).
  58. <p>
  59. Brovelli M. A., Cannata M. and Longoni U.M., 2002. DTM LIDAR in area urbana,
  60. Bollettino SIFET N.2, pp. 7-26.
  61. <p>
  62. Performances of the filter can be seen in the
  63. <a href="http://www.itc.nl/isprswgIII-3/filtertest/MainDoc.htm">ISPRS WG III/3 Comparison of Filters</a>
  64. report by Sithole, G. and Vosselman, G., 2003.
  65. <h2>SEE ALSO</h2>
  66. <em>
  67. <a href="v.lidar.edgedetection.html">v.lidar.edgedetection</a>,
  68. <a href="v.lidar.correction.html">v.lidar.correction</a>,
  69. <a href="v.surf.bspline.html">v.surf.bspline</a>,
  70. <a href="v.surf.rst.html">v.surf.rst</a>,
  71. <a href="v.in.lidar.html">v.in.lidar</a>,
  72. <a href="v.in.ascii.html">v.in.ascii</a>
  73. </em>
  74. <h2>AUTHORS</h2>
  75. Original version of program in GRASS 5.4:
  76. <br>
  77. Maria Antonia Brovelli, Massimiliano Cannata, Ulisse Longoni and Mirko Reguzzoni
  78. <p>
  79. Update for GRASS 6.X:
  80. <br>
  81. Roberto Antolin and Gonzalo Moreno