Skip to content

luxonis/blobconverter

master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 
cli
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

BlobConverter API

Discord Forum Docs License: MIT Website

Usage

  • Docker-Compose

    docker-compose build
    docker-compose up
    
  • Docker

    docker build -t blobconverter .
    docker run -p 8000:8000 blobconverter
    
  • System - python 3.5 or higher required

    pip install -r requirements.txt
    python main.py
    

Building CLI

These steps will allow to build and push a new blobconverter CLI package to PyPi

rm dist/*
python setup.py sdist bdist_wheel
twine check dist/*
twine upload --username luxonis dist/*

Testing locally

  • Build and start the docker container (backend)

    docker build -t blobconverter .
    docker run -p 8000:8000 blobconverter
    
  • Start the webserver (frontend)

    cd websrc
    yarn
    yarn start
    

TODO

  • customize precision (not only FP16)
  • add advanced options for downloader / converter