<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Feature extraction from LiDAR and derived rasters in Imagery and Remote Sensing Questions</title>
    <link>https://community.esri.com/t5/imagery-and-remote-sensing-questions/feature-extraction-from-lidar-and-derived-rasters/m-p/347334#M224</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can use python to iterate through your LAS files.&amp;nbsp; Below is an example.&amp;nbsp; It first obtains a spatial reference from an existing las dataset.&amp;nbsp; The code then iterates through all las files in a directory, creates a LAS Dataset, and then runs the Locate Outliers tool with a min/max of 80/325, and an outlier cap of 5,000,000.&amp;nbsp; It outputs the feature classes to a single geodatabase that you can then merge together.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;import arcpy, os
from arcpy import env
env.overwriteOutput = 1
arcpy.CheckOutExtension('3D')
env.workspace = r"D:\Temp\Python\UserData"

dataset = "las1.lasd"
spatial_ref = arcpy.Describe(dataset).spatialReference

x = 1
for lasFile in arcpy.ListFiles("*.las"):
&amp;nbsp;&amp;nbsp;&amp;nbsp; arcpy.CreateLasDataset_management(lasFile, "lasDataset.lasd", "NO_RECURSION", "", spatial_ref)
&amp;nbsp;&amp;nbsp;&amp;nbsp; outlierFC = env.workspace + os.sep + "Data.gdb" + os.sep + "LocateOutliers_" + str(x)
&amp;nbsp;&amp;nbsp;&amp;nbsp; arcpy.LocateOutliers_3d("lasDataset.lasd", outlierFC, "APPLY_HARD_LIMIT", "80", "325", "APPLY_COMPARISON_FILTER", "0", "150", "0.5", "5000000")
&amp;nbsp;&amp;nbsp;&amp;nbsp; x += 1

arcpy.CheckInExtension('3D')&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 11 Dec 2021 16:22:03 GMT</pubDate>
    <dc:creator>JakeSkinner</dc:creator>
    <dc:date>2021-12-11T16:22:03Z</dc:date>
    <item>
      <title>Feature extraction from LiDAR and derived rasters</title>
      <link>https://community.esri.com/t5/imagery-and-remote-sensing-questions/feature-extraction-from-lidar-and-derived-rasters/m-p/347329#M219</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;BR /&gt;Good morning all!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am trying to obtain heights of man made structures and also update / create building footprints using LiDAR and the rasters I have created from them. I have gone through the &lt;A href="https://desktop.arcgis.com/en/arcmap/10.3/manage-data/las-dataset/lidar-solutions-creating-raster-dems-and-dsms-from-large-lidar-point-collections.htm"&gt;this tutorial&lt;/A&gt; that explains how to create a DSM and DEM from LiDAR data (so I now have a DSM and DEM) and also &lt;A href="http://desktop.arcgis.com/en/arcmap/10.3/manage-data/las-dataset/lidar-solutions-estimating-forest-density-and-height.htm"&gt;this tutorial&lt;/A&gt; that explains how to get heights of trees (I just used the minus tool for the entire area and have heights for the entire area). &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The issues I am running into for heights are the outliers in the LiDAR data. I have tried using the Locate Outliers tool, but it just keeps failing saying it can't locate my output table. These outliers skew data greatly when it comes to calculating average heights for buildings (I tested it on an existing polygon). I would like to reclassify these outliers as noise somehow if possible.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As for feature extraction, I really am a new guy when it comes to intense LiDAR analysis in ArcGIS and just am not sure where to begin. I know there are all kinds of paid for 3rd party extensions for LiDAR that include feature extraction, but alas we do not have the budget for such things....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any help is much appreciated!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Jun 2016 12:13:06 GMT</pubDate>
      <guid>https://community.esri.com/t5/imagery-and-remote-sensing-questions/feature-extraction-from-lidar-and-derived-rasters/m-p/347329#M219</guid>
      <dc:creator>RobertFord1</dc:creator>
      <dc:date>2016-06-21T12:13:06Z</dc:date>
    </item>
    <item>
      <title>Re: Feature extraction from LiDAR and derived rasters</title>
      <link>https://community.esri.com/t5/imagery-and-remote-sensing-questions/feature-extraction-from-lidar-and-derived-rasters/m-p/347330#M220</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Robert,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can use the LAS Dataset Profile View window to reclassify the outliers.&amp;nbsp; See the following help document for more information:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://desktop.arcgis.com/en/arcmap/10.3/manage-data/las-dataset/las-dataset-profile-view.htm" title="http://desktop.arcgis.com/en/arcmap/10.3/manage-data/las-dataset/las-dataset-profile-view.htm"&gt;LAS dataset Profile View—Help | ArcGIS for Desktop&lt;/A&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Jun 2016 12:20:41 GMT</pubDate>
      <guid>https://community.esri.com/t5/imagery-and-remote-sensing-questions/feature-extraction-from-lidar-and-derived-rasters/m-p/347330#M220</guid>
      <dc:creator>JakeSkinner</dc:creator>
      <dc:date>2016-06-21T12:20:41Z</dc:date>
    </item>
    <item>
      <title>Re: Feature extraction from LiDAR and derived rasters</title>
      <link>https://community.esri.com/t5/imagery-and-remote-sensing-questions/feature-extraction-from-lidar-and-derived-rasters/m-p/347331#M221</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Jake! I am looking for a way to locate outliers on a mass scale. That's why the locate outliers tool looked like the tool I needed. My study area is county wide so going through one by one is not really an option. Although I will definitely use this for looking at buidlings in question later.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Jun 2016 12:42:27 GMT</pubDate>
      <guid>https://community.esri.com/t5/imagery-and-remote-sensing-questions/feature-extraction-from-lidar-and-derived-rasters/m-p/347331#M221</guid>
      <dc:creator>RobertFord1</dc:creator>
      <dc:date>2016-06-21T12:42:27Z</dc:date>
    </item>
    <item>
      <title>Re: Feature extraction from LiDAR and derived rasters</title>
      <link>https://community.esri.com/t5/imagery-and-remote-sensing-questions/feature-extraction-from-lidar-and-derived-rasters/m-p/347332#M222</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Rob,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try converting your LAS Dataset into a TIN&lt;/P&gt;&lt;P&gt;&lt;A href="http://desktop.arcgis.com/en/arcmap/latest/tools/3d-analyst-toolbox/las-dataset-to-tin.htm" title="http://desktop.arcgis.com/en/arcmap/latest/tools/3d-analyst-toolbox/las-dataset-to-tin.htm"&gt;LAS Dataset To TIN—Help | ArcGIS for Desktop&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Then you can run the Locate Outliers Tool.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Though,&amp;nbsp; from looking at the tool, it looks like it will work on an LAS Dataset as well:&lt;/P&gt;&lt;P&gt;&lt;A href="http://desktop.arcgis.com/en/arcmap/latest/tools/3d-analyst-toolbox/locate-outliers.htm" title="http://desktop.arcgis.com/en/arcmap/latest/tools/3d-analyst-toolbox/locate-outliers.htm"&gt;Locate Outliers—Help | ArcGIS for Desktop&lt;/A&gt;&lt;/P&gt;&lt;P&gt;"&lt;STRONG&gt;Summary&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 0.875rem; margin-bottom: 1.71429em; color: #4d4d4d; font-family: 'Lucida Grande', 'Segoe UI', Arial, sans-serif; background-color: #fefefe;"&gt;Identifies anomalous elevation measurements from terrain, TIN, or LAS datasets that exceed a defined range of elevation values or have slope characteristics that are inconsistent with the surrounding surface." &lt;/P&gt;&lt;P style="font-size: 0.875rem; margin-bottom: 1.71429em; color: #4d4d4d; font-family: 'Lucida Grande', 'Segoe UI', Arial, sans-serif; background-color: #fefefe;"&gt;Have you created an LAS Dataset yet from your LAS data?&lt;/P&gt;&lt;P style="font-size: 0.875rem; margin-bottom: 1.71429em; color: #4d4d4d; font-family: 'Lucida Grande', 'Segoe UI', Arial, sans-serif; background-color: #fefefe;"&gt;&lt;A href="http://desktop.arcgis.com/en/arcmap/latest/tools/data-management-toolbox/create-las-dataset.htm" title="http://desktop.arcgis.com/en/arcmap/latest/tools/data-management-toolbox/create-las-dataset.htm"&gt;Create LAS Dataset—Help | ArcGIS for Desktop&lt;/A&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Jun 2016 14:31:57 GMT</pubDate>
      <guid>https://community.esri.com/t5/imagery-and-remote-sensing-questions/feature-extraction-from-lidar-and-derived-rasters/m-p/347332#M222</guid>
      <dc:creator>AdrianWelsh</dc:creator>
      <dc:date>2016-06-21T14:31:57Z</dc:date>
    </item>
    <item>
      <title>Re: Feature extraction from LiDAR and derived rasters</title>
      <link>https://community.esri.com/t5/imagery-and-remote-sensing-questions/feature-extraction-from-lidar-and-derived-rasters/m-p/347333#M223</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Adrian,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have been using my 13,000 .las files in a LAS Dataset then attempting to feed that into the Locat Outliers tool input. I have discovered that it completes on a small LAS Dataset but not the full one. Does anyone know a of a faster way to break up my enormous folder of .las files into small datasets and iterate through them while using locate outliers?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks again guys!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Jun 2016 16:39:04 GMT</pubDate>
      <guid>https://community.esri.com/t5/imagery-and-remote-sensing-questions/feature-extraction-from-lidar-and-derived-rasters/m-p/347333#M223</guid>
      <dc:creator>RobertFord1</dc:creator>
      <dc:date>2016-06-21T16:39:04Z</dc:date>
    </item>
    <item>
      <title>Re: Feature extraction from LiDAR and derived rasters</title>
      <link>https://community.esri.com/t5/imagery-and-remote-sensing-questions/feature-extraction-from-lidar-and-derived-rasters/m-p/347334#M224</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can use python to iterate through your LAS files.&amp;nbsp; Below is an example.&amp;nbsp; It first obtains a spatial reference from an existing las dataset.&amp;nbsp; The code then iterates through all las files in a directory, creates a LAS Dataset, and then runs the Locate Outliers tool with a min/max of 80/325, and an outlier cap of 5,000,000.&amp;nbsp; It outputs the feature classes to a single geodatabase that you can then merge together.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;import arcpy, os
from arcpy import env
env.overwriteOutput = 1
arcpy.CheckOutExtension('3D')
env.workspace = r"D:\Temp\Python\UserData"

dataset = "las1.lasd"
spatial_ref = arcpy.Describe(dataset).spatialReference

x = 1
for lasFile in arcpy.ListFiles("*.las"):
&amp;nbsp;&amp;nbsp;&amp;nbsp; arcpy.CreateLasDataset_management(lasFile, "lasDataset.lasd", "NO_RECURSION", "", spatial_ref)
&amp;nbsp;&amp;nbsp;&amp;nbsp; outlierFC = env.workspace + os.sep + "Data.gdb" + os.sep + "LocateOutliers_" + str(x)
&amp;nbsp;&amp;nbsp;&amp;nbsp; arcpy.LocateOutliers_3d("lasDataset.lasd", outlierFC, "APPLY_HARD_LIMIT", "80", "325", "APPLY_COMPARISON_FILTER", "0", "150", "0.5", "5000000")
&amp;nbsp;&amp;nbsp;&amp;nbsp; x += 1

arcpy.CheckInExtension('3D')&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 16:22:03 GMT</pubDate>
      <guid>https://community.esri.com/t5/imagery-and-remote-sensing-questions/feature-extraction-from-lidar-and-derived-rasters/m-p/347334#M224</guid>
      <dc:creator>JakeSkinner</dc:creator>
      <dc:date>2021-12-11T16:22:03Z</dc:date>
    </item>
    <item>
      <title>Re: Feature extraction from LiDAR and derived rasters</title>
      <link>https://community.esri.com/t5/imagery-and-remote-sensing-questions/feature-extraction-from-lidar-and-derived-rasters/m-p/347335#M225</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you 1000 times Jake! It's cranking away at it now. While it's doing that, how would I go about extracting features from the resulting rasters? Once the outliers are removed, I will then follow the steps I mentioned in my intial post to get heights (using minus tool). So now I have to extract man made features from this namely buildings.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks again!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Jun 2016 14:15:21 GMT</pubDate>
      <guid>https://community.esri.com/t5/imagery-and-remote-sensing-questions/feature-extraction-from-lidar-and-derived-rasters/m-p/347335#M225</guid>
      <dc:creator>RobertFord1</dc:creator>
      <dc:date>2016-06-22T14:15:21Z</dc:date>
    </item>
    <item>
      <title>Re: Feature extraction from LiDAR and derived rasters</title>
      <link>https://community.esri.com/t5/imagery-and-remote-sensing-questions/feature-extraction-from-lidar-and-derived-rasters/m-p/347336#M226</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #1f497d;"&gt;Hello Jake, &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #1f497d;"&gt;The below works, but I have a new tools set, demo data and training material for an improved process.&amp;nbsp;&amp;nbsp; Here's the link to it, it requires ArcGIS Pro 2.0, Spatial Analyst and 3D Anaylst:&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://esriurl.com/3DMappingWithLidar"&gt;http://esriurl.com/3DMappingWithLidar&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #1f497d;"&gt;First question is what is the spacing of your lidar?&amp;nbsp;&amp;nbsp;&amp;nbsp; If it's less than 3ft, you should be able to extract buildings from it. They will not be perfect. If you buildings are classified with a class code of 6 for buildings, I would suggest this process assuming your data is in feet.&amp;nbsp;&amp;nbsp; Some of the below is from Clayton Crawford on the 3D Team.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #1f497d;"&gt;1.&amp;nbsp; LASPointStatisticsAsRaster (LAS layer filter set to class code 6, building,&lt;BR /&gt;points)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #1f497d;"&gt;2.&amp;nbsp; RasterToPolygon (no simplification)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #1f497d;"&gt;3.&amp;nbsp; RegularizeBuildingFootprint:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #1f497d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #1f497d; font-family: 'Calibri',sans-serif; font-size: 11pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; a. Run Regularize Building Footprint as Circle with a tolerance of 8 and minimum&lt;BR /&gt;radius of 0.1/max radius 100000 and export those with a status of 0 and area&lt;BR /&gt;over 275 sq. meters to Large Circles.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #1f497d; font-family: 'Calibri',sans-serif; font-size: 11pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; b. &lt;/SPAN&gt;&lt;SPAN style="color: #1f497d; font-family: 'Calibri',sans-serif; font-size: 11pt;"&gt;Run Regularize Building Footprint as Circle with a tolerance of 3 and minimum&lt;BR /&gt;radius of 0.1/max radius 100000 and export those with a status of 0 and area&lt;BR /&gt;over 25 sq. meters and under 275 sq meters to Small Circles.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #1f497d; font-family: 'Calibri',sans-serif; font-size: 11pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; c. Combine those circles and use select by location to remove those polygons from&lt;BR /&gt;processing.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #1f497d; font-family: 'Calibri',sans-serif; font-size: 11pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="color: #1f497d; font-family: 'Calibri',sans-serif; font-size: 11pt;"&gt; d. The rest divide into three groups:&amp;nbsp; Large, Medium and Small buildings.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #1f497d; font-family: 'Calibri',sans-serif; font-size: 11pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Large: "Shape_Area" &amp;gt;= 2300&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="color: #1f497d; font-family: 'Calibri',sans-serif; font-size: 11pt;"&gt;Medium: "Shape_Area" &amp;gt;= 464 AND&amp;nbsp; "Shape_Area" &amp;lt; 2300 &lt;/SPAN&gt;&lt;SPAN style="color: #1f497d; font-family: 'Calibri',sans-serif; font-size: 11pt;"&gt;Small:&amp;nbsp; "Shape_Area"&amp;lt; 464&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #1f497d; font-family: 'Calibri',sans-serif; font-size: 11pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Large run Regularize Building Footprint as Right Angles and Diagonals with tolerance 4, densification 4,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Precision 0.25, Diagonal Penalty of 1.5.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #1f497d; font-family: 'Calibri',sans-serif; font-size: 11pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Medium run Regularize Building Footprint as Right Angles and Diagonals with tolerance 3, densification 3, Precision 0.25, Diagonal Penalty of 1.5.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #1f497d; font-family: 'Calibri',sans-serif; font-size: 11pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Small run Regularize Building Footprint as Right Angles with tolerance 2, densification 2, Precision 0.25&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #1f497d;"&gt;One approach with buildings not classified:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #1f497d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Classify LAS Ground&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #1f497d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ClassifyLASBuilding (Pro 1.3) or the 3D Samples tools for Classify Rooftop if you don't have access to 1.3 (might want to wait).&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #1f497d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; LAS Point Statistics As Raster (LAS layer filter set to class code 6, building, points)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #1f497d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; RasterToPolygon (no simplification)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #1f497d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Regularize Building Footprint (see above)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #1f497d;"&gt;If you have parcels, you can do a union on them with the output polygons and select out those with a -1 for fid for the parcel before running Regularize Building Footprint.&amp;nbsp;&amp;nbsp; This will help with dividing lidar buildings to individual buildings in downtown areas and divide joined buildings (vegetation) between properties where the buildings are close.&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; I have also found doing a negative buffer, mulitpart to singlepart and then a positive buffer to help get rid of trees next to buildings that get captured.&amp;nbsp;&amp;nbsp;&amp;nbsp; Sometime I run a statistics function on the output of the LASPointStatisticsAsRaster and then a eliminate polygon part after the Raster to Polygon to get rid of interior parts that are not desired.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #1f497d;"&gt;Thanks, hope this helps.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #1f497d;"&gt;Arthur Crawford - Content Team - Living Atlas&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Jun 2016 15:24:50 GMT</pubDate>
      <guid>https://community.esri.com/t5/imagery-and-remote-sensing-questions/feature-extraction-from-lidar-and-derived-rasters/m-p/347336#M226</guid>
      <dc:creator>ArthurCrawford</dc:creator>
      <dc:date>2016-06-22T15:24:50Z</dc:date>
    </item>
    <item>
      <title>Re: Feature extraction from LiDAR and derived rasters</title>
      <link>https://community.esri.com/t5/imagery-and-remote-sensing-questions/feature-extraction-from-lidar-and-derived-rasters/m-p/347337#M227</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Wow thank you so much Arthur! I will try this out and report back. The last step seems out of my reach as I do not see the Regularize Building Footprint tool in my toolbox....I have the 3D analyst extension and an ArcInfo license on ArcGIS 10.3. Can I download this somewhere? Is this only for 10.4 possibly?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you again&lt;/P&gt;&lt;P&gt;Robert&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Jun 2016 16:11:48 GMT</pubDate>
      <guid>https://community.esri.com/t5/imagery-and-remote-sensing-questions/feature-extraction-from-lidar-and-derived-rasters/m-p/347337#M227</guid>
      <dc:creator>RobertFord1</dc:creator>
      <dc:date>2016-06-22T16:11:48Z</dc:date>
    </item>
    <item>
      <title>Re: Feature extraction from LiDAR and derived rasters</title>
      <link>https://community.esri.com/t5/imagery-and-remote-sensing-questions/feature-extraction-from-lidar-and-derived-rasters/m-p/347338#M228</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Regularize Building Footprint is in 10.4 or 1.2 ArcGIS Pro.&amp;nbsp;&amp;nbsp; I highly recommend upgrading if you are going to do building extraction cleanup.&amp;nbsp;&amp;nbsp; You may use Simplify Building, but the results are better with Regularize Building Footprint.&amp;nbsp;&amp;nbsp; There are other methodologies I use depending on the quality of the data.&amp;nbsp;&amp;nbsp; If you have 1ft spacing lidar, the results can be fairly good.&amp;nbsp;&amp;nbsp; Below are some buildings before manual cleanup from 2ft resolution lidar using another process for extraction, but using the Regularize Building Footprint process above that I processed this morning to add to the World Topo Map.&amp;nbsp;&amp;nbsp; You can see a tree made it in that needs to be deleted in the North West corner.&lt;/P&gt;&lt;P&gt;&lt;IMG class="image-1 jive-image" src="https://community.esri.com/legacyfs/online/208584_pastedImage_0.png" style="max-height: 900px; max-width: 1200px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #1f497d;"&gt;Arthur Crawford - Content Team/Professional Services&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Jun 2016 16:21:54 GMT</pubDate>
      <guid>https://community.esri.com/t5/imagery-and-remote-sensing-questions/feature-extraction-from-lidar-and-derived-rasters/m-p/347338#M228</guid>
      <dc:creator>ArthurCrawford</dc:creator>
      <dc:date>2016-06-22T16:21:54Z</dc:date>
    </item>
    <item>
      <title>Re: Feature extraction from LiDAR and derived rasters</title>
      <link>https://community.esri.com/t5/imagery-and-remote-sensing-questions/feature-extraction-from-lidar-and-derived-rasters/m-p/347339#M229</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Arthur,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My LiDAR has 1 ft spacing. I starting the raster to polygon tool yesterday afternoon and it is still running today. Is this normal? I know my raster is pretty large. I'll just let is crank away I suppose.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also, I ran into &lt;A href="http://www.arlingtonwa.gov/Modules/ShowDocument.aspx?documentID=2406"&gt;this article&lt;/A&gt; that outlines a different methodology for feature extraction. It was written by David Rohde, City of Edmonds. He goes through the same process of creating a DEM and DSM and using the Minus tool. However, to obtain stories for buildings, he uses the raster calculator to divide the resulting Minus raster by 8, converts raster to polygon, adds an area field, then selects all polygons with an area &amp;gt; 300 sq ft. It's a bit more of a dirty method but it looks like it would work. I am still going with what Arthur suggested as it sounds like the better methodology.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Jun 2016 12:54:07 GMT</pubDate>
      <guid>https://community.esri.com/t5/imagery-and-remote-sensing-questions/feature-extraction-from-lidar-and-derived-rasters/m-p/347339#M229</guid>
      <dc:creator>RobertFord1</dc:creator>
      <dc:date>2016-06-23T12:54:07Z</dc:date>
    </item>
    <item>
      <title>Re: Feature extraction from LiDAR and derived rasters</title>
      <link>https://community.esri.com/t5/imagery-and-remote-sensing-questions/feature-extraction-from-lidar-and-derived-rasters/m-p/347340#M230</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Robert,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would start with a small area to test with and get your parameters correct for your data.&amp;nbsp;&amp;nbsp;&amp;nbsp; I 'm doing my processing with a model using an iterator with a grid over the area to do small areas and then merge together.&amp;nbsp;&amp;nbsp; One question is if your data is classified for buildings?&amp;nbsp;&amp;nbsp; Did your output raster show buildings with just one value and no data in the other areas?&amp;nbsp;&amp;nbsp; Also, was there holes in the buildings in the Raster.&amp;nbsp;&amp;nbsp; If so, run a Majority on it before converting to polygons.&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;On this article, it's uses Simplify Buildings instead of Regularize Building Footprints.&amp;nbsp;&amp;nbsp; He also says there is quite a bit of manual clean up, something I avoid as much as possible.&amp;nbsp;&amp;nbsp; I also suggest getting polygons over a certain size, I usually use 500 square feet as my input.&amp;nbsp;&amp;nbsp; There are many ways to get buildings from Lidar that have been developed, I sharing what has worked for me. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We have some additional tools for extraction we will be releasing on a website soon in prototype form that are alternatives to the process above.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Arthur Crawford &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Jun 2016 15:50:42 GMT</pubDate>
      <guid>https://community.esri.com/t5/imagery-and-remote-sensing-questions/feature-extraction-from-lidar-and-derived-rasters/m-p/347340#M230</guid>
      <dc:creator>ArthurCrawford</dc:creator>
      <dc:date>2016-06-23T15:50:42Z</dc:date>
    </item>
    <item>
      <title>Re: Feature extraction from LiDAR and derived rasters</title>
      <link>https://community.esri.com/t5/imagery-and-remote-sensing-questions/feature-extraction-from-lidar-and-derived-rasters/m-p/347341#M231</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Robert, we have a workshop on this workflow with step by step instructions using two methods 1) from Point Clouds 2) from rasters at the Esri Imaging and Mapping Forum this week in San Diego.&amp;nbsp; Unfortunately you will have to attend to learn how.&amp;nbsp; &lt;A class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="https://twitter.com/hashtag/IMF2016?src=hash" style="background: #f5f8fa; color: #0084b4; text-indent: 0px;"&gt;&lt;/A&gt;&lt;S style="color: #0084b4;"&gt;&lt;A class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="https://twitter.com/hashtag/IMF2016?src=hash" style="background: #f5f8fa; color: #0084b4; text-indent: 0px;"&gt;#&lt;/A&gt;&lt;/S&gt;&lt;STRONG style="color: #0084b4; font-weight: 400; text-decoration: underline;"&gt;IMF2016&lt;/STRONG&gt;&lt;SPAN style="color: #292f33; text-indent: 0px; background-color: #f5f8fa;"&gt; &lt;/SPAN&gt;&lt;A class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="https://twitter.com/hashtag/EsriUC?src=hash" style="background: #f5f8fa; color: #0084b4; text-indent: 0px;"&gt;&lt;/A&gt;&lt;S style="color: #0084b4;"&gt;&lt;A class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="https://twitter.com/hashtag/EsriUC?src=hash" style="background: #f5f8fa; color: #0084b4; text-indent: 0px;"&gt;#&lt;/A&gt;&lt;/S&gt;&lt;STRONG style="color: #0084b4; font-weight: 400;"&gt;EsriUC&lt;/STRONG&gt;&lt;SPAN style="color: #292f33; text-indent: 0px; background-color: #f5f8fa;"&gt; Lineup of Speakers &amp;amp; &lt;/SPAN&gt;&lt;A class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="https://twitter.com/hashtag/Technology?src=hash" style="background: #f5f8fa; color: #0084b4; text-indent: 0px;"&gt;&lt;/A&gt;&lt;S style="color: #0084b4;"&gt;&lt;A class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="https://twitter.com/hashtag/Technology?src=hash" style="background: #f5f8fa; color: #0084b4; text-indent: 0px;"&gt;#&lt;/A&gt;&lt;/S&gt;&lt;STRONG style="color: #0084b4; font-weight: 400;"&gt;Technology&lt;/STRONG&gt;&lt;SPAN style="color: #292f33; text-indent: 0px; background-color: #f5f8fa;"&gt; &lt;/SPAN&gt;&lt;A class="twitter-timeline-link" data-expanded-url="http://dld.bz/egRY4" dir="ltr" href="https://t.co/HGe6MIO4rL" rel="nofollow" style="background: #f5f8fa; color: #0084b4; text-indent: 0px;" target="_blank" title="http://dld.bz/egRY4"&gt;&lt;SPAN class="tco-ellipsis"&gt;&lt;/SPAN&gt;&lt;SPAN class="invisible" style="font-size: 0px;"&gt;http://&lt;/SPAN&gt;&lt;SPAN class="js-display-url"&gt;dld.bz/egRY4&lt;/SPAN&gt;&lt;SPAN class="invisible" style="font-size: 0px;"&gt;&lt;/SPAN&gt;&lt;SPAN class="tco-ellipsis"&gt;&lt;SPAN class="invisible" style="font-size: 0px;"&gt; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/A&gt;&lt;SPAN style="color: #292f33; text-indent: 0px; background-color: #f5f8fa;"&gt; &lt;/SPAN&gt;&lt;A class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="https://twitter.com/hashtag/Drones?src=hash" style="background: #f5f8fa; color: #0084b4; text-indent: 0px;"&gt;&lt;/A&gt;&lt;S style="color: #0084b4;"&gt;&lt;A class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="https://twitter.com/hashtag/Drones?src=hash" style="background: #f5f8fa; color: #0084b4; text-indent: 0px;"&gt;#&lt;/A&gt;&lt;/S&gt;&lt;STRONG style="color: #0084b4; font-weight: 400;"&gt;Drones&lt;/STRONG&gt;&lt;SPAN style="color: #292f33; text-indent: 0px; background-color: #f5f8fa;"&gt; &lt;/SPAN&gt;&lt;A class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="https://twitter.com/hashtag/Imagery?src=hash" style="background: #f5f8fa; color: #0084b4; text-indent: 0px;"&gt;&lt;/A&gt;&lt;S style="color: #0084b4;"&gt;&lt;A class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="https://twitter.com/hashtag/Imagery?src=hash" style="background: #f5f8fa; color: #0084b4; text-indent: 0px;"&gt;#&lt;/A&gt;&lt;/S&gt;&lt;STRONG style="color: #0084b4; font-weight: 400;"&gt;Imagery&lt;/STRONG&gt;&lt;SPAN style="color: #292f33; text-indent: 0px; background-color: #f5f8fa;"&gt; &lt;/SPAN&gt;&lt;A class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="https://twitter.com/hashtag/Lidar?src=hash" style="background: #f5f8fa; color: #0084b4; text-indent: 0px;"&gt;&lt;/A&gt;&lt;S style="color: #0084b4;"&gt;&lt;A class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="https://twitter.com/hashtag/Lidar?src=hash" style="background: #f5f8fa; color: #0084b4; text-indent: 0px;"&gt;#&lt;/A&gt;&lt;/S&gt;&lt;STRONG style="color: #0084b4; font-weight: 400;"&gt;Lidar&lt;/STRONG&gt;&lt;SPAN style="color: #292f33; text-indent: 0px; background-color: #f5f8fa;"&gt; &lt;/SPAN&gt;&lt;A class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="https://twitter.com/hashtag/mapping?src=hash" style="background: #f5f8fa; color: #0084b4; text-indent: 0px;"&gt;&lt;/A&gt;&lt;S style="color: #0084b4;"&gt;&lt;A class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="https://twitter.com/hashtag/mapping?src=hash" style="background: #f5f8fa; color: #0084b4; text-indent: 0px;"&gt;#&lt;/A&gt;&lt;/S&gt;&lt;STRONG style="color: #0084b4; font-weight: 400;"&gt;mapping&lt;/STRONG&gt;&lt;SPAN style="color: #292f33; text-indent: 0px; background-color: #f5f8fa;"&gt; &lt;/SPAN&gt;&lt;A class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="https://twitter.com/hashtag/GIS?src=hash" style="background: #f5f8fa; color: #0084b4; text-indent: 0px;"&gt;&lt;/A&gt;&lt;S style="color: #0084b4;"&gt;&lt;A class="twitter-hashtag pretty-link js-nav" data-query-source="hashtag_click" dir="ltr" href="https://twitter.com/hashtag/GIS?src=hash" style="background: #f5f8fa; color: #0084b4; text-indent: 0px;"&gt;#&lt;/A&gt;&lt;/S&gt;&lt;STRONG style="color: #0084b4; font-weight: 400;"&gt;GIS&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;We will give 2 workshops Drone2map 2D and 3D mapping, and Mapping from Point Clouds.&amp;nbsp; Hope to see you there!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Jun 2016 16:09:10 GMT</pubDate>
      <guid>https://community.esri.com/t5/imagery-and-remote-sensing-questions/feature-extraction-from-lidar-and-derived-rasters/m-p/347341#M231</guid>
      <dc:creator>SteveSnow</dc:creator>
      <dc:date>2016-06-23T16:09:10Z</dc:date>
    </item>
    <item>
      <title>Re: Feature extraction from LiDAR and derived rasters</title>
      <link>https://community.esri.com/t5/imagery-and-remote-sensing-questions/feature-extraction-from-lidar-and-derived-rasters/m-p/347342#M232</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Arthur,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My data is classified and your method using LAS Points Stats as Raster worked out. The resulting raster does have holes. I tried the majority filter and it still has holes:&lt;/P&gt;&lt;P&gt;&lt;IMG class="image-2 jive-image" src="https://community.esri.com/legacyfs/online/208776_pastedImage_4.png" style="max-width: 1200px; max-height: 900px;" /&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I converted it to polygons and got the following with holes still: &lt;/P&gt;&lt;P&gt;&lt;IMG class="image-1 jive-image" src="https://community.esri.com/legacyfs/online/208775_pastedImage_3.png" style="max-width: 1200px; max-height: 900px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Would I use the integrate or dissolve tool to somehow fill these in? I'm looking what I can on the simplify building tool now.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Jun 2016 18:17:46 GMT</pubDate>
      <guid>https://community.esri.com/t5/imagery-and-remote-sensing-questions/feature-extraction-from-lidar-and-derived-rasters/m-p/347342#M232</guid>
      <dc:creator>RobertFord1</dc:creator>
      <dc:date>2016-06-23T18:17:46Z</dc:date>
    </item>
    <item>
      <title>Re: Feature extraction from LiDAR and derived rasters</title>
      <link>https://community.esri.com/t5/imagery-and-remote-sensing-questions/feature-extraction-from-lidar-and-derived-rasters/m-p/347343#M233</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Robert,&lt;/P&gt;&lt;P&gt;I would suggest next time remapping/reclassify the image areas with data to one value.&amp;nbsp;&amp;nbsp;&amp;nbsp; For where you are at now, run a dissolve on the polygons, then a positive buffer of 2 ft and then a negative buffer of -2ft.&amp;nbsp;&amp;nbsp; This should get rid of small holes and merge the multiple polygons your have.&amp;nbsp; Then a multipart to singlepart.&amp;nbsp;&amp;nbsp;&amp;nbsp; Then continue with the instruction for the Regularize Building Footprint.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #1f497d; font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif;"&gt;Arthur Crawford - Content Team/Professional Services&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Jun 2016 18:26:45 GMT</pubDate>
      <guid>https://community.esri.com/t5/imagery-and-remote-sensing-questions/feature-extraction-from-lidar-and-derived-rasters/m-p/347343#M233</guid>
      <dc:creator>ArthurCrawford</dc:creator>
      <dc:date>2016-06-23T18:26:45Z</dc:date>
    </item>
    <item>
      <title>Re: Feature extraction from LiDAR and derived rasters</title>
      <link>https://community.esri.com/t5/imagery-and-remote-sensing-questions/feature-extraction-from-lidar-and-derived-rasters/m-p/347344#M234</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Arthur,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I now have my buidling footprints layer. I realize there is still a good bit of clean up (some footprints are merged into one large one, looks like some concrete structures that aren't buildings made it into class 6).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you for your help!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Jun 2016 14:22:35 GMT</pubDate>
      <guid>https://community.esri.com/t5/imagery-and-remote-sensing-questions/feature-extraction-from-lidar-and-derived-rasters/m-p/347344#M234</guid>
      <dc:creator>RobertFord1</dc:creator>
      <dc:date>2016-06-30T14:22:35Z</dc:date>
    </item>
    <item>
      <title>Re: Feature extraction from LiDAR and derived rasters</title>
      <link>https://community.esri.com/t5/imagery-and-remote-sensing-questions/feature-extraction-from-lidar-and-derived-rasters/m-p/347345#M235</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Unfortunately, I never was able to get the locate outliers to work correctly....ESRI doesn't have any good examples on how this tool should be properly used. I am attempting to filter out any LiDAR points that have more than 100 foot difference from the surrounding points. I set my comparison filter in the Locate Outliers tool as such:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG class="image-1 jive-image" src="https://community.esri.com/legacyfs/online/209938_pastedImage_1.png" style="max-width: 1200px; max-height: 900px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The output is not what I expect to see as I know where many outliers are but the tool is not flagging them.The following picture is a screenshot of the Minus tool output. The circled point says it is 1782 feet tall. Obviously this is not correct. The locate outliers tool does not flag any points in my LAS dataset&amp;nbsp; near this point.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now that I have my building footprints layer, I want to calculate the max z value / elevation for each polygon to get the building height using the Minus tool output. This outlier, if it were within a building footprint polygon, would then tell me my building is 1782 feet tall!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG class="image-2 jive-image" src="https://community.esri.com/legacyfs/online/210155_pastedImage_2.png" style="max-width: 1200px; max-height: 900px;" /&gt;&lt;/P&gt;&lt;P&gt;Am I misunderstanding how the locate outliers tool should be used? Is there a way to just locate local outliers from the Minus tool output raster?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you again guys!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Jun 2016 14:32:56 GMT</pubDate>
      <guid>https://community.esri.com/t5/imagery-and-remote-sensing-questions/feature-extraction-from-lidar-and-derived-rasters/m-p/347345#M235</guid>
      <dc:creator>RobertFord1</dc:creator>
      <dc:date>2016-06-30T14:32:56Z</dc:date>
    </item>
    <item>
      <title>Re: Feature extraction from LiDAR and derived rasters</title>
      <link>https://community.esri.com/t5/imagery-and-remote-sensing-questions/feature-extraction-from-lidar-and-derived-rasters/m-p/347346#M236</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I've created a separate thread for this question that is awaiting approval to be posted:&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;A _jive_internal="true" href="https://community.esri.com/message/618436"&gt;https://community.esri.com/message/618436&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Jun 2016 16:24:07 GMT</pubDate>
      <guid>https://community.esri.com/t5/imagery-and-remote-sensing-questions/feature-extraction-from-lidar-and-derived-rasters/m-p/347346#M236</guid>
      <dc:creator>RobertFord1</dc:creator>
      <dc:date>2016-06-30T16:24:07Z</dc:date>
    </item>
    <item>
      <title>Re: Feature extraction from LiDAR and derived rasters</title>
      <link>https://community.esri.com/t5/imagery-and-remote-sensing-questions/feature-extraction-from-lidar-and-derived-rasters/m-p/347347#M237</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Robert,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I know you saw this, but wanted others to see it.&amp;nbsp;&amp;nbsp; There are two blogs on extracting features out there on Geonet.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Mine:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.esri.com/migration-blogpost/56007"&gt;Arthur's Feature Extraction from LiDAR, DEMs and Imagery&lt;/A&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Geoff's:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.esri.com/migration-blogpost/56035"&gt;3D Workshop Feature Extraction Tools&lt;/A&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Arthur&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Jul 2016 20:13:55 GMT</pubDate>
      <guid>https://community.esri.com/t5/imagery-and-remote-sensing-questions/feature-extraction-from-lidar-and-derived-rasters/m-p/347347#M237</guid>
      <dc:creator>ArthurCrawford</dc:creator>
      <dc:date>2016-07-11T20:13:55Z</dc:date>
    </item>
    <item>
      <title>Re: Feature extraction from LiDAR and derived rasters</title>
      <link>https://community.esri.com/t5/imagery-and-remote-sensing-questions/feature-extraction-from-lidar-and-derived-rasters/m-p/347348#M238</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all, thanks a bunch for the tools, I'm getting alot of tree noise using these tools:&lt;BR /&gt;any ideas about how to curb this?&lt;BR /&gt;&lt;IMG class="image-1 jive-image" src="https://community.esri.com/legacyfs/online/383946_pastedImage_1.png" style="width: auto; height: auto;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Nov 2017 14:35:16 GMT</pubDate>
      <guid>https://community.esri.com/t5/imagery-and-remote-sensing-questions/feature-extraction-from-lidar-and-derived-rasters/m-p/347348#M238</guid>
      <dc:creator>LeoLadefian5</dc:creator>
      <dc:date>2017-11-17T14:35:16Z</dc:date>
    </item>
  </channel>
</rss>

