Ask Your Question
0

Simulate long exposure from video frames OpenCV

asked 2015-07-16 15:28:25 -0600

I am trying to simulate a long exposure photo by combining images(frames) into one image and by performing operations based on a preset alpha. I am doing this on an iPhone, and I currently have the length of the video set to 1 second(30 frames). The alpha is set to 1.0/frameCount however I hard coded in 30 to represent one second of 30 FPS video capture. I stop the operations once it has reached one second of video/30 frames. The idea is the user can set a timer for x seconds and I will do the math to figure out how many frames to allow.

Here is the code I am using:

- (void)processImage:(Mat&)image
{

    if (_isRecording) {

        // first frame

        double alpha = 1.0/30;

        if (_frameCount == 0) {

            _exposed = image;
            _frameCount++;
        } else {

            Mat exposed = _exposed.clone();
            addWeighted(exposed, alpha, image, 1.0 - alpha, 0.0, _exposed);
            _frameCount++;
        }

        // stop and save image
        if (_frameCount == 30) {
            _isRecording = NO;
            _frameCount = 0;

            cvtColor(_exposed, _exposed, CV_BGRA2RGB, 30);
            UIImage *exposed = [LEMatConverter UIImageFromCVMat:_exposed];
            UIImageWriteToSavedPhotosAlbum(exposed, nil, nil, nil);
            NSLog(@"saved");
        }
    }
}

When I run this code I basically get back a still image that looks as if it is a single frame. Here is an example:

enter image description here

Does anyone know how I can produce the desired effect of a long exposure image from video frames given I know how many frames there will be?

edit retag flag offensive close merge delete

1 answer

Sort by ยป oldest newest most voted
0

answered 2015-07-16 16:17:24 -0600

LBerger gravatar image

updated 2015-07-16 16:22:37 -0600

If you mean cumulate 30 images (at 30 fps) is like take a photo with 1s time exposure that's false. Problem is relative to noise. When you take a picture with 1s time exposure contrast and brightness are changed before CCD matrrix Analogic digital converter like. With classical webcam you can this value but range is too small. When sensor get 0 you can cumulate it makes always 0

But when you cumulate you reduce noise and hence have thing like an enhance image like in this video. when mean mode is checked it means that a butterworth filter is computed. Curve on right is pixel value along black line. It is noisy but when filter is applied noise is reduced

If you want to improve computation should be done with float

edit flag offensive delete link more

Question Tools

1 follower

Stats

Asked: 2015-07-16 15:28:25 -0600

Seen: 718 times

Last updated: Jul 16 '15