Does anybody know where i can find the source code for cvtColor() function in OpenCV?
- List item
..\OpenCV2.x\opencv\modules\imgproc\src\color.cpp
find this:
//////////////////////////////////////////////////////////////////////////////////////////
// The main function //
//////////////////////////////////////////////////////////////////////////////////////////
void cv::cvtColor( InputArray _src, OutputArray _dst, int code, int dcn )
{
}
Here it is: Opencv Github Repo color.cpp
Asked: 2014-02-14 05:26:59 -0600
Seen: 4,659 times
Last updated: Feb 14 '14
Don't post Questions blindly... Opencv is OpenSource hence look into the source code. See the module where the function is defined (Use docs.opencv.org) Browse module source on Github or your local machine.