M.Saeed
M.Saeed

Reputation: 31

Is it possible to read unicode value using cv::waitkey(0)

I am trying to read the unicode value of a pressed Arabic key using the waitkey() function on a Mac keyboard, this function only reads the ASCII code of the keys in C++.

Is there like any trick that maps that key value ?

Upvotes: 0

Views: 215

Answers (1)

Maxime Guinin
Maxime Guinin

Reputation: 190

This thread can help you to print key values. You can test the one that you want and use it inside waitKey.

Upvotes: 0

Related Questions