MCPcopy Create free account
hub / github.com/PDAL/PDAL / doFilter

Method doFilter

filters/NormalFilter.cpp:106–114  ·  view source on GitHub ↗

public method to access filter, used by GreedyProjection and Poisson filters

Source from the content-addressed store, hash-verified

104
105// public method to access filter, used by GreedyProjection and Poisson filters
106void NormalFilter::doFilter(PointView& view, int knn)
107{
108 m_args->m_knn = knn;
109 ProgramArgs args;
110 addArgs(args);
111 // We're never parsing anything, so we'll just end up with default vals.
112 // This makes sure that the arg pointer (m_viewpointArg) is valid.
113 filter(view);
114}
115
116void NormalFilter::prepared(PointTableRef table)
117{

Callers 2

runMethod · 0.45
filterMethod · 0.45

Calls 2

addArgsFunction · 0.70
filterFunction · 0.70

Tested by

no test coverage detected