Skip to content
Snippets Groups Projects

Fade viz

1 file
+ 10
2
Compare changes
  • Side-by-side
  • Inline
+ 10
2
import numpy as np
import qim3d.processing.filters as filters
import scipy
import skimage
import qim3d.processing.filters as filters
from qim3d.io.logger import log
@@ -105,4 +106,11 @@ def watershed(
num_labels = len(np.unique(labeled_volume))-1
log.info(f"Total number of objects found: {num_labels}")
return labeled_volume, num_labels
\ No newline at end of file
return labeled_volume, num_labels
def edge_fade(
vol: np.ndarray,
radius: int = 10,
axis: int = 0,
):
pass
\ No newline at end of file
Loading