""" Paravision ====== Provides an interface to the Paravision models. How to use the documentation ---------------------------- Documentation is available in two forms: docstrings provided within the code, and a reference guide, available `here `. Code snippets are indicated by three greater-than signs:: >>> sdk = paravision.SDK() Use the built-in ``help`` function to view a function or object's docstring:: >>> help(paravision.SDK) ... Example ------- This simple example illustrates how to detect the bounding boxes of faces in an image: >>> import paravision >>> from paravision.utils import load_image >>> img = load_image('/tmp/face.jpg') >>> sdk = paravision.SDK() >>> sdk.get_faces(img) ([], 0) """ from .sdk import SDK # noqa from .engine import Engine # noqa __version__ = "8.2.0"