<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META http-equiv=Content-Type content="text/html; charset=iso-8859-1">
<META content="MSHTML 6.00.6000.16414" name=GENERATOR>
<STYLE></STYLE>
</HEAD>
<BODY bgColor=#ffffff>
<DIV><FONT face=Arial size=2>Hi everybody,</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
<DIV><FONT face=Arial size=2>I'm doing a program in which I divide two similar 
images (pixel type = double). The values of those images goes from 0 to 
255.</FONT></DIV>
<DIV><FONT face=Arial size=2>When I divide them into an other image which is 
also 'double' pixel type,&nbsp;as they are similar&nbsp;the pixel values goes 
from 0 to 1,1.</FONT></DIV>
<DIV><FONT face=Arial size=2>I've tried to reescale it with the code below in 
orther to obtain values from 0 to 255 in the output image, but nothing happens 
(it remains from 0 to 1,1).</FONT></DIV>
<DIV><FONT face=Arial size=2>Does anybody know why is it not 
working?</FONT></DIV>
<DIV><FONT face=Arial size=2>Thanks!</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
<DIV><FONT face=Arial size=2>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 
Xavier</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
<DIV><FONT size=2>
<P></FONT><FONT color=#008000 size=2>//rescaling the image from (0,1) to 
(0,255)</P></FONT><FONT size=2>
<P>rescaleFilter-&gt;SetInput( image );</P>
<P>rescaleFilter-&gt;SetOutputMinimum( 0 );</P>
<P>rescaleFilter-&gt;SetOutputMaximum( 255 );</P>
<P>rescaleFilter-&gt;Update();</P>
<P><FONT face=Arial>(...)</FONT></P><FONT size=2>
<P>writer-&gt;SetInput( rescaleFilter-&gt;GetOutput() 
);</P></FONT></FONT></DIV></BODY></HTML>