Reputation: 21
I am developing image processing application in OpenCV with Android. I want to use CvCreateTrackBar() method of opencv in android. How to use it?
Upvotes: 1
Views: 361
Reputation: 8725
You must use Android GUI for this (you can't use OpenCV's HighGUI on Android). In your situation you can just use widget called SeekBar.
Upvotes: 2