Interface VisionPipeline


public interface VisionPipeline
A vision pipeline is responsible for running a group of OpenCV algorithms to extract data from an image.
See Also:
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    process(Mat image)
    Processes the image input and sets the result objects.
  • Method Details

    • process

      void process(Mat image)
      Processes the image input and sets the result objects. Implementations should make these objects accessible.
      Parameters:
      image - The image to process.