
You might have seen my previous post regarding the HSV values extraction. That code used Sliders to vary the value of the parameter passed to the thresholding algorithm. In this post, we are going to learn ahow to add a Slider or Trackbar to a cvWindow.
the function below will create and add a trackbar to the window "Output"
cvCreateTrackbar("LowHue", "Output", &lowHue, max, onLowHue);
you see here five arguments to the function.
"LowHue" - it is a string, used as caption on the cvWindow above the Trackbar. something like a name for the trackbar.
"Output"...