Video in gray, why?

asked 2014-09-04 00:12:15 -0600

LunarDuck gravatar image

Why in every video stabilization algorithm the frames are always converted to gray?

What is the logic behind it?

edit retag flag offensive close merge delete

Comments

The idea is to perform some computation on an image source that is a bit more robust and invariant to lighting changes. In order to do so they are converted to greyscale images and a histogram equilization is applied. Also using grayscale images ensures you only need computations on a single channel, not on the three color channels which increases processing time.

StevenPuttemans gravatar imageStevenPuttemans ( 2014-09-04 08:50:32 -0600 )edit
1

Thanks Stevens you are awesome. Apparently this forum has prepotent people that don't like newbie questions. They want everyone to know everything but fortunately people like you exist. Thanks.

LunarDuck gravatar imageLunarDuck ( 2014-09-04 10:38:11 -0600 )edit

Don't take the -1 too hard. I sometimes see questions like this and also think that the topic starter didnt put effort in finding the solution. However then I remember I was an OpenCV noob once too. Good luck!

StevenPuttemans gravatar imageStevenPuttemans ( 2014-09-04 15:00:29 -0600 )edit