<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
  <meta content="text/html;charset=GB2312" http-equiv="Content-Type">
  <title></title>
</head>
<body bgcolor="#ffffff" text="#000000">
InsertNextTuple1 adds another new tuple, but you don't need that.
You've already pre-allocated all the tuples you'll need by calling
AllocateScalars. Call SetTuple1 instead of InsertNextTuple1 and you
should see a dramatic speed up...<br>
<br>
HTH,<br>
David<br>
<br>
<br>
Yixun Liu wrote:
<blockquote cite="mid000601c535ce$54404380$1f64a8c0@YXLIU" type="cite">
  <meta http-equiv="Content-Type" content="text/html; ">
  <meta content="MSHTML 6.00.2900.2180" name="GENERATOR">
  <style></style>
  <div><font face="Arial" size="2">Hi,</font></div>
  <div>&nbsp;</div>
  <div><font face="Arial" size="2">I want to&nbsp;convert&nbsp;a &nbsp;java 3D
array(threeDarray) to&nbsp;a vtkImageData object(image).</font></div>
  <div>&nbsp;</div>
  <div><font face="Arial" size="2">I do it use java as below:</font></div>
  <div>&nbsp;</div>
  <div><font face="Arial" size="2">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; vtkImageData image = new
vtkImageData();<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; image.SetDimensions(iWidth, iHeight, iNumImg);<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; image.SetOrigin(0.0, 0.0, 0.0);<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; image.SetSpacing(spacing[0],spacing[1],spacing[2]);<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; image.SetScalarType(5);<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; image.AllocateScalars();<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; vtkDataArray array = image.GetPointData().GetScalars();<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </font></div>
  <font size="2"></font>
  <div><font size="2"><br>
  <font face="Arial">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;for(int iZ = 0; iY &lt; iNumImg; iZ++){</font></font></div>
  <div><font size="2">&nbsp;</font></div>
  <div><font size="2"><font face="Arial">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; for(int iY= 0; iY
&lt; iHeight; iY++){</font></font></div>
  <div><font size="2">&nbsp;</font></div>
  <div><font size="2"><font face="Arial">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; for(int iX = 0; iX
&lt; iWidth; iX++){</font></font></div>
  <div><font size="2">&nbsp;</font></div>
  <div><font size="2"><font face="Arial">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
array.InsertNextTuple1(threeDarray[iZ][iY][iX]);<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }</font></font></div>
  <div><font size="2"><font face="Arial">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }</font></font></div>
  <div><font size="2"><font face="Arial">}</font></font></div>
  <div><font size="2">&nbsp;</font></div>
  <div><font size="2"><font face="Arial">However, it is very slow due
to the insertNextTuple(). Anybody tell me a queikly method?</font></font></div>
  <div><font size="2">&nbsp;</font></div>
  <div><font size="2"><font face="Arial">Best regards,</font></font></div>
  <div><font size="2">&nbsp;</font></div>
  <div><font size="2"><font face="Arial">Yixun Liu</font></font></div>
  <pre wrap="">
<hr size="4" width="90%">
_______________________________________________
This is the private VTK discussion list. 
Please keep messages on-topic. Check the FAQ at: <a class="moz-txt-link-freetext" href="http://www.vtk.org/Wiki/VTK_FAQ">http://www.vtk.org/Wiki/VTK_FAQ</a>
Follow this link to subscribe/unsubscribe:
<a class="moz-txt-link-freetext" href="http://www.vtk.org/mailman/listinfo/vtkusers">http://www.vtk.org/mailman/listinfo/vtkusers</a>
  </pre>
</blockquote>
</body>
</html>