Thanks for the tip David.<div><br></div><div>Will I have any other limitations using qvtkwidget (QT widget) as well?</div><div><br></div><div>Thanks,</div><div>Luis<br><br><div class="gmail_quote">On Wed, Jun 30, 2010 at 9:32 AM, David Gobbi <span dir="ltr">&lt;<a href="mailto:david.gobbi@gmail.com">david.gobbi@gmail.com</a>&gt;</span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">The vtkImageViewer classes are meant to be a &quot;quick-and-dirty&quot; way of<br>
displaying images.  If you want to do anything beyond basic image<br>
display, you should use a vtkRenderWindow and a vtkImageActor.  Then<br>
you have the full power of VTK available to you, with multiple actors,<br>
overlays, all the interactors, etcetera.<br>
<br>
  David<br>
<br>
<br>
On Tue, Jun 29, 2010 at 11:13 PM, Luis Roberto P. Paula<br>
<div><div></div><div class="h5">&lt;<a href="mailto:luisrpp@gmail.com">luisrpp@gmail.com</a>&gt; wrote:<br>
&gt; Thanks David!!<br>
&gt; This is just what I was looking for!!<br>
&gt; I&#39;m curious on how to solve this using another actor for the marker since<br>
&gt; I&#39;m using vtkImageViewer2.<br>
&gt; Thanks &amp; Regards,<br>
&gt; Luis<br>
&gt; On Tue, Jun 29, 2010 at 8:30 AM, David Gobbi &lt;<a href="mailto:david.gobbi@gmail.com">david.gobbi@gmail.com</a>&gt; wrote:<br>
&gt;&gt;<br>
&gt;&gt; Hi Luis,<br>
&gt;&gt;<br>
&gt;&gt; The LUT can be set in a separate step, using vtkImageMapToColors. With<br>
&gt;&gt; vtkImageMapToColors, you can use SetOutputFormatToRGB() or<br>
&gt;&gt; SetOutputFormatToRGBA().<br>
&gt;&gt;<br>
&gt;&gt; image1 -&gt; vtkImageMapToColors (RGB) -&gt; image1_rgb<br>
&gt;&gt; marker -&gt; vtkImageMapToColors (RGBA) -&gt; marger_rgba<br>
&gt;&gt;<br>
&gt;&gt; (image1_rgb , marker_rgba) -&gt; vtkImageBlend -&gt; composite_rgb<br>
&gt;&gt;<br>
&gt;&gt; Also, if your marker image is smaller than your main image, you can<br>
&gt;&gt; position it in the main image by using vtkImageChangeInformation:<br>
&gt;&gt;<br>
&gt;&gt; marker -&gt; vtkImageChangeInformation::SetExtentTranslation() -&gt;<br>
&gt;&gt; marker_new_position<br>
&gt;&gt;<br>
&gt;&gt; By adjusting the vtkImageChangeInformation to change the extent of the<br>
&gt;&gt; second image input for vtkImageBlend, you can adjust where it will<br>
&gt;&gt; appear relative to the first image.<br>
&gt;&gt;<br>
&gt;&gt; Another option (that does not use vtkImageBlend) is to use a separate<br>
&gt;&gt; actor for the marker.<br>
&gt;&gt;<br>
&gt;&gt;  David<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; On Mon, Jun 28, 2010 at 9:16 PM, Luis Roberto P. Paula<br>
&gt;&gt; &lt;<a href="mailto:luisrpp@gmail.com">luisrpp@gmail.com</a>&gt; wrote:<br>
&gt;&gt; &gt; Hi All,<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; I have two images:<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; vtkImageData object;  // Contains the object of interest - Grey scale<br>
&gt;&gt; &gt; image (0 - 256)<br>
&gt;&gt; &gt; vtkImageData marker;  // Just the marker for the object - Binary Image<br>
&gt;&gt; &gt; with same size of &#39;object&#39;<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; I need to display the marker over the object in a GUI. To do that, I`m<br>
&gt;&gt; &gt; using the vtkImageBlend:<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt;   vtkImageBlend* blend = vtkImageBlend::New();<br>
&gt;&gt; &gt;   blend-&gt;RemoveAllInputs();<br>
&gt;&gt; &gt;   blend-&gt;AddInput(object);<br>
&gt;&gt; &gt;   blend-&gt;AddInput(marker);<br>
&gt;&gt; &gt;   blend-&gt;SetOpacity(1, opacity);<br>
&gt;&gt; &gt;   blend-&gt;Update();<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; Then, I&#39;m setting the output image to a vtkImageViewer2.<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; So far so good, but the problem is that I have to control the opacity to<br>
&gt;&gt; &gt; see the marker.<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; Is it possible to set a LUT for each image in vtkImageBlend, so I can<br>
&gt;&gt; &gt; set the marker a different color for the marker, without the need to set<br>
&gt;&gt; &gt; opacity?<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; If this is not the correct approach to do this kind of effect, could<br>
&gt;&gt; &gt; someone give me some guidance?<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; Thanks &amp; Regards,<br>
&gt;&gt; &gt; Luis<br>
&gt;&gt; &gt; _______________________________________________<br>
&gt;&gt; &gt; Powered by <a href="http://www.kitware.com" target="_blank">www.kitware.com</a><br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; Visit other Kitware open-source projects at<br>
&gt;&gt; &gt; <a href="http://www.kitware.com/opensource/opensource.html" target="_blank">http://www.kitware.com/opensource/opensource.html</a><br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; Please keep messages on-topic and check the VTK FAQ at:<br>
&gt;&gt; &gt; <a href="http://www.vtk.org/Wiki/VTK_FAQ" target="_blank">http://www.vtk.org/Wiki/VTK_FAQ</a><br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; Follow this link to subscribe/unsubscribe:<br>
&gt;&gt; &gt; <a href="http://www.vtk.org/mailman/listinfo/vtkusers" target="_blank">http://www.vtk.org/mailman/listinfo/vtkusers</a><br>
&gt;&gt; &gt;<br>
&gt;<br>
&gt;<br>
</div></div></blockquote></div><br></div>