Reputation: 1086
I want to create a trackbar\sliderbar using Opencv2411 with Java API. I did not find any class in opencv Java docs that does so.
How can I create trackbar in opencv with Java API??
Upvotes: 1
Views: 934
Reputation: 6666
OpenCV Java api does not allow you to handle any of the GUI stuff, so no you cannot create a trackbar using OpenCV Java
What you can do though is use swing and jsliders
JSlider example slider = new JSlider(JSlider.HORIZONTAL, MIN, MAX, DEFAULT);
Upvotes: 2