Skip to content

Latest commit

 

History

History
76 lines (59 loc) · 2.07 KB

filters.neighborclassifier.rst

File metadata and controls

76 lines (59 loc) · 2.07 KB

filters.neighborclassifier

The neighborclassifier filter allows you update the value of the classification for specific points to a value determined by a K-nearest neighbors vote. For each point, the k nearest neighbors are queried and if more than half of them have the same value, the filter updates the selected point accordingly

For example, if an automated classification procedure put/left erroneous vegetation points near the edges of buildings which were largely classified correctly, you could try using this filter to fix that problem.

Similiarly, some automated classification processes result in prediction for only a subset of the original point cloud. This filter could be used to extrapolate those predictions to the original.

Example 1

This pipeline updates the Classification of all points with classification 1 (unclassified) based on the consensus (majority) of its nearest 10 neighbors.

{
  "pipeline":[
    "autzen_class.las",
    {
      "type" : "filters.neighborclassifier",
      "domain" : "Classification[1:1]",
      "k" : 10
    },
    "autzen_class_refined.las"
  ]
}

Example 2

This pipeline moves all the classifications from "pred.txt" to src.las. Any points in src.las that are not in pred.txt will be assigned based on the closest point in pred.txt.

{
  "pipeline":[
    "src.las",
    {
      "type" : "filters.neighborclassifier",
      "k" : 1,
      "candidate" : "pred.txt"
    },
    "dest.las"
  ]
}

Options

candidate

A filename which points to the point cloud containing the points which will do the voting. If not specified, defaults to the input of the filter.

domain

A range <ranges> which selects points to be processed by the filter. Can be specified multiple times. Points satisfying any range will be processed

k

An integer which specifies the number of neighbors which vote on each selected point.