Skip to content
Snippets Groups Projects
Commit e2918f51 authored by fima's avatar fima :beers:
Browse files

Merge branch 'threshold_for_v1' into 'main'

Threshold for v1

See merge request !157
parents 9b822c1e 5e7d8903
Branches main
No related tags found
1 merge request!157Threshold for v1
docs/assets/screenshots/interactive_thresholding.gif

2.57 MiB

......@@ -24,6 +24,7 @@ The `qim3d` library aims to provide easy ways to explore and get insights from v
- colormaps
- fade_mask
- line_profile
- threshold
::: qim3d.viz.colormaps
options:
......
# from ._sync import Sync # this will be added back after future development
from ._convert import convert
from ._downloader import Downloader
from ._loading import load, load_mesh
from ._ome_zarr import export_ome_zarr, import_ome_zarr
from ._downloader import Downloader
from ._saving import save, save_mesh
from ._convert import convert
from ._ome_zarr import export_ome_zarr, import_ome_zarr
......@@ -7,9 +7,10 @@ import numpy as np
import tifffile as tiff
import zarr
import zarr.core
import qim3d
from tqdm import tqdm
from qim3d.io import save
from qim3d.utils._misc import stringify_path
......@@ -121,7 +122,7 @@ class Convert:
"""
z = zarr.open(zarr_path)
save(tif_path, z)
qim3d.io.save(tif_path, z)
def convert_nifti_to_zarr(self, nifti_path: str, zarr_path: str) -> zarr.core.Array:
"""
......@@ -173,7 +174,7 @@ class Convert:
"""
z = zarr.open(zarr_path)
save(nifti_path, z, compression=compression)
qim3d.io.save(nifti_path, z, compression=compression)
def convert(
......
......@@ -4,12 +4,11 @@ from ._data_exploration import (
chunks,
fade_mask,
histogram,
line_profile,
slicer,
slicer_orthogonal,
slices_grid,
chunks,
histogram,
line_profile
threshold,
)
from ._detection import circles
from ._k3d import mesh, volumetric
......
This diff is collapsed.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment