Sophie

Sophie

distrib > Fedora > 13 > i386 > by-pkgid > 413e0bdb3c48563b2d8d9038d07d5533 > files > 2228

grass-6.3.0-15.fc13.i686.rpm

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>GRASS GIS: v.lidar.growing</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<link rel="stylesheet" href="grassdocs.css" type="text/css">
</head>
<body bgcolor="white">

<img src="grass_logo.png" alt="GRASS logo"><hr align=center size=6 noshade>

<h2>NAME</h2>
<em><b>v.lidar.growing</b></em>  - Building contour determination and Region Growing algorithm for determining the building inside
<h2>KEYWORDS</h2>
vector, LIDAR
<h2>SYNOPSIS</h2>
<b>v.lidar.growing</b><br>
<b>v.lidar.growing help</b><br>
<b>v.lidar.growing</b> <b>input</b>=<em>name</em> <b>output</b>=<em>name</em> <b>first</b>=<em>name</em>  [<b>tj</b>=<em>float</em>]   [<b>td</b>=<em>float</em>]   [--<b>overwrite</b>]  [--<b>verbose</b>]  [--<b>quiet</b>] 

<h3>Flags:</h3>
<DL>
<DT><b>--overwrite</b></DT>
<DD>Allow output files to overwrite existing files</DD>
<DT><b>--verbose</b></DT>
<DD>Verbose module output</DD>
<DT><b>--quiet</b></DT>
<DD>Quiet module output</DD>
</DL>

<h3>Parameters:</h3>
<DL>
<DT><b>input</b>=<em>name</em></DT>
<DD>Name of input vector map</DD>

<DT><b>output</b>=<em>name</em></DT>
<DD>Name for output vector map</DD>

<DT><b>first</b>=<em>name</em></DT>
<DD>Name of the first pulse vector map</DD>

<DT><b>tj</b>=<em>float</em></DT>
<DD>Threshold for cell object frequency in region growing</DD>
<DD>Default: <em>0.2</em></DD>

<DT><b>td</b>=<em>float</em></DT>
<DD>Threshold for double pulse in region growing</DD>
<DD>Default: <em>0.6</em></DD>

</DL>
<h2>DESCRIPTION</h2>

<em>v.lidar.growing</em> is the second of three steps to filter LiDAR data. 
The filter aims to recognize and extract attached and detached object 
(such as buildings, bridges, power lines,  trees, etc.) in order to create 
a Digital Terrain Model. 
<br>
<br>
The modules identifies which is the internal area of every object on a 
LiDAR point surface. The classification categories from 
<em>v.lidar.edgedetection</em> are now rasterized. For each cell, it is 
evaluated if it (the cell) contains a point with double impulse (difference 
between the first and last pulse greater than a given threshold). Starting 
from cells classified as OBJECT and with only one pulse all linked cells 
are selected and a convex hull algorithm is applied to them. Simultaneously, 
the mean of the corresponding heights (mean edge height) are computed. 
Points inside the convex hull are classified as OBJECT if their height is 
greater than or equal to the previously mean computed edge height. This 
last step is done only in case of high planimetric resolution.

<h2>NOTES</h2>

The input data should be the output result of the <em>v.lidar.correction</em> 
module. Otherwise, it goes to error! The output of this module will be 
the input of <em>v.lidar.correction</em> module. The output will be a vector 
map which points are pre-classified as:
<br>
<br>
TERRAIN SINGLE PULSE (cat = 1, layer = 2)
<br>
TERRAIN DOUBLE PULSE (cat = 2, layer = 2)
<br>
OBJECT SINGLE PULSE (cat = 3, layer = 2)
<br>
OBJECT DOUBLE PULSE (cat = 4, layer = 2)
<br>
<br>

The final result of the whole procedure (v.lidar.edgedetection, 
v.lidar.growing, v.lidar.correction) will be a point classification in the 
same categories as above.

<h2>EXAMPLES</h2>

<h4>Basic region growing procedure</h4>
<div class="code"><pre>
v.lidar.growing input=edge output=growing
</pre></div>

<h2>SEE ALSO</h2>
<em><a HREF="v.lidar.edgedetection.html">v.lidar.edgedetection</a></em>,
<em><a HREF="v.lidar.correction.html">v.lidar.correction</a></em>,
<em><a HREF="v.surf.bspline.html">v.surf.bspline</a></em>

<h2>AUTHOR</h2>
Original version of program in GRASS 5.4:
<BR>
Maria Antonia Brovelli, Massimiliano Cannata, Ulisse Longoni and Mirko Reguzzoni
<BR><BR>
Update for GRASS 6.X:
<BR>
Roberto Antolin and Gonzalo Moreno

<h2>REFERENCES</h2>

Antolin, R. et al., 2006. Digital terrain models determination by LiDAR 
technology: Po basin experimentation. Bolletino di Geodesia e Scienze 
Affini, anno LXV, n. 2, pp. 69-89.
<br>
<br>
Brovelli M. A., Cannata M., Longoni U.M., 2004. LIDAR Data Filtering and 
DTM Interpolation Within GRASS, Transactions in GIS, April 2004,  vol. 8, 
iss. 2, pp. 155-174(20), Blackwell Publishing Ltd.
<br>
<br>
Brovelli M. A., Cannata M., 2004. Digital Terrain model reconstruction in 
urban areas from airborne laser scanning data: the method and an  example 
for Pavia (Northern Italy). Computers and Geosciences 30 (2004) pp.325-331
<br>
<br>
Brovelli M. A. and Longoni U.M., 2003. Software per il filtraggio di dati 
LIDAR, Rivista dell?Agenzia del Territorio, n. 3-2003, pp. 11-22 (ISSN 1593-2192).
<br>
<br>
Brovelli M. A., Cannata M. and Longoni U.M., 2002. DTM LIDAR in area urbana, 
Bollettino SIFET N.2, pp. 7-26.
<br>
<br>
Performances of the filter can be seen in the
<a HREF="http://www.itc.nl/isprswgIII-3/filtertest/MainDoc.htm">ISPRS WG III/3 Comparison of Filters</a> 
report by Sithole, G. and Vosselman, G., 2003. 
<br>

<p><i>Last changed: $Date: 2007-10-18 15:40:28 +0200 (Thu, 18 Oct 2007) $</i>

<HR>
<P><a href="index.html">Main index</a> - <a href="vector.html">vector index</a> - <a href="full_index.html">Full index</a></P>
<P>&copy; 2003-2008 <a href="http://grass.osgeo.org">GRASS Development Team</a></p>
</body>
</html>