<div dir="ltr">Dear David,<div><br></div><div>I tried to use XMLImageDataWriter and it seems to be working. However, the original VTK file that has 2Gb is then saved as a vti file that has only 10Mb. I think this is fine because my data is very sparse with a lot of zeros. I can make sure that it is working well because Paraview crashes when I tried to load the file. I'll check it again later on. Anyway, do you think the bug is in the StructuredPointsWriter?</div>
<div><br></div><div>Bill, I tried to not specify the data extent, but in this case the reader reads only the first image of the sequence. Is there anything else I have to set up?</div></div><div class="gmail_extra"><br clear="all">
<div><div><div><font color="#555555" face="Helvetica, Arial, sans-serif"><span style="line-height:16px"><b>Matheus Viana</b></span></font></div><div><font color="#555555" face="Helvetica, Arial, sans-serif"><span style="line-height:16px"><b>Postdoctoral Research Employee</b></span></font></div>
<div><b><span style="color:rgb(85,85,85);line-height:16px;font-family:Helvetica,Arial,sans-serif;font-size:13px">Developmental and Cell Biology</span></b></div><div><font color="#555555" face="Helvetica, Arial, sans-serif"><span style="line-height:16px"><b>University of California Irvine</b></span></font></div>
<div><font color="#555555" face="Helvetica, Arial, sans-serif"><span style="line-height:16px"><b><br></b></span></font><b><i><br></i></b></div></div></div>
<br><br><div class="gmail_quote">2014-06-19 14:20 GMT-03:00 Bill Lorensen <span dir="ltr"><<a href="mailto:bill.lorensen@gmail.com" target="_blank">bill.lorensen@gmail.com</a>></span>:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
The data extents you specified will produce a zero length structured points.<br>
<br>
For the tiff reader, you need not specify the extents if you want all<br>
of the data. And I'm not sure what the other methods will do in the<br>
tiff reader.<br>
<div class="">vtkTIFFReader *TIFFReader = vtkTIFFReader::New();<br>
</div><div class="">    TIFFReader -> SetFilePrefix("/Users/matheusviana/Desktop/images/im");<br>
    TIFFReader -> SetFilePattern("%s%04d.tif");<br>
</div>    TIFFReader -> Update();<br>
<div class=""><br>
On Thu, Jun 19, 2014 at 8:14 AM, matheus_viana <<a href="mailto:vianamp@gmail.com">vianamp@gmail.com</a>> wrote:<br>
> Guys, I'd like to know if there is any error in this code below. The code<br>
> works fine for small size dataset, but it writes a blank file when the<br>
> dataset has more than 2Gb. I'm working on 64bit OSX.<br>
><br>
> Thanks a lot.<br>
><br>
> int main() {<br>
>     vtkTIFFReader *TIFFReader = vtkTIFFReader::New();<br>
>     TIFFReader -> SetDataByteOrderToBigEndian();<br>
>     TIFFReader -> SetDataExtent(0,0,0,0,0,3959);<br>
>     TIFFReader -> SetFilePrefix("/Users/matheusviana/Desktop/images/im");<br>
>     TIFFReader -> SetFilePattern("%s%04d.tif");<br>
>     TIFFReader -> SetDataScalarTypeToUnsignedShort();<br>
>     TIFFReader -> Update();<br>
><br>
>     vtkStructuredPointsWriter *ImageDataWriter =<br>
> vtkStructuredPointsWriter::New();<br>
>     ImageDataWriter -> SetFileType(VTK_BINARY);<br>
>     ImageDataWriter -> SetInput(TIFFReader -> GetOutput());<br>
>     ImageDataWriter -> SetFileName("Result.vtk");<br>
>     ImageDataWriter -> Write();<br>
><br>
>     return 1;<br>
> }<br>
><br>
><br>
><br>
</div>> --<br>
> View this message in context: <a href="http://vtk.1045678.n5.nabble.com/vtkStructuredPointsWriter-writes-a-blank-file-tp5727536.html" target="_blank">http://vtk.1045678.n5.nabble.com/vtkStructuredPointsWriter-writes-a-blank-file-tp5727536.html</a><br>

<div class="HOEnZb"><div class="h5">> Sent from the VTK - Users mailing list archive at Nabble.com.<br>
> _______________________________________________<br>
> Powered by <a href="http://www.kitware.com" target="_blank">www.kitware.com</a><br>
><br>
> Visit other Kitware open-source projects at <a href="http://www.kitware.com/opensource/opensource.html" target="_blank">http://www.kitware.com/opensource/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" target="_blank">http://www.vtk.org/Wiki/VTK_FAQ</a><br>
><br>
> Follow this link to subscribe/unsubscribe:<br>
> <a href="http://public.kitware.com/mailman/listinfo/vtkusers" target="_blank">http://public.kitware.com/mailman/listinfo/vtkusers</a><br>
<br>
<br>
<br>
</div></div><span class="HOEnZb"><font color="#888888">--<br>
Unpaid intern in BillsBasement at noware dot com<br>
</font></span></blockquote></div><br></div>