Opening TIFF series
Posted: Thu Jun 16, 2011 1:05 pm
Hello all,
I am looking at how to integrate LOCI with TIFF File series
So calling a simple reader like
I've been looking at the API to see how to define a string contaning the position data for the reader to understand it, but I am a bit lost. I know I can use setGroupFiles() but what other options can I specify?
I'm trying to do this so that TIFF series are handled by LOCI as well instead of having to do something customized.
Thanks in advance!
Oli
I am looking at how to integrate LOCI with TIFF File series
- Code: Select all
HyperStack_t001_z001_c001.tif
HyperStack_t001_z002_c001.tif
HyperStack_t001_z003_c001.tif
HyperStack_t001_z001_c002.tif
HyperStack_t001_z002_c002.tif
HyperStack_t001_z003_c002.tif
...
So calling a simple reader like
- Code: Select all
ImageReader reader = new ImageReader();
String id = "E:\\Tests\\Test_Open_Series\\HyperStack_t001_z001_c001.tif";
reader.setId(id);
I've been looking at the API to see how to define a string contaning the position data for the reader to understand it, but I am a bit lost. I know I can use setGroupFiles() but what other options can I specify?
I'm trying to do this so that TIFF series are handled by LOCI as well instead of having to do something customized.
Thanks in advance!
Oli