Interface TargetProcessor

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      void process​(java.util.List<org.opencv.core.Rect> targets)
      Extract the result type from a list of rectangles found.
      void writeOutput​(org.opencv.core.Mat mat)
      Draw overlays on the image.
    • Method Detail

      • process

        void process​(java.util.List<org.opencv.core.Rect> targets)
        Extract the result type from a list of rectangles found.
        Parameters:
        targets - The list of targets found.
      • writeOutput

        void writeOutput​(org.opencv.core.Mat mat)
        Draw overlays on the image. This should give the user some indication of what the result of process(List) was.
        Parameters:
        mat - The image to draw on.