├── .gitignore ├── LICENSE ├── birdspyview.py ├── demo.gif ├── helpers.py ├── pitch.png ├── pitch.py ├── readme.md ├── requirements.txt └── test_bpv.py /.gitignore: -------------------------------------------------------------------------------- 1 | test images/ 2 | *.pyc 3 | BirdsPyView/output.csv 4 | .vscode/ 5 | *.ipynb 6 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjtavares/BirdsPyView/HEAD/LICENSE -------------------------------------------------------------------------------- /birdspyview.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjtavares/BirdsPyView/HEAD/birdspyview.py -------------------------------------------------------------------------------- /demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjtavares/BirdsPyView/HEAD/demo.gif -------------------------------------------------------------------------------- /helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjtavares/BirdsPyView/HEAD/helpers.py -------------------------------------------------------------------------------- /pitch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjtavares/BirdsPyView/HEAD/pitch.png -------------------------------------------------------------------------------- /pitch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjtavares/BirdsPyView/HEAD/pitch.py -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjtavares/BirdsPyView/HEAD/readme.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjtavares/BirdsPyView/HEAD/requirements.txt -------------------------------------------------------------------------------- /test_bpv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjtavares/BirdsPyView/HEAD/test_bpv.py --------------------------------------------------------------------------------