Metadata-Version: 2.1
Name: ibb
Version: 1.0.0
Summary: IPython widgets from Brambox
Home-page: https://github.com/0phoff/ibb
Author: 0phoff
Author-email: 
License: UNKNOWN
Description: <img alt="Logo" src="assets/logo.svg" width="100%"/>
        
        [![Version][version-badge]][release-url]
        
        Interactive BramBox
        ===================
        IPython widgets for visualizing brambox annotation and detection dataframes on their images.
        These widgets help with doing computer vision research in IPython Notebooks.
        
        
        ## Widget List
        You can find more information about each widget by checking its doc-string:
        ```python
        import ibb
        
        # Python
        help(ibb.<WIDGET_NAME>)
        
        # Alternative in Notebook
        ?ibb.<WIDGET_NAME>
        ```
        
        - **ImageCanvas**: Barebones widget to draw numpy arrays as images and rectangles. Use this to create your own widgets.
        - **ImageViewer**: Image list browser.
        - **BoundingBoxViewer**: Brambox dataset browser. Browse through your annotations or detections for visual inspection.
        - **CutoutViewer**: Brambox dataset browser, but view individual annotations or detections as cutouts of the image.
        
        
        ## Installation
        
        To install use pip:
        
        ```bash
        > pip install ibb
        > jupyter nbextension enable --py --sys-prefix ibb
        ```
        
        
        For a development installation (requires npm),
        
        ```bash
        > git clone https://github.com/0phoff/ibb.git
        > cd ibb 
        > pip install -e .
        > jupyter nbextension install --py --symlink --sys-prefix ibb
        > jupyter nbextension enable --py --sys-prefix ibb
        ```
        
        [version-badge]: https://img.shields.io/pypi/v/ibb.svg?label=version
        [release-url]: https://pypi.org/project/ibb
        
Keywords: computer-vision,deep-learning,object-detection,visualization,notebook,ipython,jupyter,widgets,ipywidgets
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Framework :: IPython
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: Topic :: Multimedia :: Graphics
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Description-Content-Type: text/markdown
