amanwalia123 / KeyFramesExtraction

This repository contains script to divide a video into key frames.
MIT License
158 stars 34 forks source link

Could i ask you something? #5

Closed GreenD93 closed 5 years ago

GreenD93 commented 5 years ago

Why do you use the difference in LUV colorspace?, not considering others spaces(RGB, HSV so on...)

amanwalia123 commented 5 years ago

The choice of LUV colorspace is mainly due to how it differentiates illuminance from chromaticity which will not be available in RGB colorspace. Another main reason better explained under this link is as follows:

More specifically 'Luv' was designed to be 'perceptually linear'. That is that a small change in color in one part of the colorspace looks to be about the same, as a similar change in another part of the colorspace. This makes LUV colorspace much better suited for image difference comparisons.

GreenD93 commented 5 years ago

Thank you very much!