Back to FabImage Library website
You are here: Start » Function Reference » Computer Vision » Hough Transform » DetectSingleCircle

DetectSingleCircle
Header: | FIL.h |
---|---|
Namespace: | fil |
Module: | FoundationBasic |
Finds the strongest circle of a given radius in the input image.
Applications: Detection of a circular or close-to-circular object like a hole, pin, pill or particle.
Syntax
C++
C#
void fil::DetectSingleCircle ( const fil::Image& inImage, ftl::Optional<const fil::Region&> inRoi, float inRadius, float inMinScore, float inEdgeThreshold, ftl::Conditional<fil::HoughCircle>& outCircle, fil::Image& diagGradientMagnitudeImage, fil::Image& diagScoreImage )
Parameters
Name | Type | Range | Default | Description | |
---|---|---|---|---|---|
![]() |
inImage | const Image& | Input image | ||
![]() |
inRoi | Optional<const Region&> | NIL | Input region of interest | |
![]() |
inRadius | float | 0.0 - ![]() |
10.0f | Circle's radius |
![]() |
inMinScore | float | 0.0 - ![]() |
20.0f | Minimum matching score |
![]() |
inEdgeThreshold | float | 10.0f | Minimum accepted edge magnitude | |
![]() |
outCircle | Conditional<HoughCircle>& | Found circle | ||
![]() |
diagGradientMagnitudeImage | Image& | Visualized gradients magnitude of an input image | ||
![]() |
diagScoreImage | Image& | Calculated score for each pixel of an input image |
Description
The operation detects circular object of given radius (in pixels) in the inImage using the Hough Transform approach.
Hints
- Pass an input image to the inImage input.
- Define the expected circle radius on the inRadius input.
- Set inEdgeThreshold to define the minimum strength of edges that will be taken into account. Verify this value with the diagGradientMagnitudeImage output.
- Experimentally set the inMinScore value, whose meaning is more or less "the number of pixels voting for a particular object location".
Examples
![]() |
![]() |
DetectSingleCircle performed on the sample image.
Hardware Acceleration
This operation supports automatic parallelization for multicore and multiprocessor systems.
See Also
- DetectMultipleCircles – Finds circles of a given radius in the input image using Hough Transform.
- DetectLines – Finds lines in an image using Hough Transform.
- DetectPaths – Finds a specified shape in an image using Hough Transform.
- DetectSegments – Finds segments in an image using Hough Transform.