Interface CamService.FrameProcessorCb

Enclosing class:
CamService
Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@FunctionalInterface public static interface CamService.FrameProcessorCb
Functional interface representing a frame processing callback.
  • Method Summary

    Modifier and Type
    Method
    Description
    org.opencv.core.Mat
    processFrame(org.opencv.core.Mat frame)
    Processes the input frame and returns the processed frame.
  • Method Details

    • processFrame

      org.opencv.core.Mat processFrame(org.opencv.core.Mat frame)
      Processes the input frame and returns the processed frame.
      Parameters:
      frame - The input frame to be processed.
      Returns:
      The processed frame.