```java
// Assumes you have a CLIJ2 instance
CLIJ2 clij2 = CLIJ2.getInstance();
clij2.voronoiOtsuLabeling(source_image, destination_image);
```
Check CLIJ2 docs for detailed setup! 😊
```java
// Assumes you have a CLIJ2 instance
CLIJ2 clij2 = CLIJ2.getInstance();
clij2.voronoiOtsuLabeling(source_image, destination_image);
```
Check CLIJ2 docs for detailed setup! 😊
```python
import pyclesperanto_prototype as cle
# Load your image
image = cle.imread('path/to/your/image.tif')
# Apply the Voronoi-Otsu-Labeling
labels = cle.voronoi_otsu_labeling(image)
# Save or display the result
cle.imshow(labels)
```
Hope this helps! 😊
```python
import pyclesperanto_prototype as cle
# Load your image
image = cle.imread('path/to/your/image.tif')
# Apply the Voronoi-Otsu-Labeling
labels = cle.voronoi_otsu_labeling(image)
# Save or display the result
cle.imshow(labels)
```
Hope this helps! 😊