I've created a filter extending QAbstractVideoFilter
and
QVideoFilterRunnable
and I've overrided the
QVideoFrame run(QVideoFrame* input, const QVideoSurfaceFormat &surfaceFormat, RunFlags flags)`
method
The problem is that QVideoFrame
format is Format_YUV420P
and has no handle. I need to convert it into a CV_8UC1
in order to use OpenCV
algorithms.
Which is the best way to accomplish this?