├── .gitignore ├── LICENSE.txt ├── README.md ├── cv2_rolling_ball ├── __init__.py └── background_subtractor.py ├── outputs ├── example.png ├── example_bg.png └── example_roll.png ├── requirements.txt ├── setup.cfg └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbalatsko/opencv-rolling-ball/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbalatsko/opencv-rolling-ball/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbalatsko/opencv-rolling-ball/HEAD/README.md -------------------------------------------------------------------------------- /cv2_rolling_ball/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbalatsko/opencv-rolling-ball/HEAD/cv2_rolling_ball/__init__.py -------------------------------------------------------------------------------- /cv2_rolling_ball/background_subtractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbalatsko/opencv-rolling-ball/HEAD/cv2_rolling_ball/background_subtractor.py -------------------------------------------------------------------------------- /outputs/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbalatsko/opencv-rolling-ball/HEAD/outputs/example.png -------------------------------------------------------------------------------- /outputs/example_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbalatsko/opencv-rolling-ball/HEAD/outputs/example_bg.png -------------------------------------------------------------------------------- /outputs/example_roll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbalatsko/opencv-rolling-ball/HEAD/outputs/example_roll.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | numpy==1.14.1 2 | opencv-python==3.4.0.12 3 | 4 | -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [metadata] 2 | description-file = README.md -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbalatsko/opencv-rolling-ball/HEAD/setup.py --------------------------------------------------------------------------------