├── .gitignore ├── .idea ├── .gitignore ├── misc.xml ├── modules.xml ├── runConfigurations │ ├── cropcsv.xml │ └── gen.xml └── vcs.xml ├── LICENSE ├── README.md ├── _doc ├── cropped.mp4 ├── cropped.png └── kdenlive_motion_tracking.png ├── cropcsv.py ├── gen.py ├── lib.py └── motion-tracking-video-crop.iml /.gitignore: -------------------------------------------------------------------------------- 1 | example/* 2 | *.mp4 3 | *.png 4 | -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspi/motion-tracking-video-crop/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspi/motion-tracking-video-crop/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspi/motion-tracking-video-crop/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/runConfigurations/cropcsv.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspi/motion-tracking-video-crop/HEAD/.idea/runConfigurations/cropcsv.xml -------------------------------------------------------------------------------- /.idea/runConfigurations/gen.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspi/motion-tracking-video-crop/HEAD/.idea/runConfigurations/gen.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspi/motion-tracking-video-crop/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspi/motion-tracking-video-crop/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspi/motion-tracking-video-crop/HEAD/README.md -------------------------------------------------------------------------------- /_doc/cropped.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspi/motion-tracking-video-crop/HEAD/_doc/cropped.mp4 -------------------------------------------------------------------------------- /_doc/cropped.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspi/motion-tracking-video-crop/HEAD/_doc/cropped.png -------------------------------------------------------------------------------- /_doc/kdenlive_motion_tracking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspi/motion-tracking-video-crop/HEAD/_doc/kdenlive_motion_tracking.png -------------------------------------------------------------------------------- /cropcsv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspi/motion-tracking-video-crop/HEAD/cropcsv.py -------------------------------------------------------------------------------- /gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspi/motion-tracking-video-crop/HEAD/gen.py -------------------------------------------------------------------------------- /lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspi/motion-tracking-video-crop/HEAD/lib.py -------------------------------------------------------------------------------- /motion-tracking-video-crop.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspi/motion-tracking-video-crop/HEAD/motion-tracking-video-crop.iml --------------------------------------------------------------------------------