<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
  <meta content="text/html;charset=ISO-8859-1" http-equiv="Content-Type">
  <title></title>
</head>
<body bgcolor="#ffffff" text="#000000">
Madhusudhanan Balasubramanian wrote:
<blockquote cite="mid:503024.43969.qm@web51702.mail.re2.yahoo.com"
 type="cite">
  <pre wrap="">Hi,

Does VTK support rendering (volume) data other than unsigned char, mainly float, double, etc.?

  </pre>
</blockquote>
A simple look at the manual pages would have given you the answer
without having to ask the mailing list.<br>
<p><a class="el"
 href="http://www.vtk.org/doc/nightly/html/classvtkVolumeTextureMapper3D.html">vtkVolumeTextureMapper3D</a>
renders a volume using 3D texture mapping. This class is actually an
abstract superclass - with all the actual work done by <a class="el"
 href="http://www.vtk.org/doc/nightly/html/classvtkOpenGLVolumeTextureMapper3D.html">vtkOpenGLVolumeTextureMapper3D</a>.</p>
<p>This mappers currently supports:</p>
<p></p>
<ul>
  <li>any data type as input</li>
</ul>
<a class="el"
 href="http://www.vtk.org/doc/nightly/html/classvtkFixedPointVolumeRayCastMapper.html">vtkFixedPointVolumeRayCastMapper</a>&nbsp;
is a software ray caster for rendering volumes in <a class="el"
 href="http://www.vtk.org/doc/nightly/html/classvtkImageData.html">vtkImageData</a>.
It works with all input data types<br>
<p> a <a class="el"
 href="http://www.vtk.org/doc/nightly/html/classvtkFixedPointVolumeRayCastMapper.html">vtkFixedPointVolumeRayCastMapper</a>
can be used:</p>
<ul>
  <li>if the data is not unsigned char or unsigned short</li>
</ul>
<br>
<br>
</body>
</html>