You are here: Start » Function Reference » Computer Vision » Shape Fitting » CreatePathFittingMap
CreatePathFittingMap
Header: | FIL.h |
---|---|
Namespace: | fil |
Module: | MetrologyPro |
Precomputes a data object that is required for fast path fitting on images.
Applications: Used together with path fitting, but can be moved before the loop.
Syntax
void fil::CreatePathFittingMap ( const fil::ImageFormat& inImageFormat, const fil::PathFittingField& inFittingField, ftl::Optional<const fil::CoordinateSystem2D&> inFittingFieldAlignment, ftl::Optional<float> inScanStep, const int inScanWidth, const fil::SamplingParams& inSamplingParams, fil::PathFittingMap& outFittingMap, ftl::Array<fil::Segment2D>& diagScanSegments, ftl::Array<fil::Rectangle2D>& diagSamplingAreas )
Parameters
Name | Type | Range | Default | Description | |
---|---|---|---|---|---|
![]() |
inImageFormat | const ImageFormat& | Dimensions, depth and pixel type of the images on which fitting will be performed | ||
![]() |
inFittingField | const PathFittingField& | Defines a stripe in which scan segments will be created | ||
![]() |
inFittingFieldAlignment | Optional<const CoordinateSystem2D&> | NIL | Adjusts the fitting field to the position of the inspected object | |
![]() |
inScanStep | Optional<float> | 0.0 - ![]() |
NIL | Optional implicit conversion of the input path to an equidistant one |
![]() |
inScanWidth | const int | 1 - ![]() |
5 | The width of each scan field (in pixels) |
![]() |
inSamplingParams | const SamplingParams& | .interpolation Bilinear | Parameters controlling the sampling process | |
![]() |
outFittingMap | PathFittingMap& | Optimized data required for path fitting | ||
![]() |
diagScanSegments | Array<Segment2D>& | Segments along which the scans will be run | ||
![]() |
diagSamplingAreas | Array<Rectangle2D>& | Scan fields created for point detection |
Description
The operation creates a series of scan maps that can be later used by other Shape Fitting filters. Each scan map corresponds to a single scan segment of inScanWidth length.
The optional parameter inFittingFieldAlignment defines the transform to be performed on the inFittingField so that the result is defined in a new context, e.g. returned by one of Template Matching filters.
Remarks
Read more about Local Coordinate Systems in Machine Vision Guide: Local Coordinate Systems.
This filter is a part of the Shape Fitting toolset. To read more about this technique, one can refer to the Shape Fitting chapter of our Machine Vision Guide
See Also
- FitPathToEdges – Performs a series of 1D edge detections and creates a path from the detected points.
- FitPathToRidges – Performs a series of 1D ridge detections and creates a path from the detected points.
- FitPathToStripe – Performs a series of 1D stripe detections and creates a path from the detected points.
- FitPathToEdges_Direct – Performs a series of 1D edge detections and creates a path from the detected points.
- FitPathToRidges_Direct – Performs a series of 1D ridge detections and creates a path from the detected points.
- FitPathToStripe_Direct – Performs a series of 1D stripe detections and creates a path from the detected points.