gitextract__0_tzylg/ ├── .gitmodules ├── LICENSE.TXT ├── PVM_framework/ │ ├── AbstractExecutionManager.py │ ├── AbstractExecutionUnit.py │ ├── Accelerated.cpp │ ├── Accelerated.h │ ├── CoreUtils.py │ ├── LowLevelCPUControlx86.pyx │ ├── MLP.py │ ├── PVM_Create.py │ ├── PVM_SignalProvider.py │ ├── PVM_Storage.py │ ├── PVM_datasets.py │ ├── PVM_debug_console.py │ ├── PVM_display_helper.py │ ├── PVM_options.py │ ├── PVM_tracker.json │ ├── PVM_upgrade_dict.py │ ├── SharedArray.py │ ├── Sync.cpp │ ├── Sync.h │ ├── SyncUtils.pyx │ ├── SyncUtils_python.py │ ├── __init__.py │ ├── debug_logger.py │ └── fast_routines.pyx ├── PVM_models/ │ ├── PVM_Manager.py │ ├── PVM_plot_error.py │ ├── PVM_run.py │ ├── PVM_tracker.py │ ├── PVM_unit_2step_residual_v1.py │ ├── PVM_unit_test.py │ ├── PVM_unit_v1.py │ ├── __init__.py │ ├── demo00_run.py │ ├── demo00_unit.py │ ├── demo01_run.py │ ├── demo01_unit.py │ ├── demo02_run.py │ ├── demo02_unit.py │ ├── demo03_run.py │ ├── demo03_unit.py │ ├── demo04_run.py │ ├── demo04_unit.py │ ├── model_zoo/ │ │ ├── classic_medium.json │ │ ├── experiment1_face.json │ │ ├── experiment1_green_ball.json │ │ ├── experiment1_stop_sign.json │ │ ├── experiment2.json │ │ └── very_deep.json │ ├── process_dream_data.py │ └── run_tracking_benchmark.py ├── PVM_tests/ │ ├── test_MLP.py │ ├── test_SharedArray.py │ ├── test_SyncUtils.py │ ├── test_bounding_region.py │ ├── test_create.py │ ├── test_fast_routines.py │ └── test_labeled_movie.py ├── PVM_tools/ │ ├── __init__.py │ ├── abstract_bounding_boxer.py │ ├── abstract_tracker.py │ ├── benchmark.py │ ├── bounding_region.py │ └── labeled_movie.py ├── README.md ├── add_thirdparty_tracker_submodules.sh ├── docs/ │ ├── Makefile │ ├── conf.py │ ├── generate.sh │ ├── index.rst │ └── make.bat ├── download_data.sh ├── install_local.sh ├── install_ubuntu_dependencies.sh ├── other_trackers/ │ ├── ASMSearcher.hpp │ ├── __init__.py │ ├── backprojection.py │ ├── bounding_boxer.py │ ├── center_vision_tracker.py │ ├── cmt_vision_tracker.py │ ├── color_vision_tracker.py │ ├── null_vision_tracker.py │ ├── opentld_python.cpp │ ├── setup_opentld.py │ ├── setup_struck.py │ ├── struck.cpp │ ├── struck.h │ ├── struck_bindings.pyx │ ├── struck_tracker.py │ ├── test_struck_bindings.py │ ├── test_tld_basic.py │ └── tld_vision_tracker.py ├── pytest.ini ├── requirements.txt ├── setup.py ├── test └── tracker_tools/ ├── __init__.py ├── export_to_zip.py ├── images_to_PVM_pickle.py ├── label_PVM_pickle.py ├── movie_to_PVM_pickle.py ├── play_PVM_pickle.py ├── raw_to_PVM_pickle.py ├── scale_PVM_pickle.py └── upgrade_cloud_lib.py