SreeHarshaNelaturu / PyVision

Ready-to-use implementations of some of the most common computer vision algorithms

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

PyVision

Ready-to-use implementations of some of the most common computer vision algorithms.

In PyTorch only!

Currently available architectures

  • Multi Task Cascaded Convolutional Neural Network (MTCNN) : A SOTA face and facial-landmark detection architecture. Check out this out for more details.

  • YOLOv3: The SOTA object detection algorithm. For more details, read the docs.

For full list of architectures that has been ported or are in the process of being ported, check here.

Installation

  1. Run the code in your terminal to clone the master branch which contains the working code
$ git clone https://github.com/pranjaldatta/PyVision.git --single-branch --branch master
  1. Then, go to the repository root by pasting the command given below into your terminal
$ cd
  1. Run the following command in the terminal to install PyVision into the current virtual or conda environment
$ pip install .
  1. You are good to go!.

Contributing

For contribution guidelines, please look here. Contributions are always welcome!

ToDo

  • Populate with more architectures (obviously)

  • Come up with an efficient way to make the repository minimal i.e. assets (like weights) will only be downloaded on as-you-need basis. All weights are hosted on SRM-MIC Google drive and downloaded using gdown

  • Come up with an efficient way to ensure that heavy architecture specific dependecies are installed only when required. All heavy assets are installed only when model is being used.

Note

Currently, its working only in pre-configured conda environment with all dependencies installed.

About

Ready-to-use implementations of some of the most common computer vision algorithms


Languages

Language:Python 99.9%Language:Shell 0.1%