├── .gitignore ├── src-dox ├── movement_mask.png ├── movement_frame.png ├── swirl_75x75_red.jpg ├── movement_with_bbox.png ├── movement_with_contour.png ├── movedetect_youtube_thumbnail.png ├── movement_with_contour_and_bbox.png ├── 03_license.dox ├── CMakeLists.txt ├── footer_doxygen.html ├── 01_mainpage.dox ├── footer_ccoderun.html ├── 02_summary.dox └── Doxyfile.in ├── other ├── movement_test_01.m4v └── movement_test_02.m4v ├── .editorconfig ├── src-lib ├── CMakeLists.txt ├── MoveDetect.cpp └── MoveDetect.hpp ├── src-test ├── CMakeLists.txt └── main.cpp ├── .github └── FUNDING.yml ├── license.txt ├── CMakeLists.txt └── readme.md /.gitignore: -------------------------------------------------------------------------------- 1 | *.kdev4 2 | build 3 | -------------------------------------------------------------------------------- /src-dox/movement_mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanecharette/MoveDetect/HEAD/src-dox/movement_mask.png -------------------------------------------------------------------------------- /other/movement_test_01.m4v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanecharette/MoveDetect/HEAD/other/movement_test_01.m4v -------------------------------------------------------------------------------- /other/movement_test_02.m4v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanecharette/MoveDetect/HEAD/other/movement_test_02.m4v -------------------------------------------------------------------------------- /src-dox/movement_frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanecharette/MoveDetect/HEAD/src-dox/movement_frame.png -------------------------------------------------------------------------------- /src-dox/swirl_75x75_red.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanecharette/MoveDetect/HEAD/src-dox/swirl_75x75_red.jpg -------------------------------------------------------------------------------- /src-dox/movement_with_bbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanecharette/MoveDetect/HEAD/src-dox/movement_with_bbox.png -------------------------------------------------------------------------------- /src-dox/movement_with_contour.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanecharette/MoveDetect/HEAD/src-dox/movement_with_contour.png -------------------------------------------------------------------------------- /src-dox/movedetect_youtube_thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanecharette/MoveDetect/HEAD/src-dox/movedetect_youtube_thumbnail.png -------------------------------------------------------------------------------- /src-dox/movement_with_contour_and_bbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephanecharette/MoveDetect/HEAD/src-dox/movement_with_contour_and_bbox.png -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- 1 | # https://EditorConfig.org 2 | 3 | # top-most EditorConfig file 4 | root = true 5 | 6 | # Unix-style newlines with a newline ending every file 7 | [*] 8 | end_of_line = lf 9 | charset = utf-8 10 | indent_style = tab 11 | indent_size = 4 12 | trim_trailing_whitespace = true 13 | insert_final_newline = true 14 | 15 | -------------------------------------------------------------------------------- /src-dox/03_license.dox: -------------------------------------------------------------------------------- 1 | /** @page License License 2 | 3 | A copy of the license file (MIT) is included with the @p %MoveDetect source code. The license is reproduced in its entirety here: 4 | 5 |
17 | $doxygenversion
18 |
19 |
20 |