Ask Your Question
0

Does anybody know where i can find the source code for cvtColor() function in OpenCV?

asked 2014-02-14 05:26:59 -0600

karalann gravatar image

updated 2014-02-14 05:31:35 -0600

berak gravatar image
  • List item
edit retag flag offensive close merge delete

Comments

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.

SpiderGears gravatar imageSpiderGears ( 2014-02-14 05:39:52 -0600 )edit

2 answers

Sort by ยป oldest newest most voted
0

answered 2014-02-14 05:38:52 -0600

..\OpenCV2.x\opencv\modules\imgproc\src\color.cpp

find this:

//////////////////////////////////////////////////////////////////////////////////////////
//                                   The main function                                  //
//////////////////////////////////////////////////////////////////////////////////////////

void cv::cvtColor( InputArray _src, OutputArray _dst, int code, int dcn )
{



}
edit flag offensive delete link more
0

answered 2014-02-14 05:37:26 -0600

SpiderGears gravatar image

Here it is: Opencv Github Repo color.cpp

edit flag offensive delete link more

Question Tools

Stats

Asked: 2014-02-14 05:26:59 -0600

Seen: 4,489 times

Last updated: Feb 14 '14