| 48 | class FrameReadCallback : public InputStreamCallback { |
| 49 | public: |
| 50 | explicit FrameReadCallback(cv::Mat &image_mat) |
| 51 | : image_mat_(image_mat) { |
| 52 | } |
| 53 | ~FrameReadCallback() override = default; |
| 54 | |
| 55 | int64_t process(const std::shared_ptr<io::BaseStream>& stream) override { |
nothing calls this directly
no outgoing calls
no test coverage detected