Real-Time video stabilization OpenCV

asked 2018-08-23 06:24:41 -0600

updated 2018-08-27 12:32:11 -0600

I've searched a function in OpenCV (cv::videostab), that would allow me to do video stabilization in Real-Time. But as I understand in OpenCV this is not yet available. So TwoPassStabilizer(OnePassStabilizer) require a whole video at once and not two consecutive frames.

Ptr<VideoFileSource> source = makePtr<VideoFileSource>(inputPath); //it's whole video
TwoPassStabilizer *twopassStabilizer = new TwoPassStabilizer();
twoPassStabilizer->setFrameSource(source);

So I have to do this without the OpenCV video stabilization class. This is true?

edit retag flag offensive close merge delete

Comments

I am looking the same thing. Have you found any solution to that issue?

FilipVW gravatar imageFilipVW ( 2020-04-25 08:18:36 -0600 )edit