Back to FabImage Library website
You are here: Start » Function Reference » Computer Vision » Shape Fitting 3D » CreateSegmentFittingMap3D
CreateSegmentFittingMap3D
Header: | FIL.h |
---|---|
Namespace: | fil |
Module: | Vision3DStandard |
Precomputes a data object that is required for fast segment fitting on surfaces.
Applications: Used together with segment fitting, but can be moved before the loop.
Syntax
C++
C#
void fil::CreateSegmentFittingMap3D ( const fil::SurfaceFormat& inSurfaceFormat, const fil::SegmentFittingField& inFittingField, ftl::Optional<const fil::CoordinateSystem2D&> inFittingFieldAlignment, const int inScanCount, ftl::Optional<float> inSamplingStep, int inScanWidth, fil::InterpolationMethod::Type inSurfaceInterpolation, fil::SegmentFittingMap& outFittingMap, ftl::Array<fil::Segment2D>& diagScanSegments, ftl::Array<fil::Rectangle2D>& diagSamplingAreas )
Parameters
Name | Type | Range | Default | Description | |
---|---|---|---|---|---|
![]() |
inSurfaceFormat | const SurfaceFormat& | Dimensions, depth image pixel type, coordinate offsets and scales of a surface on which segment fitting will be performed | ||
![]() |
inFittingField | const SegmentFittingField& | Defines a rectangle in which scan segments will be created | ||
![]() |
inFittingFieldAlignment | Optional<const CoordinateSystem2D&> | NIL | Adjusts the fitting field to the position of the inspected object | |
![]() |
inScanCount | const int | 3 - ![]() |
10 | The number of points that will be searched to estimate the position of the segment |
![]() |
inSamplingStep | Optional<float> | NIL | Desired distance between consecutive sampling points on the scan segments; if Nil, the bigger of surface X and Y scales is chosen | |
![]() |
inScanWidth | int | 1 - ![]() |
5 | The width of each scan field in pixels of the surface depth image |
![]() |
inSurfaceInterpolation | InterpolationMethod::Type | InterpolationMethod::NearestNeighbour | Interpolation method used for extraction of depth image pixel values | |
![]() |
outFittingMap | SegmentFittingMap& | Optimized data required for segment fitting | ||
![]() |
diagScanSegments | Array<Segment2D>& | Segments along which the scans will be run | ||
![]() |
diagSamplingAreas | Array<Rectangle2D>& | Scan fields created for point detection |