I want to know where exactly the source code cvtColor functions implemented?
I am studying Computer Vision, one of the assignment professor asked me to write your own function to convert the rgb to grayscale. Now I know how to do it in python using opencv. Can you please point out the implementation files for cvtColor in opencv 3.0 version. so that I can take look at how its implemented.
opencv is an opensource lib. all codes is available on github.
{google cvtColor source code} -- the first link is the good
https://github.com/opencv/opencv/blob... - 11,000 lines of code :) thank you.
lol, yea, what did you expect ?
i guess you rather want to look at the formulas , not so much at the optimised c++ implementation ;)
:) :) @berak thank you so much. That doc helping a lot.