Order of image manipulation [closed]
I am trying to write a program that will give an outline of an set object in an image like so:
cvtColor( frameToUse, frameToUse, CV_BGR2GRAY ); //1
equalizeHist( frameToUse, frameToUse ); //2
blur(frameToUse, frameToUse, Size(9,9), Point(-1,1), 4); //3
Canny( frameToUse, frameToUse, 40, 3*35, 3 ); //4
I am wondering, what is the correct order to put these functions in to produce the results most efficiently. (ill closely watch comments if clarification is needed)
3,1,2,4......
if you post comment as answer, i will accept, cheers.
Let it be like this ......:)