Ask Your Question

avinash's profile - activity

2017-04-15 04:14:23 -0600 received badge  Student (source)
2016-09-08 10:40:33 -0600 received badge  Famous Question (source)
2015-04-08 22:06:32 -0600 received badge  Notable Question (source)
2014-08-19 10:55:02 -0600 received badge  Popular Question (source)
2013-06-03 05:43:42 -0600 asked a question Any good tutorial for POSIT??

Any good tutorial for POSIT??

2013-05-30 08:43:12 -0600 received badge  Critic (source)
2013-05-29 02:21:54 -0600 received badge  Scholar (source)
2013-05-29 02:11:36 -0600 commented answer Having trouble with using Mat image in pictureBox of Visual C++ CLR project

Thanks Steven, could u explain specifically about your option about creating a bitmap, some sort of code will be helpful

2013-05-29 01:36:20 -0600 received badge  Editor (source)
2013-05-29 01:35:32 -0600 asked a question Having trouble with using Mat image in pictureBox of Visual C++ CLR project

Mat imgs = imread("d:/s.jpg");

cvtColor(imgs, imgs, CV_BGR2RGB, 1);

this->pictureBox1->Image=(gcnew System::Drawing::Bitmap(imgs.cols,imgs.rows,imgs.step.p[0], System::Drawing::Imaging::PixelFormat::Format24bppRgb, System::IntPtr)imgs.data));

it is not working, it only show some white and gray lines Please Help Me thanks