<div dir="ltr"><div><div><div><div><div><div>Sorry for the late reply, <br></div>And thanks for the info Bill! <br></div>I added both actors to the renderer and it worked just fine. <br><br></div>Another problem though, since i'm now working with 3D volumes, would ContourFilter still work in this case ? <br></div>I tested it on 2D images and it works fine but when I try it a 3D imagedata the result is a bit strange. <br><br></div>Actually, what I'm looking for is to show the CT volume slice by slice, and I want to show the isolines of the corresponding dose slice  on top of each CT one. <br></div>But what I got is the whole isosurface shown over all the slices. <br><div><br></div><div>So my question is, can the ContourFilter be used in my case ? <br></div><div>or should I extract slices from my dose volume one by one, find the isolines in each slice then combine them all back in one volume and show this one on top of the CT ? <br><br></div><div>Thanks in advance, <br><br></div><div>Iyas<br></div></div><div class="gmail_extra"><br><div class="gmail_quote">On Tue, Feb 3, 2015 at 5:33 PM, Bill Lorensen <span dir="ltr"><<a href="mailto:bill.lorensen@gmail.com" target="_blank">bill.lorensen@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Each contour line has a scalar value associated with it (the iso value<br>
for that line). You just need to create a lookup table for the<br>
polydata mapper that maps the isovalues to the colors you want. No<br>
need to use image blend. Just render the contour lines as polydata.<br>
<div><div class="h5"><br>
<br>
On Tue, Feb 3, 2015 at 11:21 AM, Iyas Hamdan <<a href="mailto:iyas.hamdan@gmail.com">iyas.hamdan@gmail.com</a>> wrote:<br>
> Hello vtkusers,<br>
><br>
> I'm trying to visualize the RT dose on top of a CT image. To do so, I first<br>
> find the iso-dose lines using vktContourFilter which works just fine.<br>
> Then I want to add colors to those iso-lines depending on their value. So I<br>
> creat a lookup table and then ( I think ) I have to map my image through<br>
> this lookup table using vtkImageMapToColors.<br>
> Afterwards, I have to use vtkImageBlend with two mappers as inputs ( one for<br>
> iso-lines and one for the CT image).<br>
><br>
> So it goes something like this:<br>
><br>
> vtkSmartPointer<vtkImageMapToColors> DoseColorMapper =<br>
> vtkSmartPointer<vtkImageMapToColors>::New();<br>
> DoseColorMapper->SetInputData(contourFilter->GetOutput());<br>
> DoseColorMapper->SetLookupTable(l_lut);<br>
> DoseColorMapper->SetOutputFormatToRGB();<br>
> /// ... the same for the CT image<br>
> vtkSmartPointer<vtkImageBlend> imgBlender =<br>
> vtkSmartPointer<vtkImageBlend>::New();<br>
>  imgBlender->SetOpacity(0, 0.5);<br>
>  imgBlender->SetOpacity(1, 0.5);<br>
>  imgBlender->AddInputConnection(CtColorMapper->GetOutputPort());<br>
>  imgBlender->AddInputConnection(DoseColorMapper->GetOutputPort());<br>
><br>
><br>
><br>
> The problem is, when I trying doing passing the output of the ContourFilter<br>
> to the mapper I get this error :<br>
> vtkCompositeDataPipeline (037DBD78): Input for connection index 0 on input<br>
> port index 0 for algorithm vtkImageMapToColors(037DBC50) is of type<br>
> vtkPolyData, but a vtkImageData is required.<br>
><br>
> So my question is, do I have to convert the output of ContourFilter from<br>
> polydata to imagedata ?<br>
> or is there another way around this by giving the mapper an input of type<br>
> polydata ?<br>
><br>
> any help would be really appreciated.<br>
><br>
> Thanks in advance<br>
><br>
> Iyas<br>
><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<br>
> <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:<br>
> <a href="http://www.vtk.org/Wiki/VTK_FAQ" target="_blank">http://www.vtk.org/Wiki/VTK_FAQ</a><br>
><br>
> Search the list archives at: <a href="http://markmail.org/search/?q=vtkusers" target="_blank">http://markmail.org/search/?q=vtkusers</a><br>
><br>
> Follow this link to subscribe/unsubscribe:<br>
> <a href="http://public.kitware.com/mailman/listinfo/vtkusers" target="_blank">http://public.kitware.com/mailman/listinfo/vtkusers</a><br>
><br>
<span class="HOEnZb"><font color="#888888"><br>
<br>
<br>
--<br>
Unpaid intern in BillsBasement at noware dot com<br>
</font></span></blockquote></div><br></div>