<!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.2600.0" name=GENERATOR>
<STYLE></STYLE>
</HEAD>
<BODY bgColor=#ffffff>
<DIV><FONT face=Arial size=2>Hello!!!!</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
<DIV><FONT face=Arial size=2>I've questions about the data found at <A 
href="ftp://public.kitware.com/pub/itk/Data/MultiFieldMRI/HighField">ftp://public.kitware.com/pub/itk/Data/MultiFieldMRI/HighField</A>.</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
<DIV><FONT face=Arial size=2>* What is the difference between e1 and e2 ? e2 
seems just the same but 'darker' ... ?</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
<DIV><FONT face=Arial size=2>* what are the resolution of the slices? Are they 
16 bits or 8 bits image files? how to know? &nbsp;what about 'dataspacing'? 
what's the difference between 'Data byte order = little endian&nbsp;and big 
endian'?</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
<DIV><FONT face=Arial size=2>* should&nbsp;I&nbsp;use vtkvolume16reader or 
vtkvolumereader instead of vtkimagereader? what are the differences? 
</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
<DIV><FONT face=Arial size=2>* I obtained a view of the slices&nbsp;using the 
code below, the result is good but on the sides the 
images&nbsp;are&nbsp;deformed .... anybody knows why ???</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
<DIV><FONT face=Arial size=2>Thank you very much for help,</FONT></DIV>
<DIV><FONT face=Arial size=2>Nicolas DUMONT, </FONT></DIV>
<DIV><FONT face=Arial size=2>ULg</FONT></DIV>
<DIV><FONT face=Arial size=2>Belgium.</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
<DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
<DIV><FONT face=Arial size=2>**********</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
<DIV><FONT face=Arial size=2>package require vtk<BR>package require 
vtkinteraction</FONT></DIV>
<DIV>&nbsp;</DIV>
<DIV><FONT face=Arial size=2>vtkImageReader reader1<BR>reader1 
SetDataByteOrderToBigEndian<BR>reader1 SetDataExtent 0 255 0 255 1 55<BR>reader1 
SetFilePrefix "e1"</FONT></DIV>
<DIV>&nbsp;</DIV>
<DIV><FONT face=Arial size=2>vtkImageReader reader2<BR>reader2 
SetDataByteOrderToBigEndian<BR>reader2 SetDataExtent 0 255 0 255 1 55<BR>reader2 
SetFilePrefix "e2"</FONT></DIV>
<DIV>&nbsp;</DIV>
<DIV><FONT face=Arial size=2>vtkImageViewer viewer1<BR>viewer1 SetInput [reader1 
GetOutput]<BR>viewer1 SetZSlice 30<BR>viewer1 SetColorWindow 3000<BR>viewer1 
SetColorLevel 1000</FONT></DIV>
<DIV>&nbsp;</DIV>
<DIV><FONT face=Arial size=2>vtkImageViewer viewer2<BR>viewer2 SetInput [reader2 
GetOutput]<BR>viewer2 SetZSlice 30<BR>viewer2 SetColorWindow 3000<BR>viewer2 
SetColorLevel 1000</FONT></DIV>
<DIV>&nbsp;</DIV>
<DIV><FONT face=Arial size=2># Create the GUI<BR>wm withdraw .<BR>toplevel .top 
</FONT></DIV>
<DIV>&nbsp;</DIV>
<DIV><FONT face=Arial size=2>frame .top.f1 </FONT></DIV>
<DIV>&nbsp;</DIV>
<DIV><FONT face=Arial size=2>vtkTkImageViewerWidget .top.f1.r1 -width 256 
-height 256 -iv viewer1<BR>vtkTkImageViewerWidget .top.f1.r2 -width 256 -height 
256 -iv viewer2</FONT></DIV>
<DIV>&nbsp;</DIV>
<DIV><FONT face=Arial size=2>button .top.btn&nbsp; -text Quit -command 
exit</FONT></DIV>
<DIV>&nbsp;</DIV>
<DIV><FONT face=Arial size=2>pack .top.f1.r1 .top.f1.r2 \<BR>&nbsp; -side left 
-padx 3 -pady 3 -expand t<BR>pack .top.f1 -fill both -expand t<BR>pack .top.btn 
-fill x</FONT></DIV>
<DIV>&nbsp;</DIV>
<DIV><FONT face=Arial size=2>::vtk::bind_tk_imageviewer_widget 
.top.f1.r1<BR>::vtk::bind_tk_imageviewer_widget .top.f1.r2</FONT></DIV>
<DIV>&nbsp;</DIV>
<DIV><FONT face=Arial size=2>**********************</FONT></DIV></BODY></HTML>