- some workarounds to get jars and shared libs in the right place for python

- add most ndbioimage python code and use rs code as bfread
This commit is contained in:
Wim Pomp
2025-02-16 23:02:40 +01:00
parent fefdd6448b
commit 83ea9722f6
19 changed files with 3036 additions and 24 deletions

View File

@@ -215,7 +215,7 @@ impl Reader {
}
/// Get ome metadata as xml string
pub fn ome_xml(&self) -> Result<String> {
pub fn get_ome_xml(&self) -> Result<String> {
self.image_reader.ome_xml()
}
@@ -396,7 +396,7 @@ mod tests {
fn ome_xml() -> Result<()> {
let file = "Experiment-2029.czi";
let reader = open(file)?;
let xml = reader.ome_xml()?;
let xml = reader.get_ome_xml()?;
println!("{}", xml);
Ok(())
}