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 Details

    • process

      void process(T image)
      Processes the image and searches for fiducials
      Parameters:
      image - The image being processed
    • getDetections

      List<AztecCode> getDetections()
      List of detected fiducials
      Returns:
      List of detection. WARNING: Data might be recycled on next call to process(T)
    • getFailures

      List<AztecCode> 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

      Class<T> getImageType()
      Type of image it can process
      Returns:
      input image type