ImageMorphology.jl icon indicating copy to clipboard operation
ImageMorphology.jl copied to clipboard

Morphological operations for image processing

Results 25 ImageMorphology.jl issues
Sort by recently updated
recently updated
newest added

Perhaps this already exists, but I've not found it. Specifically I'm looking for ``` skimage.measure.regionprops(labelled_image)[1].eccentricity ```

I'm using the erode function with a diamond shape structuring element, but the output doesn't look like what I expected. I'm working with 3D masks. Here is a minimal example...

I would like to add a function that fills interior holes in binary images. This is roughly equivalent to [MATLAB's `imfill` with the `'holes'` option](https://www.mathworks.com/help/images/ref/imfill.html) specified. This may also be...