I'm in the process of converting my application that was using an old OpenCV wrapper to EmguCV (updated and very good wrapper).
So far so good, except that in one of my class, I was using 3 trackbars to adjust the threshold in some filters. The trackbar were created using this code in the old wrapper which is exactly how it's created in openCV C++
cvlib.cvCreateTrackbar("minH", "Couleur", ref dValueMin, 256, new cvlib.CvTrackbarDelegate(onTrackbarSlide));
The trackbar was creating using the HighGui of OpenCV ans the trackbar were visible on the I'm pretty sure that Emgu team remove this from the wrapper and replace it with something better but I can't find anything about this in the documentation. Can anybody suggest me how to achieve that?
Thanks!
P.S: I have googled this and all the question were unanswered... I hope to have more luck here on Stack Overflow.