1 | initial version |
the error means, that you cannot use opencv's gui / windowing functions on android, since window functions work much different there, than on a desktop pc.
this means, that you cannot use imshow()
namedWindow()
createTrackBar()
or waitKey()
, but have to use the native android equivalent
(it's neither a windows, not a linux problem, and recompiling won't change it)