I'm in the process of writing an application which converts from a proprietary dataformat to OME-TIFF using the C++ libraries (ome-files-cpp 0.2.2, ome-common 5.3.2, bioformats 5.2.3).
I played around with compression
- Code: Select all
auto writer = make_shared<ome::files::out::OMETIFFWriter>();
auto compressionTypes = writer->getCompressionTypes();
std::cout << "List of supported compression types" << std::endl;
for(auto compType : compressionTypes)
std::cout << "Compression: " << compType << std::endl;
but the set of supported compression types is always empty.
Is my compilation of the OME libraries faulty or incomplete?
Thanks,
Thomas