Package boofcv.abst.fiducial
Interface AztecCodeDetector<T extends ImageGray<T>>
- All Known Implementing Classes:
AztecCodePreciseDetector
public interface AztecCodeDetector<T extends ImageGray<T>>
High level interface for reading Aztec Code fiducial markers from gray scale images
-
Method Summary
Modifier and TypeMethodDescriptionList of detected fiducialsList of likely fiducials that were rejected.Type of image it can processvoid
Processes the image and searches for fiducials
-
Method Details
-
process
Processes the image and searches for fiducials- Parameters:
image
- The image being processed
-
getDetections
List of detected fiducials- Returns:
- List of detection. WARNING: Data might be recycled on next call to
process(T)
-
getFailures
List of likely fiducials that were rejected.- Returns:
- List of rejected candidates. WARNING: Data might be recycled on next call to
process(T)
-
getImageType
Type of image it can process- Returns:
- input image type
-