Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Can I convert the czi file to DZI file with the pyramidio tools? #9

Open
Easy106 opened this issue Oct 12, 2018 · 2 comments
Open

Can I convert the czi file to DZI file with the pyramidio tools? #9

Easy106 opened this issue Oct 12, 2018 · 2 comments

Comments

@Easy106
Copy link

Easy106 commented Oct 12, 2018

Hello!
Can I convert the czi file to DZI file with the pyramidio tools?

@avandecreme
Copy link
Contributor

Hi!

We do not have a CZI reader.
If you are willing to write the reader, you should probably take example on the DeepZoomImageReader.
Once this is done you should be able to convert from CZI to DZI like this:

ScalablePyramidBuilder spb = new ScalablePyramidBuilder(tileSize, tileOverlap, tileFormat, "dzi");
FilesArchiver archiver = new DirectoryArchiver(outputFolder);
PartialImageReader pir = new CZIReader(cziFile);
spb.buildPyramid(pir, "pyramidName", archiver, parallelism);

@darwinjob
Copy link

You will need bio-formats library to read Zeiss CZI:
https://docs.openmicroscopy.org/bio-formats/5.9.2/formats/zeiss-czi.html
Check out this post:
https://www.openmicroscopy.org/community/viewtopic.php?f=13&t=8167
This should work for CZI as well.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants