Class AbstractResultCvPipeline<T>

  • Type Parameters:
    T - The type of the result from the pipeline.

    public abstract class AbstractResultCvPipeline<T>
    extends org.openftc.easyopencv.OpenCvPipeline
    An OpenCvPipeline which has a result.
    • Field Summary

      Fields 
      Modifier and Type Field Description
      protected T result
      The result of the webcam processor.
      • Fields inherited from class org.openftc.easyopencv.OpenCvPipeline

        MEMLEAK_DETECTION_ENABLED, MEMLEAK_DETECTION_PIPELINE_SETTLE_DELAY_SECONDS, MEMLEAK_THRESHOLD_MB
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      T getResult()
      Get the current result of the pipeline.
      • Methods inherited from class org.openftc.easyopencv.OpenCvPipeline

        init, onViewportTapped, processFrame, saveMatToDisk, saveMatToDiskFullPath
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • result

        protected T result
        The result of the webcam processor.
    • Constructor Detail

      • AbstractResultCvPipeline

        public AbstractResultCvPipeline()
    • Method Detail

      • getResult

        public T getResult()
        Get the current result of the pipeline.
        Returns:
        The result of the pipeline.