First time here? Check out the FAQ!

Ask Your Question
0

unsigned short 1D array to Mat

asked Feb 23 '19

ymw gravatar image

hi, how can I convert unsigned short array to Mat in opencv ? unsigned short array[220*220]//contain pixel values of image

Preview: (hide)

1 answer

Sort by » oldest newest most voted
2

answered Feb 23 '19

gino0717 gravatar image

updated Feb 23 '19

ushort is CV_16U type, so if your array called H, then

Mat h = Mat(220,220,CV_16U,H);

to check it:

ushort H[4] = {1,2,3,4}; Mat h = Mat(2,2,CV_16U,H);
cout<<"take a look="<<h<<endl;

the output of h would same as H

Preview: (hide)

Comments

gino0717, thanks for the reply, but I cannot see my image when I use imshow("h",h);

ymw gravatar imageymw (Feb 23 '19)edit

you may not see image in CV_16U, try to .convertTo() CV_8U and imshow it

gino0717 gravatar imagegino0717 (Feb 23 '19)edit

Mat t; h.convertTo(t,CV_8U); this is what you mean right?

ymw gravatar imageymw (Feb 23 '19)edit

yeah, try it

gino0717 gravatar imagegino0717 (Feb 23 '19)edit

Question Tools

1 follower

Stats

Asked: Feb 23 '19

Seen: 1,894 times

Last updated: Feb 23 '19