Tagged Questions
Motion blur is the apparent streaking of rapidly moving objects in a still image or a sequence of images such as a movie or animation. It results when the image being recorded changes during the recording of a single frame, either due to rapid movement or long exposure. [http://en.wikipedia.org/wiki/Motion_blur]
3
votes
4answers
244 views
How to remove distortion due to motion, from an image
I am trying to track motion of a toy car. I have recorded few videos and now trying to calculate rotation.
My problem is extracting features from object surface is quit challenging due to motion ...
3
votes
3answers
1k views
2D motion blur solutions
I'm thinking of chucking motion blur into my 2D program, but I doubt the results of my current algorithm.
My approach looks like this at the moment:
Draw to backbuffer.
When time to
update front ...
2
votes
1answer
938 views
OpenGL Motion blur with the accumulation buffer in WxWidgets
I'm trying to achieve a motion blur effect in my OpenGL application.
I read somewhere this solution, using the accumulation buffer:
glAccum(GL_MULT, 0.90);
glAccum(GL_ACCUM, 0.10);
...
0
votes
0answers
43 views
Cocoa Motion Blur Transition
Hello people of Stack Overflow,
I'm working on an application at the moment, and it will likely consist of multiple views that slide into place (with a transition for subview removal / adding).
I've ...
0
votes
1answer
822 views
Convolution matrix for diagonal motion blur
I know my question is not really a programming question but it came out of programming need. Does anyone happen to know the convolution matrix for diagonal motion blur. 3x3, 4x4 or 5x5 are all good.
...