You are here: Start » FIL.NET » Function Reference » Point3DGrid » Point3DGrid Fitting » FIL.AdjustPointGrids3D
Aligns (rotation + translation) a point grid to match best the reference point grid.
Namespace: | FilNet |
---|---|
Assembly: | FIL.NET.dll |
Syntax
C++
C#
public static void AdjustPointGrids3D ( FilNet.Point3DGrid inPoints, FilNet.Point3DGrid inReferencePoints, int inMaxIterationCount, float inMatchFraction, float inDiscardFurthestFraction, FilNet.Point3DGrid outAlignedPoints, FilNet.Matrix outAlignment, IList<FilNet.Point3D> diagPointsWorkingSet, IList<FilNet.Point3D> diagReferencePointsWorkingSet, IList<List<FilNet.Segment3D>> diagAttractionSegments )
Parameters
Name | Type | Range | Default | Description | |
---|---|---|---|---|---|
![]() | inPoints | FilNet.Point3DGrid | Data points to be aligned, may contain background clutter. | ||
![]() | inReferencePoints | FilNet.Point3DGrid | Reference points to align to, may only contain points belonging to the object of interest. | ||
![]() | inMaxIterationCount | int | <1, INF> | 100 | Maximal number of iteration for the algorithm. Default value: 100. |
![]() | inMatchFraction | float | <0.0f, 1.0f> | 0.1111111111111111f | Defines fraction of input points that is being fitted in every iteration. Default value: 0.1111111111111111f. |
![]() | inDiscardFurthestFraction | float | <0.0f, 1.0f> | 0.05f | Fraction of point pairs to be discarded during internal ICP loop. Furthest pairs are discarded, and only in last 10% of algorithm iterations. Useful for handling outliers in the inReferencePoints, as well as gaps/holes in the inPoints data. Default value: 0.05f. |
![]() | outAlignedPoints | FilNet.Point3DGrid | The aligned input points. | ||
![]() | outAlignment | FilNet.Matrix | The transform that aligns best the input points to the reference points. | ||
![]() | diagPointsWorkingSet | System.Collections.Generic.IList<FilNet.Point3D> | inPoints after decimation by inMatchFraction, i.e. points which will be fitted in every iteration. | ||
![]() | diagReferencePointsWorkingSet | System.Collections.Generic.IList<FilNet.Point3D> | inReferencePoints after decimation by inMatchFraction, i.e. points which will be fitted in every iteration. | ||
![]() | diagAttractionSegments | System.Collections.Generic.IList<System.Collections.Generic.List<FilNet.Segment3D>> | Attraction segments from every iteration. Note that the algorithm internally moves inReferencePoints towards inPoints (and returns inverse transformation), so the segments show movement of reference towards data. |
Errors
List of possible exceptions:
Error type | Description |
---|---|
DomainError | Input point array is empty in AdjustPointGrids3D. |