Back to FabImage Library website
You are here: Start » Function Reference » Surface » Surface Spatial Transforms » CropSurfaceByNeighborsProximity

CropSurfaceByNeighborsProximity
Header: | FIL.h |
---|---|
Namespace: | fil |
Module: | Vision3DStandard |
Removes from the surface points that are too distant from their neighbor points.
Syntax
C++
C#
void fil::CropSurfaceByNeighborsProximity ( const fil::Surface& inSurface, ftl::Optional<const fil::Region&> inRoi, const int inNeighborRadius, const float inMaxDistance, fil::Metric3D::Type inMetric, const float inMinNeighborRatio, bool inPreserveDimensions, fil::Surface& outSurface, ftl::Optional<fil::Region&> outRejected = ftl::NIL )
Parameters
Name | Type | Range | Default | Description | |
---|---|---|---|---|---|
![]() |
inSurface | const Surface& | |||
![]() |
inRoi | Optional<const Region&> | NIL | Region of interest | |
![]() |
inNeighborRadius | const int | 1 - ![]() |
1 | Radius of neighbors to search for real neighbors |
![]() |
inMaxDistance | const float | 0.0 - ![]() |
2.0f | Maximal distance from another point to consider them real neighbors |
![]() |
inMetric | Metric3D::Type | Z | Metric used for measuring distance between points | |
![]() |
inMinNeighborRatio | const float | 0.0 - 1.0 | 1.0f | Fraction of valid neighbors in a given radius that have to be real neighbors |
![]() |
inPreserveDimensions | bool | False | Flag indicating whether the surface dimensions should be preserved or not | |
![]() |
outSurface | Surface& | |||
![]() |
outRejected | Optional<Region&> | NIL | Region of locations where points are too distant from their neighbors |
Optional Outputs
The computation of following outputs can be switched off by passing value ftl::NIL
to these parameters: outRejected.
Read more about Optional Outputs.
Errors
List of possible exceptions:
Error type | Description |
---|---|
DomainError | Incorrect metric in CropSurfaceByNeighborsProximity. |
DomainError | Region of interest exceeds an input surface in CropSurfaceByNeighborsProximity. |