Ask Your Question

Bryce's profile - activity

2014-03-20 05:56:32 -0600 received badge  Necromancer (source)
2014-03-19 16:34:35 -0600 asked a question videostab drifting

I have tried the videostab example. It works great on my shaky video.

However, I am seeing a slight drift in my stabilized image. As I play through the video, the image content slowly migrates down, then back up.

Is there a way to have the image not drift with respect to the initial starting frame?

2014-03-19 16:18:43 -0600 commented question Video Stabilization using opencv

I had the same problems using that technique. I switched to using the videostab example and it worked great.

2014-03-19 16:13:20 -0600 answered a question stabilize image sequence

I am doing this using an image sequence instead of a VideoCapture or VideoFileSource. Basically, I created a derived ImagesSource class from IFrameSource (frame_source.hpp) and replace VideoFileSource with ImagesSource in videostab.cpp.

My derived ImagesSource class simply has the nextFrame() function read the next image file from a directory and the reset() which restart at the beginning of your image list again.