__init__.py 338 B

123456789101112
  1. """
  2. Graph-based operations, e.g., shortest paths.
  3. This includes creating adjacency graphs of pixels in an image, finding the
  4. central pixel in an image, finding (minimum-cost) paths across pixels, merging
  5. and cutting of graphs, etc.
  6. """
  7. import lazy_loader as _lazy
  8. __getattr__, __dir__, __all__ = _lazy.attach_stub(__name__, __file__)