Okay, I finally have the solution to this. It was just on thing that needed changing. Since OpenCV creates BGR image, I needed to convert the BGR to RGB using cv::cvtColor(imagebgr, imageRGB, CV_BGR2RGB) and then give it to fromIpl2Vtk(...) function below. Just one other thing. Since VTK and OpenCV use different origins for the image, I first did cv::flip(origImage,flipImage, -1). I am sure some of you may have figured it out... but I just wanted to document it.<br>
<br>bool fromIpl2Vtk( cv::Mat _src, vtkImageData* _dest )<br>{<br> assert( _src.data != NULL );<br> vtkImageImport *importer = vtkImageImport::New();<br> if ( _dest )<br> {<br> importer->SetOutput( _dest );<br>
}<br> importer->SetDataSpacing( 1, 1, 1 );<br> importer->SetDataOrigin( 0, 0, 0 );<br> importer->SetWholeExtent( 0, _src.size().width-1, 0, _src.size().height-1, 0, 0 );<br> importer->SetDataExtentToWholeExtent();<br>
importer->SetDataScalarTypeToUnsignedChar();<br> importer->SetNumberOfScalarComponents( _src.channels() );<br> importer->SetImportVoidPointer( _src.data );<br> importer->Update();<br> return true;<br>
}<br><br>hope it works...<br><br>Best regards,<br>Anant.<br><br clear="all">-----------<br>Anant S. Vemuri<br>email: <a href="mailto:ajar108@gmail.com" target="_blank">ajar108@gmail.com</a><br><br>
<br><br><div class="gmail_quote">On Fri, May 7, 2010 at 5:12 PM, Anant Vemuri <span dir="ltr"><<a href="mailto:ajar108@gmail.com" target="_blank">ajar108@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;">
I have also been trying to interface both Iplimage and vtkimagedata. Here is what I did<br><br>void fromIpl2Vtk( IplImage* _src, vtkImageData* _dest )<br>{<br> vtkImageImport *importer = vtkImageImport::New();<br> if ( _dest )<br>
{<br> importer->SetOutput( _dest );<br> }<br> importer->SetDataSpacing( 1, 1, 1 );<br> importer->SetDataOrigin( 0, 0, 0 );<br> importer->SetWholeExtent( 0, _src->width-1, 0, _src->height-1, 0, _src->nChannels-1 );<br>
importer->SetDataExtentToWholeExtent();<br> importer->SetDataScalarTypeToUnsignedChar();<br> importer->SetNumberOfScalarComponents( _src->nChannels );<br> importer->SetImportVoidPointer( _src->imageData );<br>
importer->Update();<br>}<br><br>This works, but somehow vtk only recognizes the first channel that is blue, which is the first channel of IplImage (BGR...BGR...) ... I was wondering if anyone had any suggestions to fix this.<br>
<br>thanks.<br>
<br><br><div class="gmail_quote"><div><div></div><div>On Tue, May 4, 2010 at 3:02 PM, Samunda Perera <span dir="ltr"><<a href="mailto:samunda_n@yahoo.com" target="_blank">samunda_n@yahoo.com</a>></span> wrote:<br>
</div></div><blockquote class="gmail_quote" style="margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;"><div><div></div><div>
<div><div style="font-family: times new roman,new york,times,serif; font-size: 12pt;"><div>Dear all,<br><br>I have a pointer to a image stored in memory (example void* frame or similar data type obtained from opencv) .<br>
How to display this 2D image data as a image in VTK window?<br><br>Thanks & Regards,<br>Samu<br></div>
</div><br>
</div><br></div></div>_______________________________________________<br>
Powered by <a href="http://www.kitware.com" target="_blank">www.kitware.com</a><br>
<br>
Visit other Kitware open-source projects at <a href="http://www.kitware.com/opensource/opensource.html" target="_blank">http://www.kitware.com/opensource/opensource.html</a><br>
<br>
Please keep messages on-topic and check the VTK FAQ at: <a href="http://www.vtk.org/Wiki/VTK_FAQ" target="_blank">http://www.vtk.org/Wiki/VTK_FAQ</a><br>
<br>
Follow this link to subscribe/unsubscribe:<br>
<a href="http://www.vtk.org/mailman/listinfo/vtkusers" target="_blank">http://www.vtk.org/mailman/listinfo/vtkusers</a><br>
<br></blockquote></div><br>
</blockquote></div><br>