Package boofcv.abst.fiducial
Interface MicroQrCodeDetector<T extends ImageGray<T>>
- All Known Implementing Classes:
MicroQrCodePreciseDetector
public interface MicroQrCodeDetector<T extends ImageGray<T>>
High level interface for reading Micro QR Codes 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<MicroQrCode> getDetections()List of detected fiducials- Returns:
- List of detected QR-Codes. WARNING: Data might be recycled on next call to
process(T)
-
getFailures
List<MicroQrCode> getFailures()List of likely fiducials that were rejected.- Returns:
- List of rejected candidate QR-Codes. WARNING: Data might be recycled on next call to
process(T)
-
getImageType
Type of image it can process- Returns:
- input image type
-