Back to FabImage Library website
You are here: Start » Function Reference » Computer Vision » Shape Fitting 3D » FitPathToRidges3D

FitPathToRidges3D
Header: | FIL.h |
---|---|
Namespace: | fil |
Module: | Vision3DStandard |
Performs a series of 1D ridge detections and creates a path from the detected points.
Applications: Tracing of a thin line, whose rough location is known beforehand.
Syntax
C++
C#
void fil::FitPathToRidges3D ( const fil::Surface& inSurface, const PathFittingMap& inFittingMap, const RidgeScanParams3D& inRidgeScanParams, fil::Selection::Type inRidgeSelection, ftl::Optional<const fil::LocalBlindness&> inLocalBlindness, ftl::Optional<int> inMaxProfileGapWidth, ftl::Optional<int> inMaxPathInterpolationLength, ftl::Optional<float> inMaxDeviationDelta, float inMaxIncompleteness, ftl::Conditional<ftl::Array<fil::Point3D> >& outPath, ftl::Optional<ftl::Array<ftl::Conditional<fil::SurfaceRidge1D> >&> outRidges = ftl::NIL, ftl::Optional<ftl::Conditional<fil::Profile>&> outDeviationProfile = ftl::NIL, ftl::Optional<ftl::Array<fil::Profile>&> outHeightProfiles = ftl::NIL, ftl::Optional<ftl::Array<fil::Profile>&> outResponseProfiles = ftl::NIL, ftl::Optional<ftl::Conditional<ftl::Array<fil::Segment3D>>&> outPathSegments = ftl::NIL )
Parameters
Name | Type | Range | Default | Description | |
---|---|---|---|---|---|
![]() |
inSurface | const Surface& | Surface to fit the path to | ||
![]() |
inFittingMap | const PathFittingMap& | Input fitting map | ||
![]() |
inRidgeScanParams | const RidgeScanParams3D& | Parameters controlling the ridge extraction process | ||
![]() |
inRidgeSelection | Selection::Type | SelectionBest | Selection mode of ridges | |
![]() |
inLocalBlindness | Optional<const LocalBlindness&> | NIL | Defines conditions in which weaker ridges can be detected in the vicinity of stronger ridges | |
![]() |
inMaxProfileGapWidth | Optional<int> | 0 - ![]() |
1 | Maximal number of consecutive not existing profile points |
![]() |
inMaxPathInterpolationLength | Optional<int> | NIL | Maximal number of consecutive points not found | |
![]() |
inMaxDeviationDelta | Optional<float> | 0.0 - ![]() |
NIL | Maximal difference between deviations of consecutive path points |
![]() |
inMaxIncompleteness | float | 0.0 - 0.999 | 0.1f | Maximal fraction of ridge points not found |
![]() |
outPath | Conditional<Array<Point3D> >& | Fitted path or nothing if the fitting failed | ||
![]() |
outRidges | Optional<Array<Conditional<SurfaceRidge1D> >&> | NIL | Found ridges | |
![]() |
outDeviationProfile | Optional<Conditional<Profile>&> | NIL | Profile of distances between the actual path points and the corresponding reference path points | |
![]() |
outHeightProfiles | Optional<Array<Profile>&> | NIL | Extracted surface height profiles | |
![]() |
outResponseProfiles | Optional<Array<Profile>&> | NIL | Profiles of the ridge operator response | |
![]() |
outPathSegments | Optional<Conditional<Array<Segment3D>>&> | NIL | Segments of the fitted path or nothing if the fitting failed |
Optional Outputs
The computation of following outputs can be switched off by passing value ftl::NIL
to these parameters: outRidges, outDeviationProfile, outHeightProfiles, outResponseProfiles, outPathSegments.
Read more about Optional Outputs.
Hardware Acceleration
This operation supports automatic parallelization for multicore and multiprocessor systems.
Errors
List of possible exceptions:
Error type | Description |
---|---|
DomainError | Ridge operator parameters are too low in surface ridges detector in FitPathToRidges3D. |