Interface AreaOpening

All Superinterfaces:
Algo
All Known Implementing Classes:
AreaOpeningNaive, AreaOpeningQueue, BoxDiagonalOpeningQueue

public interface AreaOpening
extends Algo
Area opening for gray level images.
Author:
dlegland
  • Method Summary

    Modifier and Type Method Description
    ij.process.ImageProcessor process​(ij.process.ImageProcessor image, int minArea)
    Applies area opening on the input grayscale image and returns the result.

    Methods inherited from interface inra.ijpb.algo.Algo

    addAlgoListener, removeAlgoListener
  • Method Details

    • process

      ij.process.ImageProcessor process​(ij.process.ImageProcessor image, int minArea)
      Applies area opening on the input grayscale image and returns the result.
      Parameters:
      image - the image to process.
      minArea - the minimal number of pixels the regions need to keep.
      Returns:
      the result of area opening.