<div dir="ltr">Hi Sophonet,<div><br></div><div>Can you send the exact code that you use to set up the lookup table, including the call to Build(), so that I can check locally?</div><div><br></div><div> - David</div></div><div class="gmail_extra"><br><div class="gmail_quote">On Thu, Feb 2, 2017 at 10:42 AM, Sophonet <span dir="ltr"><<a href="mailto:vtk12af6bc42@kant.sophonet.de" target="_blank">vtk12af6bc42@kant.sophonet.de</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Well, on my system your proposed change did not work, I still see transparent color when LUT clipping occurs, exactly as before. I have even copied your lines of your previous posting plus the Build() call below the SetRange() callback, in which I am doing level/windowing. Not sure why though - I might check again using the HEAD (I am on 7.1.0 release)<span class="HOEnZb"><font color="#888888"><br>
<br>
- Sophonet</font></span><div class="HOEnZb"><div class="h5"><br>
<br>
Am 2017-02-02 18:08, schrieb David Gobbi:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
Okay, here is a very simple work-around for this issue: Just call<br>
Build() on the table after you have set all the other table<br>
parameters.  Please let me know if this fixes the issue.<br>
<br>
I've submitted a fix for mapper so that it will call Build()<br>
automatically.  I'm not sure why it didn't do this before.<br>
<br>
 - David<br>
<br>
On Thu, Feb 2, 2017 at 8:41 AM, David Gobbi <<a href="mailto:david.gobbi@gmail.com" target="_blank">david.gobbi@gmail.com</a>><br>
wrote:<br>
<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
I've discovered more about this issue.  The Above/Below colors will<br>
work if you call SetNumberOfColors after turning them on:<br>
<br>
table->SetBelowRangeColor(1,0,<wbr>0,1);<br>
table->SetAboveRangeColor(0,1,<wbr>0,1);<br>
table->UseAboveRangeColorOn();<br>
table->UseBelowRangeColorOn();<br>
table->SetNumberOfColors(256);<br>
<br>
I'm still investigating to see why this happens.<br>
<br>
 - David<br>
<br>
On Thu, Feb 2, 2017 at 7:20 AM, David Gobbi <<a href="mailto:david.gobbi@gmail.com" target="_blank">david.gobbi@gmail.com</a>><br>
wrote:<br>
<br>
Hi Sophonet,<br>
<br>
I have confirmed that what you report is true: the<br>
vtkImageResliceMapper (and vtkImageSliceMapper) seem to ignore the<br>
AboveRangeColor and the BelowRangeColor.  This is also true for the<br>
current VTK master branch.  My current theory is that the mapper<br>
clamps the scalars to the range before they go through the lookup<br>
table.  Hopefully I'll have a fix for this soon.<br>
<br>
As a workaround (a inefficient workaround), you can use<br>
vtkImageMapToColors to apply the lookup table to the image before it<br>
goes to the mapper.<br>
<br>
 - David<br>
   <br>
<br>
On Thu, Feb 2, 2017 at 5:10 AM, Sophonet<br>
<<a href="mailto:vtk12af6bc42@kant.sophonet.de" target="_blank">vtk12af6bc42@kant.sophonet.de</a><wbr>> wrote:<br>
Dear list,<br>
<br>
for displaying images, I am using vtkImageResliceMapper. For<br>
changing the colormap, I set a dedicated color map to the<br>
imageSlice's property (which is a vtkLookupTable) and tell to use<br>
its scalar range:<br>
<br>
colorMap_->SetNumberOfTableVal<wbr>ues(256);<br>
colorMap_->SetRange(0, 1);<br>
<br>
imageProperty_->SetLookupTable<wbr>(colorMap_);<br>
imageProperty_->UseLookupTable<wbr>ScalarRangeOn();<br>
<br>
Now, when changing level/window interactively with the mouse, I am<br>
setting the range in the colorMap via<br>
<br>
double minmax[2];<br>
// set values of minmax correctly<br>
colorMap_->SetRange(minmax);<br>
<br>
The changes are displayed correctly - however, areas in which<br>
original scalars of the image are clipped, the resulting color is<br>
displayed as transparent. However, I would like to display the<br>
maximum / minimum value in the color table.<br>
<br>
I have tried using colorMap_->SetAboveRangeColor(<wbr>) and<br>
colorMap_->SetAboveRangeColorO<wbr>n() (likewise for ...BelowRange...),<br>
with no apparent effect.<br>
<br>
Any advice?<br>
<br>
I am using VTK 7.1.0.<br>
<br>
Thanks,<br>
<br>
     Sophonet<br>
</blockquote></blockquote></div></div><div class="HOEnZb"><div class="h5">
______________________________<wbr>_________________<br>
Powered by <a href="http://www.kitware.com" rel="noreferrer" target="_blank">www.kitware.com</a><br>
<br>
Visit other Kitware open-source projects at <a href="http://www.kitware.com/opensource/opensource.html" rel="noreferrer" target="_blank">http://www.kitware.com/opensou<wbr>rce/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" rel="noreferrer" target="_blank">http://www.vtk.org/Wiki/VTK_FA<wbr>Q</a><br>
<br>
Search the list archives at: <a href="http://markmail.org/search/?q=vtkusers" rel="noreferrer" target="_blank">http://markmail.org/search/?q=<wbr>vtkusers</a><br>
<br>
Follow this link to subscribe/unsubscribe:<br>
<a href="http://public.kitware.com/mailman/listinfo/vtkusers" rel="noreferrer" target="_blank">http://public.kitware.com/mail<wbr>man/listinfo/vtkusers</a><br>
</div></div></blockquote></div><br></div>