public method to access filter, used by GreedyProjection and Poisson filters
| 104 | |
| 105 | // public method to access filter, used by GreedyProjection and Poisson filters |
| 106 | void 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 | |
| 116 | void NormalFilter::prepared(PointTableRef table) |
| 117 | { |