Package dev.ioliver.services
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.
Functional interface representing a frame processing callback.
-
Method Summary
Modifier and TypeMethodDescriptionorg.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.
-