Back to Aurora Vision Library website

You are here: Start » Function Reference » Computer Vision » Shape Fitting 3D » FitCircleToEdges3D

FitCircleToEdges3D


Header: AVL.h
Namespace: avl
Module: Vision3DStandard

Performs a series of 1D edge detections and finds a circle that best matches the detected points.

Applications: Precise detection of a circular object or hole, whose rough location is known beforehand.

Syntax

C++
C#
 
void avl::FitCircleToEdges3D
(
	const avl::Surface& inSurface,
	const CircleFittingMap& inFittingMap,
	const EdgeScanParams3D& inEdgeScanParams,
	avl::Selection::Type inEdgeSelection,
	atl::Optional<const avl::LocalBlindness&> inLocalBlindness,
	atl::Optional<int> inMaxProfileGapWidth,
	float inMaxIncompleteness,
	avl::CircleFittingMethod::Type inFittingMethod,
	atl::Optional<avl::MEstimator::Type> inOutlierSuppression,
	atl::Conditional<avl::Circle3D>& outCircle,
	atl::Optional<atl::Array<atl::Conditional<avl::SurfaceEdge1D>>&> outEdges = atl::NIL,
	atl::Optional<atl::Conditional<avl::Profile>&> outDeviationProfile = atl::NIL,
	atl::Optional<atl::Array<avl::Point3D>&> outInliers = atl::NIL,
	atl::Optional<atl::Array<avl::Profile>&> outHeightProfiles = atl::NIL,
	atl::Optional<atl::Array<avl::Profile>&> outResponseProfiles = atl::NIL
)

Parameters

Name Type Range Default Description
Input value inSurface const Surface& Surface to fit the circle to
Input value inFittingMap const CircleFittingMap& Input fitting map
Input value inEdgeScanParams const EdgeScanParams3D& Parameters controlling the edge extraction process
Input value inEdgeSelection Selection::Type SelectionBest Selection mode of edges
Input value inLocalBlindness Optional<const LocalBlindness&> NIL Defines conditions in which weaker edges can be detected in the vicinity of stronger edges
Input value inMaxProfileGapWidth Optional<int> 0 - 1 Maximal number of consecutive not existing profile points
Input value inMaxIncompleteness float 0.0 - 0.999 0.1f Maximal fraction of edge points not found
Input value inFittingMethod CircleFittingMethod::Type AlgebraicTaubin Method used to fit a circle
Input value inOutlierSuppression Optional<MEstimator::Type> NIL Selects a method for ignoring incorrectly detected points
Output value outCircle Conditional<Circle3D>& Fitted circle or nothing if the fitting fails
Output value outEdges Optional<Array<Conditional<SurfaceEdge1D>>&> NIL Found edges
Output value outDeviationProfile Optional<Conditional<Profile>&> NIL Profile of distances between the actual circle points and the corresponding reference circle points
Output value outInliers Optional<Array<Point3D>&> NIL Points matching the fitting Circle
Output value outHeightProfiles Optional<Array<Profile>&> NIL Extracted surface height profiles
Output value outResponseProfiles Optional<Array<Profile>&> NIL Profiles of the edge (derivative) operator response

Optional Outputs

The computation of following outputs can be switched off by passing value atl::NIL to these parameters: outEdges, outDeviationProfile, outInliers, outHeightProfiles, outResponseProfiles.

Read more about Optional Outputs.

Hardware Acceleration

This operation supports automatic parallelization for multicore and multiprocessor systems.