VikasVasani
VikasVasani

Reputation: 21

How to use createTrackBar() in OpenCV Android?

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

Answers (1)

ArtemStorozhuk
ArtemStorozhuk

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

Related Questions