Package imagingbook.common.mser.components


package imagingbook.common.mser.components
  • Class
    Description
    This class represents a connected component (i.e., a binary image region).
    This class represents a tree of extremal image components.
    Enumeration specifying the method (algorithm) for building the component tree.
    This class is a re-implementation of the "quasi-linear-time" component tree algorithm which is based on efficient, tree-based union finding as described in [1].
    This class implements the "linear-time" ("local flooding") component tree algorithm described in [1].
    Basically a 2D array of pixels which holds all necessary information about the image geometry, keeps track of which pixels have been visited and knows how to access neighboring pixels (currently 4-neighborhood only).