Ask Your Question

Zulfi's profile - activity

2020-10-07 12:46:15 -0600 received badge  Notable Question (source)
2019-05-05 08:01:11 -0600 received badge  Popular Question (source)
2016-02-12 02:33:39 -0600 asked a question how to convert cv::mat to all types of bitmab..

cv::Mat m Gdiplus::Bitmap bitmap1(m.cols,m.rows,m.step1(), PixelFormat24bppRGB,m.data); but most of the time function failed. please help me .

2016-02-08 02:12:53 -0600 commented answer how can i put text on image using opencv puttext function

Is there any function in opencv for unicode utf text

2016-02-08 02:05:49 -0600 asked a question how can i put text on image using opencv puttext function

hello guys

I am working on visual studio 2010 and opencv-2.4.9 and i want to put unicode text on image using puttext function but puttext function not working properly with unicode text(japanease,arabic etc) and dispaly text on image as"??????" but puttext() with english text work properly.

code snippet:

cv::Mat m=img;  

cv::putText(m,"名前",cv::Point((m.cols/2,m.rows/2),cv::FONT_ITALIC,.5,cv::Scalar(180,180,180),1,CV_AA);
please help me for showing unicode text on image

your help will be appreciated. thanks