vipy


Namevipy JSON
Version 1.14.4 PyPI version JSON
download
home_pagehttps://github.com/visym/vipy
SummaryPython Tools for Visual Dataset Transformation
upload_time2023-04-05 19:42:10
maintainer
docs_urlNone
authorVisym Labs
requires_python
license
keywords computer vision machine learning ml cv privacy video image
VCS
bugtrack_url
requirements numpy dill pillow matplotlib ffmpeg-python scikit-build scipy opencv-python torch torchvision ipython scikit-learn boto3 youtube-dl dask distributed dill h5py nltk bs4 dropbox pyyaml pytest paramiko scp ujson numba pdoc3
Travis-CI No Travis.
coveralls test coverage No coveralls.
            [![PyPI version](https://badge.fury.io/py/vipy.svg)](https://badge.fury.io/py/vipy)  [![CI](https://github.com/visym/vipy/workflows/vipy%20unit%20tests/badge.svg)](https://github.com/visym/vipy/actions?query=workflow%3A%22vipy+unit+tests%22) [![Python 3.6+](https://img.shields.io/badge/python-3.6+-blue.svg)](https://www.python.org/downloads/) [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)

VIPY
------------------- 
VIPY: Python Tools for Visual Dataset Transformation    
Documentation: https://visym.github.io/vipy

VIPY is a python package for representation, transformation and visualization of annotated videos and images.  Annotations are the ground truth provided by labelers (e.g. object bounding boxes, face identities, temporal activity clips), suitable for training computer vision systems.  VIPY provides tools to easily edit videos and images so that the annotations are transformed along with the pixels.  This enables a clean interface for transforming complex datasets for input to your computer vision training and testing pipeline.

VIPY provides:  

* Representation of videos with labeled activities that can be resized, clipped, rotated, scaled, padded, cropped and resampled
* Representation of images with object bounding boxes that can be manipulated as easily as editing an image
* Clean visualization of annotated images and videos 
* Lazy loading of images and videos suitable for distributed processing (e.g. dask, spark)
* Straightforward integration into machine learning toolchains (e.g. torch, numpy)
* Fluent interface for chaining operations on videos and images
* Dataset download, unpack and import (e.g. Charades, AVA, ActivityNet, Kinetics, Moments in Time)
* Minimum dependencies for easy installation (e.g. AWS Lambda, Flask)

[![VIPY MEVA dataset visualization](http://i3.ytimg.com/vi/_jixHQr5dK4/maxresdefault.jpg)](https://youtu.be/_jixHQr5dK4)


Requirements
-------------------
python 3.6+  
[ffmpeg](https://ffmpeg.org/download.html) (required for videos)  
numpy, matplotlib, dill, pillow, ffmpeg-python   


Installation
-------------------

```python
pip install vipy
```

Optional dependencies are installable as a complete package:

```python
pip install pip --upgrade
pip install 'vipy[all]'
```

You will receive a friendly warning if attempting to use an optional dependency before installation.


Quickstart
-------------------
```python
import vipy
vipy.image.owl().mindim(512).zeropad(padwidth=150, padheight=0).show()
```
<img src="https://raw.githubusercontent.com/visym/vipy/master/docs/vipy_image_owl.jpg" width="700">

The [tutorials](https://visym.github.io/vipy/#tutorials) and [demos](https://github.com/visym/vipy/tree/master/demo) provide useful examples to help you get started.

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/visym/vipy",
    "name": "vipy",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "computer vision machine learning ML CV privacy video image",
    "author": "Visym Labs",
    "author_email": "info@visym.com",
    "download_url": "https://files.pythonhosted.org/packages/b6/d0/380f52b8ce9592c492a4be369ad25c0ce31d6de7e1ef3e0fe29ab70b3187/vipy-1.14.4.tar.gz",
    "platform": null,
    "description": "[![PyPI version](https://badge.fury.io/py/vipy.svg)](https://badge.fury.io/py/vipy)  [![CI](https://github.com/visym/vipy/workflows/vipy%20unit%20tests/badge.svg)](https://github.com/visym/vipy/actions?query=workflow%3A%22vipy+unit+tests%22) [![Python 3.6+](https://img.shields.io/badge/python-3.6+-blue.svg)](https://www.python.org/downloads/) [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)\n\nVIPY\n------------------- \nVIPY: Python Tools for Visual Dataset Transformation    \nDocumentation: https://visym.github.io/vipy\n\nVIPY is a python package for representation, transformation and visualization of annotated videos and images.  Annotations are the ground truth provided by labelers (e.g. object bounding boxes, face identities, temporal activity clips), suitable for training computer vision systems.  VIPY provides tools to easily edit videos and images so that the annotations are transformed along with the pixels.  This enables a clean interface for transforming complex datasets for input to your computer vision training and testing pipeline.\n\nVIPY provides:  \n\n* Representation of videos with labeled activities that can be resized, clipped, rotated, scaled, padded, cropped and resampled\n* Representation of images with object bounding boxes that can be manipulated as easily as editing an image\n* Clean visualization of annotated images and videos \n* Lazy loading of images and videos suitable for distributed processing (e.g. dask, spark)\n* Straightforward integration into machine learning toolchains (e.g. torch, numpy)\n* Fluent interface for chaining operations on videos and images\n* Dataset download, unpack and import (e.g. Charades, AVA, ActivityNet, Kinetics, Moments in Time)\n* Minimum dependencies for easy installation (e.g. AWS Lambda, Flask)\n\n[![VIPY MEVA dataset visualization](http://i3.ytimg.com/vi/_jixHQr5dK4/maxresdefault.jpg)](https://youtu.be/_jixHQr5dK4)\n\n\nRequirements\n-------------------\npython 3.6+  \n[ffmpeg](https://ffmpeg.org/download.html) (required for videos)  \nnumpy, matplotlib, dill, pillow, ffmpeg-python   \n\n\nInstallation\n-------------------\n\n```python\npip install vipy\n```\n\nOptional dependencies are installable as a complete package:\n\n```python\npip install pip --upgrade\npip install 'vipy[all]'\n```\n\nYou will receive a friendly warning if attempting to use an optional dependency before installation.\n\n\nQuickstart\n-------------------\n```python\nimport vipy\nvipy.image.owl().mindim(512).zeropad(padwidth=150, padheight=0).show()\n```\n<img src=\"https://raw.githubusercontent.com/visym/vipy/master/docs/vipy_image_owl.jpg\" width=\"700\">\n\nThe [tutorials](https://visym.github.io/vipy/#tutorials) and [demos](https://github.com/visym/vipy/tree/master/demo) provide useful examples to help you get started.\n",
    "bugtrack_url": null,
    "license": "",
    "summary": "Python Tools for Visual Dataset Transformation",
    "version": "1.14.4",
    "split_keywords": [
        "computer",
        "vision",
        "machine",
        "learning",
        "ml",
        "cv",
        "privacy",
        "video",
        "image"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7399e5b280b45d405bc6e3f24415c881a84604e5a563a497fe82bb84e93daf90",
                "md5": "45dd0ded072d96d19981e2b680a30ef2",
                "sha256": "21cba76d6eb0db68d0e1a492950fb5bbc4c36d9fd1b426b9bdf6548eda0ccbbd"
            },
            "downloads": -1,
            "filename": "vipy-1.14.4-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "45dd0ded072d96d19981e2b680a30ef2",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": null,
            "size": 291124,
            "upload_time": "2023-04-05T19:42:07",
            "upload_time_iso_8601": "2023-04-05T19:42:07.047957Z",
            "url": "https://files.pythonhosted.org/packages/73/99/e5b280b45d405bc6e3f24415c881a84604e5a563a497fe82bb84e93daf90/vipy-1.14.4-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b6d0380f52b8ce9592c492a4be369ad25c0ce31d6de7e1ef3e0fe29ab70b3187",
                "md5": "047d408663977704c8e616ebaab331bb",
                "sha256": "417455dfe13d76140ad61cc52dbd5e41a8807f9302e665b1da70559d7ab42c91"
            },
            "downloads": -1,
            "filename": "vipy-1.14.4.tar.gz",
            "has_sig": false,
            "md5_digest": "047d408663977704c8e616ebaab331bb",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 270210,
            "upload_time": "2023-04-05T19:42:10",
            "upload_time_iso_8601": "2023-04-05T19:42:10.617198Z",
            "url": "https://files.pythonhosted.org/packages/b6/d0/380f52b8ce9592c492a4be369ad25c0ce31d6de7e1ef3e0fe29ab70b3187/vipy-1.14.4.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-04-05 19:42:10",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "github_user": "visym",
    "github_project": "vipy",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "requirements": [
        {
            "name": "numpy",
            "specs": []
        },
        {
            "name": "dill",
            "specs": []
        },
        {
            "name": "pillow",
            "specs": []
        },
        {
            "name": "matplotlib",
            "specs": []
        },
        {
            "name": "ffmpeg-python",
            "specs": []
        },
        {
            "name": "scikit-build",
            "specs": []
        },
        {
            "name": "scipy",
            "specs": []
        },
        {
            "name": "opencv-python",
            "specs": []
        },
        {
            "name": "torch",
            "specs": []
        },
        {
            "name": "torchvision",
            "specs": []
        },
        {
            "name": "ipython",
            "specs": []
        },
        {
            "name": "scikit-learn",
            "specs": []
        },
        {
            "name": "boto3",
            "specs": []
        },
        {
            "name": "youtube-dl",
            "specs": []
        },
        {
            "name": "dask",
            "specs": []
        },
        {
            "name": "distributed",
            "specs": []
        },
        {
            "name": "dill",
            "specs": []
        },
        {
            "name": "h5py",
            "specs": []
        },
        {
            "name": "nltk",
            "specs": []
        },
        {
            "name": "bs4",
            "specs": []
        },
        {
            "name": "dropbox",
            "specs": []
        },
        {
            "name": "pyyaml",
            "specs": []
        },
        {
            "name": "pytest",
            "specs": []
        },
        {
            "name": "paramiko",
            "specs": []
        },
        {
            "name": "scp",
            "specs": []
        },
        {
            "name": "ujson",
            "specs": []
        },
        {
            "name": "numba",
            "specs": []
        },
        {
            "name": "pdoc3",
            "specs": []
        }
    ],
    "lcname": "vipy"
}
        
Elapsed time: 0.05340s