Ask Your Question
1

stabilize image sequence

asked 2014-01-21 22:07:59 -0600

benwade gravatar image

I want to stabilize an uncompressed image sequence, can I use videostab module to do this without convert the sequence to video? or there are other ways to stabilize image sequence?

edit retag flag offensive close merge delete

Comments

As far as I know, the videostab module takes indeed video input but processes this frame by frame. Are you doing this by supplying a VideoCapture object? That object allows you to read in image sequence, so just try if it works with that.

filename – name of the opened video file (eg. video.avi) or image sequence (eg. img_%02d.jpg, which will read samples like img_00.jpg, img_01.jpg, img_02.jpg, ...)

StevenPuttemans gravatar imageStevenPuttemans ( 2014-01-23 06:33:15 -0600 )edit

2 answers

Sort by » oldest newest most voted
1

answered 2016-04-13 12:33:26 -0600

dsteve gravatar image

Simple solution: instead of feeding the original folder path folder_path/, try folder_path/image_%04d.jpg (change it to the format of the images in the folder)

edit flag offensive delete link more
1

answered 2014-03-19 16:13:20 -0600

Bryce gravatar image

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.

edit flag offensive delete link more

Question Tools

Stats

Asked: 2014-01-21 22:07:59 -0600

Seen: 723 times

Last updated: Apr 13 '16