1 | initial version |
you have to (re)build opencv with QT support to use those those functions.
if all you want is some text, use putText
2 | No.2 Revision |
you have to (re)build opencv with QT support to use those those functions.
if all you want is some text, use putText
oh, btw, the order of calls matters, too.
displayOverlay("horizontal", text); // first draw, imshow("horizontal", H); // then show it waitKey(someMillis); // imshow won't work without
3 | No.3 Revision |
you have to (re)build opencv with QT support to use those those functions.
if all you want is some text, use putText
oh, btw, the order of calls matters, too.
displayOverlay("horizontal", text); // first draw,
imshow("horizontal", H); // then show it
waitKey(someMillis); // imshow won't work