├── .gitignore ├── HELP.txt ├── LICENSE.txt ├── MANIFEST.in ├── Makefile ├── README.rst ├── conda-recipe ├── bld.bat ├── build.sh └── meta.yaml ├── config └── default.ini ├── etc ├── experiments │ ├── input.mp4 │ ├── out.mp4 │ ├── test_multiprocessing.py │ ├── test_pp.py │ ├── test_process_pool_executor.py │ ├── test_pyav.py │ └── text-shot-regressor │ │ ├── input │ │ ├── bitva_za_sewastopl.luma.txt │ │ ├── bolshie_glaza.ffmpeg-threshold-scenes.txt │ │ ├── bolshie_glaza.luma.txt │ │ ├── djadja-stepa-milicioner.ffmpeg-threshold-scenes.txt │ │ ├── djadja-stepa-milicioner.luma.txt │ │ ├── djadja-stepa-milicioner.luma2.txt │ │ ├── djadja-stepa-milicioner.luma3.txt │ │ ├── djadja-stepa-milicioner.luma4.txt │ │ ├── drone-naf-over-ukrainian-positions.bw.txt │ │ ├── drone-naf-over-ukrainian-positions.luma.txt │ │ ├── drone-survol-paris.bw.txt │ │ ├── drone-survol-paris.luma.txt │ │ ├── drone-tulum.bw.txt │ │ ├── drone-tulum.luma.txt │ │ ├── elisa-lam-video.luma.txt │ │ ├── leviafan.bw.txt │ │ ├── leviafan.ffmpeg-threshold-scenes.txt │ │ ├── leviafan.luma.txt │ │ ├── victoria-terminus-security-cam-of-shootout-in-bombay-india.luma.txt │ │ └── victoria.bw.txt │ │ ├── output │ │ └── djadja-stepa-milicioner.luma.txt │ │ └── text-shot-regressor.py └── input │ └── ffserver.conf ├── main.py ├── requirements ├── py27 │ ├── requirements-conda-explicit.txt │ ├── requirements-conda.txt │ ├── requirements-pip.txt │ └── shot-detector.yml └── py34 │ ├── requirements-conda-explicit.build.txt │ ├── requirements-conda-explicit.txt │ ├── requirements-conda.build.txt │ ├── requirements-conda.txt │ ├── requirements-pip.build.txt │ ├── requirements-pip.txt │ ├── shot-detector.build.yml │ └── shot-detector.yml ├── setup.cfg ├── setup.py ├── shot_detector.egg-info ├── PKG-INFO ├── SOURCES.txt ├── dependency_links.txt ├── entry_points.txt ├── not-zip-safe ├── requires.txt └── top_level.txt └── shot_detector ├── __init__.py ├── charts ├── __init__.py └── event │ ├── __init__.py │ ├── base │ ├── __init__.py │ ├── base_event_chart.py │ ├── filter_description.py │ └── plot_options.py │ ├── old_event_chart.py │ ├── regression │ ├── __init__.py │ ├── bills_dtr_event_chart.py │ └── bills_mean_event_chart.py │ ├── threshold │ ├── __init__.py │ ├── adaptive │ │ ├── __init__.py │ │ ├── estimation_check_event_chart.py │ │ ├── estimation_vote_event_chart.py │ │ ├── z_test_event_chart.py │ │ └── z_test_vote_event_chart.py │ └── static │ │ ├── __init__.py │ │ ├── chi_event_chart.py │ │ ├── ffmpeg_like_event_chart.py │ │ ├── rescaling_event_chart.py │ │ ├── rescaling_vote_event_chart.py │ │ ├── sad_event_chart.py │ │ └── sad_ffmpeg_event_chart.py │ └── trend │ ├── __init__.py │ ├── mean_abs_diff_event_chart.py │ ├── mean_atan_diff_event_chart.py │ ├── mean_atan_vote_event_chart.py │ └── mean_sign_diff_event_chart.py ├── detectors ├── __init__.py ├── base_shot_detector.py ├── common_detector.py ├── dummy_text_detector.py └── simple_detector.py ├── features ├── __init__.py ├── extractors │ ├── __init__.py │ ├── base_extractor.py │ ├── colours │ │ ├── __init__.py │ │ ├── bw_extractor.py │ │ ├── long_luma_extractor.py │ │ ├── luma_extractor.py │ │ ├── rgb_extractor.py │ │ └── rgbbw_extractor.py │ ├── features │ │ ├── __init__.py │ │ ├── dct.py │ │ ├── histogram.py │ │ └── optical_flow.py │ ├── image_based.py │ ├── parallel_extractor.py │ └── vector_based.py ├── metrics │ └── __init__.py └── norms │ ├── __init__.py │ ├── base_norm.py │ ├── l1_norm.py │ └── l2_norm.py ├── filters ├── __init__.py ├── base │ ├── __init__.py │ ├── base_filter.py │ ├── base_nested_filter.py │ ├── base_nested_parallel_filter.py │ ├── base_nested_sequential_filter.py │ └── base_plain_filter.py ├── common │ ├── __init__.py │ ├── atan_filter.py │ ├── bound_filter.py │ ├── colour_filter.py │ ├── dct_filter.py │ ├── dht_filter.py │ ├── exp_filter.py │ ├── factor_filter.py │ ├── floor_filter.py │ ├── histogram_filter.py │ ├── log_filter.py │ ├── math_filter.py │ ├── modulus_filter.py │ ├── norm_filter.py │ ├── otsu_filter.py │ ├── sign_angle_diff_1d_filter.py │ ├── sign_angle_diff_2d_filter.py │ └── sign_change_filter.py ├── compound │ ├── __init__.py │ ├── base_compound_filter.py │ ├── mean_cascade.py │ ├── min_std_cascade.py │ ├── mole_filter.py │ └── sigma_cascade.py ├── dsl │ ├── __init__.py │ ├── dsl_filter_mixin.py │ ├── dsl_nested_parallel_filter.py │ ├── dsl_plain_filter.py │ ├── filter_cast_features.py │ ├── filter_cast_scalar_value.py │ ├── filter_cast_seq_value.py │ ├── filter_condition_features.py │ ├── filter_intersection.py │ ├── filter_operator.py │ ├── filter_sequence.py │ └── filter_tuple.py ├── filter.py ├── sliding_window │ ├── __init__.py │ ├── alpha_beta_swfilter.py │ ├── base_combination_swfilter.py │ ├── base_stat_swfilter.py │ ├── base_swfilter.py │ ├── bspline_swfilter.py │ ├── dct_coef_swfilter.py │ ├── dct_linear_regressor_swfilter.py │ ├── dct_regressor_swfilter.py │ ├── debug_grid_swfilter.py │ ├── debug_swfilter.py │ ├── decision_tree_regressor_swfilter.py │ ├── detrend_swfilter.py │ ├── deviation_difference_swfilter.py │ ├── deviation_swfilter.py │ ├── difference_swfilter.py │ ├── dixon_range_swfilter.py │ ├── extrema_swfilter.py │ ├── ffmpeg_like_treshold_swfilter.py │ ├── gaussian_kde_swfilter.py │ ├── hist_simple_swfilter.py │ ├── kurtosis_swfilter.py │ ├── level_swfilter.py │ ├── mad_swfilter.py │ ├── max_swfilter.py │ ├── mean_swfilter.py │ ├── median_swfilter.py │ ├── min_std_dct_regression_swfilter.py │ ├── min_std_mean_swfilter.py │ ├── min_std_median_swfilter.py │ ├── min_std_otsu_swfilter.py │ ├── min_std_regression_swfilter.py │ ├── min_swfilter.py │ ├── nikitin_swfilter.py │ ├── norm_swfilter.py │ ├── pack_swfilter.py │ ├── pearson_correlation_swfilter.py │ ├── savitzky_golay_swfilter.py │ ├── scale_swfilter.py │ ├── scipy_stat_swfilter.py │ ├── shift_swfilter.py │ ├── skewness_swfilter.py │ ├── stat_test_swfilters │ │ ├── __init__.py │ │ ├── base_stat_test_swfilter.py │ │ ├── ks_2samp_swfilter.py │ │ ├── normal_test_swfilter.py │ │ ├── ranksums_swfilter.py │ │ ├── stat_test_swfilter.py │ │ ├── ttest_ind_swfilter.py │ │ └── ttest_rel_swfilter.py │ ├── std_error_swfilter.py │ ├── std_swfilter.py │ ├── variance_swfilter.py │ ├── wiener_swfilter.py │ ├── zscore_swfilter.py │ └── zscore_zero_swfilter.py └── util │ ├── __init__.py │ ├── bulk_filter.py │ ├── condition_filter.py │ ├── delay_filter.py │ ├── fork_filter.py │ └── slice_filter.py ├── handlers ├── __init__.py ├── base_event_handler.py ├── base_frame_handler.py ├── base_handler.py ├── base_plot_handler.py ├── base_point_handler.py ├── base_video_handler.py ├── parallel_base_handler.py └── parallel_frame_handler.py ├── legacy_objects ├── __init__.py ├── base_frame.py ├── base_frame_size.py ├── base_point.py ├── base_video_unit.py ├── point_window.py └── second.py ├── objects ├── __init__.py ├── base_frame.py ├── base_point.py ├── base_video_frame.py ├── base_video_unit.py ├── frame_position.py ├── frame_size.py ├── point_window.py └── time │ ├── __init__.py │ ├── base_time.py │ ├── clock_time.py │ ├── stream_time.py │ ├── time_float.py │ └── video_time.py ├── selectors ├── __init__.py ├── event │ ├── __init__.py │ ├── base_event_selector.py │ ├── dtr_event_selector.py │ └── old_event_selector.py └── point │ ├── __init__.py │ └── base_point_selector.py ├── services ├── __init__.py ├── base_detector_service.py ├── base_service.py ├── plot_service.py └── shot_detector_service.py ├── tool.py └── utils ├── __init__.py ├── collections ├── __init__.py ├── condenser.py ├── obj_dict.py ├── sliding_windows │ ├── __init__.py │ ├── base_sliding_window.py │ ├── delayed_sliding_window.py │ ├── repeated_sliding_window.py │ └── sliding_window.py └── smart_dict.py ├── common.py ├── config_arg_parser.py ├── dsl ├── __init__.py ├── dsl_kwargs.py └── dsl_operator_mixin.py ├── functool_lru_cache_method.py ├── gale_church.py ├── iter.py ├── lazy_helper.py ├── lazy_helper_wrapper.py ├── log_meta.py ├── log_settings.py ├── memo.py ├── multiprocessing ├── __init__.py ├── base_queue_process_pool.py ├── func_seq_mapper.py ├── function_task.py ├── pp_server.py ├── queue_worker.py └── save_state_process_pool.py ├── numerical.py ├── repr_dict.py ├── repr_hash.py └── tex_template.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/.gitignore -------------------------------------------------------------------------------- /HELP.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/HELP.txt -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/README.rst -------------------------------------------------------------------------------- /conda-recipe/bld.bat: -------------------------------------------------------------------------------- 1 | "%PYTHON%" setup.py install 2 | if errorlevel 1 exit 1 3 | -------------------------------------------------------------------------------- /conda-recipe/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/conda-recipe/build.sh -------------------------------------------------------------------------------- /conda-recipe/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/conda-recipe/meta.yaml -------------------------------------------------------------------------------- /config/default.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/config/default.ini -------------------------------------------------------------------------------- /etc/experiments/input.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/etc/experiments/input.mp4 -------------------------------------------------------------------------------- /etc/experiments/out.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/etc/experiments/out.mp4 -------------------------------------------------------------------------------- /etc/experiments/test_multiprocessing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/etc/experiments/test_multiprocessing.py -------------------------------------------------------------------------------- /etc/experiments/test_pp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/etc/experiments/test_pp.py -------------------------------------------------------------------------------- /etc/experiments/test_process_pool_executor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/etc/experiments/test_process_pool_executor.py -------------------------------------------------------------------------------- /etc/experiments/test_pyav.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/etc/experiments/test_pyav.py -------------------------------------------------------------------------------- /etc/experiments/text-shot-regressor/input/bitva_za_sewastopl.luma.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/etc/experiments/text-shot-regressor/input/bitva_za_sewastopl.luma.txt -------------------------------------------------------------------------------- /etc/experiments/text-shot-regressor/input/bolshie_glaza.ffmpeg-threshold-scenes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/etc/experiments/text-shot-regressor/input/bolshie_glaza.ffmpeg-threshold-scenes.txt -------------------------------------------------------------------------------- /etc/experiments/text-shot-regressor/input/bolshie_glaza.luma.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/etc/experiments/text-shot-regressor/input/bolshie_glaza.luma.txt -------------------------------------------------------------------------------- /etc/experiments/text-shot-regressor/input/djadja-stepa-milicioner.ffmpeg-threshold-scenes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/etc/experiments/text-shot-regressor/input/djadja-stepa-milicioner.ffmpeg-threshold-scenes.txt -------------------------------------------------------------------------------- /etc/experiments/text-shot-regressor/input/djadja-stepa-milicioner.luma.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/etc/experiments/text-shot-regressor/input/djadja-stepa-milicioner.luma.txt -------------------------------------------------------------------------------- /etc/experiments/text-shot-regressor/input/djadja-stepa-milicioner.luma2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/etc/experiments/text-shot-regressor/input/djadja-stepa-milicioner.luma2.txt -------------------------------------------------------------------------------- /etc/experiments/text-shot-regressor/input/djadja-stepa-milicioner.luma3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/etc/experiments/text-shot-regressor/input/djadja-stepa-milicioner.luma3.txt -------------------------------------------------------------------------------- /etc/experiments/text-shot-regressor/input/djadja-stepa-milicioner.luma4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/etc/experiments/text-shot-regressor/input/djadja-stepa-milicioner.luma4.txt -------------------------------------------------------------------------------- /etc/experiments/text-shot-regressor/input/drone-naf-over-ukrainian-positions.bw.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/etc/experiments/text-shot-regressor/input/drone-naf-over-ukrainian-positions.bw.txt -------------------------------------------------------------------------------- /etc/experiments/text-shot-regressor/input/drone-naf-over-ukrainian-positions.luma.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/etc/experiments/text-shot-regressor/input/drone-naf-over-ukrainian-positions.luma.txt -------------------------------------------------------------------------------- /etc/experiments/text-shot-regressor/input/drone-survol-paris.bw.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/etc/experiments/text-shot-regressor/input/drone-survol-paris.bw.txt -------------------------------------------------------------------------------- /etc/experiments/text-shot-regressor/input/drone-survol-paris.luma.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/etc/experiments/text-shot-regressor/input/drone-survol-paris.luma.txt -------------------------------------------------------------------------------- /etc/experiments/text-shot-regressor/input/drone-tulum.bw.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/etc/experiments/text-shot-regressor/input/drone-tulum.bw.txt -------------------------------------------------------------------------------- /etc/experiments/text-shot-regressor/input/drone-tulum.luma.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/etc/experiments/text-shot-regressor/input/drone-tulum.luma.txt -------------------------------------------------------------------------------- /etc/experiments/text-shot-regressor/input/elisa-lam-video.luma.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/etc/experiments/text-shot-regressor/input/elisa-lam-video.luma.txt -------------------------------------------------------------------------------- /etc/experiments/text-shot-regressor/input/leviafan.bw.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/etc/experiments/text-shot-regressor/input/leviafan.bw.txt -------------------------------------------------------------------------------- /etc/experiments/text-shot-regressor/input/leviafan.ffmpeg-threshold-scenes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/etc/experiments/text-shot-regressor/input/leviafan.ffmpeg-threshold-scenes.txt -------------------------------------------------------------------------------- /etc/experiments/text-shot-regressor/input/leviafan.luma.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/etc/experiments/text-shot-regressor/input/leviafan.luma.txt -------------------------------------------------------------------------------- /etc/experiments/text-shot-regressor/input/victoria-terminus-security-cam-of-shootout-in-bombay-india.luma.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/etc/experiments/text-shot-regressor/input/victoria-terminus-security-cam-of-shootout-in-bombay-india.luma.txt -------------------------------------------------------------------------------- /etc/experiments/text-shot-regressor/input/victoria.bw.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/etc/experiments/text-shot-regressor/input/victoria.bw.txt -------------------------------------------------------------------------------- /etc/experiments/text-shot-regressor/output/djadja-stepa-milicioner.luma.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/etc/experiments/text-shot-regressor/output/djadja-stepa-milicioner.luma.txt -------------------------------------------------------------------------------- /etc/experiments/text-shot-regressor/text-shot-regressor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/etc/experiments/text-shot-regressor/text-shot-regressor.py -------------------------------------------------------------------------------- /etc/input/ffserver.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/etc/input/ffserver.conf -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/main.py -------------------------------------------------------------------------------- /requirements/py27/requirements-conda-explicit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/requirements/py27/requirements-conda-explicit.txt -------------------------------------------------------------------------------- /requirements/py27/requirements-conda.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/requirements/py27/requirements-conda.txt -------------------------------------------------------------------------------- /requirements/py27/requirements-pip.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/requirements/py27/requirements-pip.txt -------------------------------------------------------------------------------- /requirements/py27/shot-detector.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/requirements/py27/shot-detector.yml -------------------------------------------------------------------------------- /requirements/py34/requirements-conda-explicit.build.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/requirements/py34/requirements-conda-explicit.build.txt -------------------------------------------------------------------------------- /requirements/py34/requirements-conda-explicit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/requirements/py34/requirements-conda-explicit.txt -------------------------------------------------------------------------------- /requirements/py34/requirements-conda.build.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/requirements/py34/requirements-conda.build.txt -------------------------------------------------------------------------------- /requirements/py34/requirements-conda.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/requirements/py34/requirements-conda.txt -------------------------------------------------------------------------------- /requirements/py34/requirements-pip.build.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/requirements/py34/requirements-pip.build.txt -------------------------------------------------------------------------------- /requirements/py34/requirements-pip.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/requirements/py34/requirements-pip.txt -------------------------------------------------------------------------------- /requirements/py34/shot-detector.build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/requirements/py34/shot-detector.build.yml -------------------------------------------------------------------------------- /requirements/py34/shot-detector.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/requirements/py34/shot-detector.yml -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [metadata] 2 | description-file = README.rst 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/setup.py -------------------------------------------------------------------------------- /shot_detector.egg-info/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector.egg-info/PKG-INFO -------------------------------------------------------------------------------- /shot_detector.egg-info/SOURCES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector.egg-info/SOURCES.txt -------------------------------------------------------------------------------- /shot_detector.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /shot_detector.egg-info/entry_points.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector.egg-info/entry_points.txt -------------------------------------------------------------------------------- /shot_detector.egg-info/not-zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /shot_detector.egg-info/requires.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector.egg-info/requires.txt -------------------------------------------------------------------------------- /shot_detector.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | shot_detector 2 | -------------------------------------------------------------------------------- /shot_detector/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/__init__.py -------------------------------------------------------------------------------- /shot_detector/charts/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/charts/__init__.py -------------------------------------------------------------------------------- /shot_detector/charts/event/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/charts/event/__init__.py -------------------------------------------------------------------------------- /shot_detector/charts/event/base/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/charts/event/base/__init__.py -------------------------------------------------------------------------------- /shot_detector/charts/event/base/base_event_chart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/charts/event/base/base_event_chart.py -------------------------------------------------------------------------------- /shot_detector/charts/event/base/filter_description.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/charts/event/base/filter_description.py -------------------------------------------------------------------------------- /shot_detector/charts/event/base/plot_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/charts/event/base/plot_options.py -------------------------------------------------------------------------------- /shot_detector/charts/event/old_event_chart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/charts/event/old_event_chart.py -------------------------------------------------------------------------------- /shot_detector/charts/event/regression/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/charts/event/regression/__init__.py -------------------------------------------------------------------------------- /shot_detector/charts/event/regression/bills_dtr_event_chart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/charts/event/regression/bills_dtr_event_chart.py -------------------------------------------------------------------------------- /shot_detector/charts/event/regression/bills_mean_event_chart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/charts/event/regression/bills_mean_event_chart.py -------------------------------------------------------------------------------- /shot_detector/charts/event/threshold/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/charts/event/threshold/__init__.py -------------------------------------------------------------------------------- /shot_detector/charts/event/threshold/adaptive/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/charts/event/threshold/adaptive/__init__.py -------------------------------------------------------------------------------- /shot_detector/charts/event/threshold/adaptive/estimation_check_event_chart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/charts/event/threshold/adaptive/estimation_check_event_chart.py -------------------------------------------------------------------------------- /shot_detector/charts/event/threshold/adaptive/estimation_vote_event_chart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/charts/event/threshold/adaptive/estimation_vote_event_chart.py -------------------------------------------------------------------------------- /shot_detector/charts/event/threshold/adaptive/z_test_event_chart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/charts/event/threshold/adaptive/z_test_event_chart.py -------------------------------------------------------------------------------- /shot_detector/charts/event/threshold/adaptive/z_test_vote_event_chart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/charts/event/threshold/adaptive/z_test_vote_event_chart.py -------------------------------------------------------------------------------- /shot_detector/charts/event/threshold/static/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/charts/event/threshold/static/__init__.py -------------------------------------------------------------------------------- /shot_detector/charts/event/threshold/static/chi_event_chart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/charts/event/threshold/static/chi_event_chart.py -------------------------------------------------------------------------------- /shot_detector/charts/event/threshold/static/ffmpeg_like_event_chart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/charts/event/threshold/static/ffmpeg_like_event_chart.py -------------------------------------------------------------------------------- /shot_detector/charts/event/threshold/static/rescaling_event_chart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/charts/event/threshold/static/rescaling_event_chart.py -------------------------------------------------------------------------------- /shot_detector/charts/event/threshold/static/rescaling_vote_event_chart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/charts/event/threshold/static/rescaling_vote_event_chart.py -------------------------------------------------------------------------------- /shot_detector/charts/event/threshold/static/sad_event_chart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/charts/event/threshold/static/sad_event_chart.py -------------------------------------------------------------------------------- /shot_detector/charts/event/threshold/static/sad_ffmpeg_event_chart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/charts/event/threshold/static/sad_ffmpeg_event_chart.py -------------------------------------------------------------------------------- /shot_detector/charts/event/trend/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/charts/event/trend/__init__.py -------------------------------------------------------------------------------- /shot_detector/charts/event/trend/mean_abs_diff_event_chart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/charts/event/trend/mean_abs_diff_event_chart.py -------------------------------------------------------------------------------- /shot_detector/charts/event/trend/mean_atan_diff_event_chart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/charts/event/trend/mean_atan_diff_event_chart.py -------------------------------------------------------------------------------- /shot_detector/charts/event/trend/mean_atan_vote_event_chart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/charts/event/trend/mean_atan_vote_event_chart.py -------------------------------------------------------------------------------- /shot_detector/charts/event/trend/mean_sign_diff_event_chart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/charts/event/trend/mean_sign_diff_event_chart.py -------------------------------------------------------------------------------- /shot_detector/detectors/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/detectors/__init__.py -------------------------------------------------------------------------------- /shot_detector/detectors/base_shot_detector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/detectors/base_shot_detector.py -------------------------------------------------------------------------------- /shot_detector/detectors/common_detector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/detectors/common_detector.py -------------------------------------------------------------------------------- /shot_detector/detectors/dummy_text_detector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/detectors/dummy_text_detector.py -------------------------------------------------------------------------------- /shot_detector/detectors/simple_detector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/detectors/simple_detector.py -------------------------------------------------------------------------------- /shot_detector/features/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/features/__init__.py -------------------------------------------------------------------------------- /shot_detector/features/extractors/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/features/extractors/__init__.py -------------------------------------------------------------------------------- /shot_detector/features/extractors/base_extractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/features/extractors/base_extractor.py -------------------------------------------------------------------------------- /shot_detector/features/extractors/colours/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/features/extractors/colours/__init__.py -------------------------------------------------------------------------------- /shot_detector/features/extractors/colours/bw_extractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/features/extractors/colours/bw_extractor.py -------------------------------------------------------------------------------- /shot_detector/features/extractors/colours/long_luma_extractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/features/extractors/colours/long_luma_extractor.py -------------------------------------------------------------------------------- /shot_detector/features/extractors/colours/luma_extractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/features/extractors/colours/luma_extractor.py -------------------------------------------------------------------------------- /shot_detector/features/extractors/colours/rgb_extractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/features/extractors/colours/rgb_extractor.py -------------------------------------------------------------------------------- /shot_detector/features/extractors/colours/rgbbw_extractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/features/extractors/colours/rgbbw_extractor.py -------------------------------------------------------------------------------- /shot_detector/features/extractors/features/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/features/extractors/features/__init__.py -------------------------------------------------------------------------------- /shot_detector/features/extractors/features/dct.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/features/extractors/features/dct.py -------------------------------------------------------------------------------- /shot_detector/features/extractors/features/histogram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/features/extractors/features/histogram.py -------------------------------------------------------------------------------- /shot_detector/features/extractors/features/optical_flow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/features/extractors/features/optical_flow.py -------------------------------------------------------------------------------- /shot_detector/features/extractors/image_based.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/features/extractors/image_based.py -------------------------------------------------------------------------------- /shot_detector/features/extractors/parallel_extractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/features/extractors/parallel_extractor.py -------------------------------------------------------------------------------- /shot_detector/features/extractors/vector_based.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/features/extractors/vector_based.py -------------------------------------------------------------------------------- /shot_detector/features/metrics/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/features/metrics/__init__.py -------------------------------------------------------------------------------- /shot_detector/features/norms/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/features/norms/__init__.py -------------------------------------------------------------------------------- /shot_detector/features/norms/base_norm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/features/norms/base_norm.py -------------------------------------------------------------------------------- /shot_detector/features/norms/l1_norm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/features/norms/l1_norm.py -------------------------------------------------------------------------------- /shot_detector/features/norms/l2_norm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/features/norms/l2_norm.py -------------------------------------------------------------------------------- /shot_detector/filters/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/filters/__init__.py -------------------------------------------------------------------------------- /shot_detector/filters/base/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/filters/base/__init__.py -------------------------------------------------------------------------------- /shot_detector/filters/base/base_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/filters/base/base_filter.py -------------------------------------------------------------------------------- /shot_detector/filters/base/base_nested_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/filters/base/base_nested_filter.py -------------------------------------------------------------------------------- /shot_detector/filters/base/base_nested_parallel_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/filters/base/base_nested_parallel_filter.py -------------------------------------------------------------------------------- /shot_detector/filters/base/base_nested_sequential_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/filters/base/base_nested_sequential_filter.py -------------------------------------------------------------------------------- /shot_detector/filters/base/base_plain_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/filters/base/base_plain_filter.py -------------------------------------------------------------------------------- /shot_detector/filters/common/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/filters/common/__init__.py -------------------------------------------------------------------------------- /shot_detector/filters/common/atan_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/filters/common/atan_filter.py -------------------------------------------------------------------------------- /shot_detector/filters/common/bound_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/filters/common/bound_filter.py -------------------------------------------------------------------------------- /shot_detector/filters/common/colour_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/filters/common/colour_filter.py -------------------------------------------------------------------------------- /shot_detector/filters/common/dct_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/filters/common/dct_filter.py -------------------------------------------------------------------------------- /shot_detector/filters/common/dht_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/filters/common/dht_filter.py -------------------------------------------------------------------------------- /shot_detector/filters/common/exp_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/filters/common/exp_filter.py -------------------------------------------------------------------------------- /shot_detector/filters/common/factor_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/filters/common/factor_filter.py -------------------------------------------------------------------------------- /shot_detector/filters/common/floor_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/filters/common/floor_filter.py -------------------------------------------------------------------------------- /shot_detector/filters/common/histogram_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/filters/common/histogram_filter.py -------------------------------------------------------------------------------- /shot_detector/filters/common/log_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/filters/common/log_filter.py -------------------------------------------------------------------------------- /shot_detector/filters/common/math_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/filters/common/math_filter.py -------------------------------------------------------------------------------- /shot_detector/filters/common/modulus_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/filters/common/modulus_filter.py -------------------------------------------------------------------------------- /shot_detector/filters/common/norm_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/filters/common/norm_filter.py -------------------------------------------------------------------------------- /shot_detector/filters/common/otsu_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/filters/common/otsu_filter.py -------------------------------------------------------------------------------- /shot_detector/filters/common/sign_angle_diff_1d_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/filters/common/sign_angle_diff_1d_filter.py -------------------------------------------------------------------------------- /shot_detector/filters/common/sign_angle_diff_2d_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/filters/common/sign_angle_diff_2d_filter.py -------------------------------------------------------------------------------- /shot_detector/filters/common/sign_change_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/filters/common/sign_change_filter.py -------------------------------------------------------------------------------- /shot_detector/filters/compound/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/filters/compound/__init__.py -------------------------------------------------------------------------------- /shot_detector/filters/compound/base_compound_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/filters/compound/base_compound_filter.py -------------------------------------------------------------------------------- /shot_detector/filters/compound/mean_cascade.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/filters/compound/mean_cascade.py -------------------------------------------------------------------------------- /shot_detector/filters/compound/min_std_cascade.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/filters/compound/min_std_cascade.py -------------------------------------------------------------------------------- /shot_detector/filters/compound/mole_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/filters/compound/mole_filter.py -------------------------------------------------------------------------------- /shot_detector/filters/compound/sigma_cascade.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/filters/compound/sigma_cascade.py -------------------------------------------------------------------------------- /shot_detector/filters/dsl/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/filters/dsl/__init__.py -------------------------------------------------------------------------------- /shot_detector/filters/dsl/dsl_filter_mixin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/filters/dsl/dsl_filter_mixin.py -------------------------------------------------------------------------------- /shot_detector/filters/dsl/dsl_nested_parallel_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/filters/dsl/dsl_nested_parallel_filter.py -------------------------------------------------------------------------------- /shot_detector/filters/dsl/dsl_plain_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/filters/dsl/dsl_plain_filter.py -------------------------------------------------------------------------------- /shot_detector/filters/dsl/filter_cast_features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/filters/dsl/filter_cast_features.py -------------------------------------------------------------------------------- /shot_detector/filters/dsl/filter_cast_scalar_value.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/filters/dsl/filter_cast_scalar_value.py -------------------------------------------------------------------------------- /shot_detector/filters/dsl/filter_cast_seq_value.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/filters/dsl/filter_cast_seq_value.py -------------------------------------------------------------------------------- /shot_detector/filters/dsl/filter_condition_features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/filters/dsl/filter_condition_features.py -------------------------------------------------------------------------------- /shot_detector/filters/dsl/filter_intersection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/filters/dsl/filter_intersection.py -------------------------------------------------------------------------------- /shot_detector/filters/dsl/filter_operator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/filters/dsl/filter_operator.py -------------------------------------------------------------------------------- /shot_detector/filters/dsl/filter_sequence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/filters/dsl/filter_sequence.py -------------------------------------------------------------------------------- /shot_detector/filters/dsl/filter_tuple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/filters/dsl/filter_tuple.py -------------------------------------------------------------------------------- /shot_detector/filters/filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/filters/filter.py -------------------------------------------------------------------------------- /shot_detector/filters/sliding_window/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/filters/sliding_window/__init__.py -------------------------------------------------------------------------------- /shot_detector/filters/sliding_window/alpha_beta_swfilter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/filters/sliding_window/alpha_beta_swfilter.py -------------------------------------------------------------------------------- /shot_detector/filters/sliding_window/base_combination_swfilter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/filters/sliding_window/base_combination_swfilter.py -------------------------------------------------------------------------------- /shot_detector/filters/sliding_window/base_stat_swfilter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/filters/sliding_window/base_stat_swfilter.py -------------------------------------------------------------------------------- /shot_detector/filters/sliding_window/base_swfilter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/filters/sliding_window/base_swfilter.py -------------------------------------------------------------------------------- /shot_detector/filters/sliding_window/bspline_swfilter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/filters/sliding_window/bspline_swfilter.py -------------------------------------------------------------------------------- /shot_detector/filters/sliding_window/dct_coef_swfilter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/filters/sliding_window/dct_coef_swfilter.py -------------------------------------------------------------------------------- /shot_detector/filters/sliding_window/dct_linear_regressor_swfilter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/filters/sliding_window/dct_linear_regressor_swfilter.py -------------------------------------------------------------------------------- /shot_detector/filters/sliding_window/dct_regressor_swfilter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/filters/sliding_window/dct_regressor_swfilter.py -------------------------------------------------------------------------------- /shot_detector/filters/sliding_window/debug_grid_swfilter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/filters/sliding_window/debug_grid_swfilter.py -------------------------------------------------------------------------------- /shot_detector/filters/sliding_window/debug_swfilter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/filters/sliding_window/debug_swfilter.py -------------------------------------------------------------------------------- /shot_detector/filters/sliding_window/decision_tree_regressor_swfilter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/filters/sliding_window/decision_tree_regressor_swfilter.py -------------------------------------------------------------------------------- /shot_detector/filters/sliding_window/detrend_swfilter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/filters/sliding_window/detrend_swfilter.py -------------------------------------------------------------------------------- /shot_detector/filters/sliding_window/deviation_difference_swfilter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/filters/sliding_window/deviation_difference_swfilter.py -------------------------------------------------------------------------------- /shot_detector/filters/sliding_window/deviation_swfilter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/filters/sliding_window/deviation_swfilter.py -------------------------------------------------------------------------------- /shot_detector/filters/sliding_window/difference_swfilter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/filters/sliding_window/difference_swfilter.py -------------------------------------------------------------------------------- /shot_detector/filters/sliding_window/dixon_range_swfilter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/filters/sliding_window/dixon_range_swfilter.py -------------------------------------------------------------------------------- /shot_detector/filters/sliding_window/extrema_swfilter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/filters/sliding_window/extrema_swfilter.py -------------------------------------------------------------------------------- /shot_detector/filters/sliding_window/ffmpeg_like_treshold_swfilter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/filters/sliding_window/ffmpeg_like_treshold_swfilter.py -------------------------------------------------------------------------------- /shot_detector/filters/sliding_window/gaussian_kde_swfilter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/filters/sliding_window/gaussian_kde_swfilter.py -------------------------------------------------------------------------------- /shot_detector/filters/sliding_window/hist_simple_swfilter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/filters/sliding_window/hist_simple_swfilter.py -------------------------------------------------------------------------------- /shot_detector/filters/sliding_window/kurtosis_swfilter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/filters/sliding_window/kurtosis_swfilter.py -------------------------------------------------------------------------------- /shot_detector/filters/sliding_window/level_swfilter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/filters/sliding_window/level_swfilter.py -------------------------------------------------------------------------------- /shot_detector/filters/sliding_window/mad_swfilter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/filters/sliding_window/mad_swfilter.py -------------------------------------------------------------------------------- /shot_detector/filters/sliding_window/max_swfilter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/filters/sliding_window/max_swfilter.py -------------------------------------------------------------------------------- /shot_detector/filters/sliding_window/mean_swfilter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/filters/sliding_window/mean_swfilter.py -------------------------------------------------------------------------------- /shot_detector/filters/sliding_window/median_swfilter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/filters/sliding_window/median_swfilter.py -------------------------------------------------------------------------------- /shot_detector/filters/sliding_window/min_std_dct_regression_swfilter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/filters/sliding_window/min_std_dct_regression_swfilter.py -------------------------------------------------------------------------------- /shot_detector/filters/sliding_window/min_std_mean_swfilter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/filters/sliding_window/min_std_mean_swfilter.py -------------------------------------------------------------------------------- /shot_detector/filters/sliding_window/min_std_median_swfilter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/filters/sliding_window/min_std_median_swfilter.py -------------------------------------------------------------------------------- /shot_detector/filters/sliding_window/min_std_otsu_swfilter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/filters/sliding_window/min_std_otsu_swfilter.py -------------------------------------------------------------------------------- /shot_detector/filters/sliding_window/min_std_regression_swfilter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/filters/sliding_window/min_std_regression_swfilter.py -------------------------------------------------------------------------------- /shot_detector/filters/sliding_window/min_swfilter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/filters/sliding_window/min_swfilter.py -------------------------------------------------------------------------------- /shot_detector/filters/sliding_window/nikitin_swfilter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/filters/sliding_window/nikitin_swfilter.py -------------------------------------------------------------------------------- /shot_detector/filters/sliding_window/norm_swfilter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/filters/sliding_window/norm_swfilter.py -------------------------------------------------------------------------------- /shot_detector/filters/sliding_window/pack_swfilter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/filters/sliding_window/pack_swfilter.py -------------------------------------------------------------------------------- /shot_detector/filters/sliding_window/pearson_correlation_swfilter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/filters/sliding_window/pearson_correlation_swfilter.py -------------------------------------------------------------------------------- /shot_detector/filters/sliding_window/savitzky_golay_swfilter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/filters/sliding_window/savitzky_golay_swfilter.py -------------------------------------------------------------------------------- /shot_detector/filters/sliding_window/scale_swfilter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/filters/sliding_window/scale_swfilter.py -------------------------------------------------------------------------------- /shot_detector/filters/sliding_window/scipy_stat_swfilter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/filters/sliding_window/scipy_stat_swfilter.py -------------------------------------------------------------------------------- /shot_detector/filters/sliding_window/shift_swfilter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/filters/sliding_window/shift_swfilter.py -------------------------------------------------------------------------------- /shot_detector/filters/sliding_window/skewness_swfilter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/filters/sliding_window/skewness_swfilter.py -------------------------------------------------------------------------------- /shot_detector/filters/sliding_window/stat_test_swfilters/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/filters/sliding_window/stat_test_swfilters/__init__.py -------------------------------------------------------------------------------- /shot_detector/filters/sliding_window/stat_test_swfilters/base_stat_test_swfilter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/filters/sliding_window/stat_test_swfilters/base_stat_test_swfilter.py -------------------------------------------------------------------------------- /shot_detector/filters/sliding_window/stat_test_swfilters/ks_2samp_swfilter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/filters/sliding_window/stat_test_swfilters/ks_2samp_swfilter.py -------------------------------------------------------------------------------- /shot_detector/filters/sliding_window/stat_test_swfilters/normal_test_swfilter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/filters/sliding_window/stat_test_swfilters/normal_test_swfilter.py -------------------------------------------------------------------------------- /shot_detector/filters/sliding_window/stat_test_swfilters/ranksums_swfilter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/filters/sliding_window/stat_test_swfilters/ranksums_swfilter.py -------------------------------------------------------------------------------- /shot_detector/filters/sliding_window/stat_test_swfilters/stat_test_swfilter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/filters/sliding_window/stat_test_swfilters/stat_test_swfilter.py -------------------------------------------------------------------------------- /shot_detector/filters/sliding_window/stat_test_swfilters/ttest_ind_swfilter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/filters/sliding_window/stat_test_swfilters/ttest_ind_swfilter.py -------------------------------------------------------------------------------- /shot_detector/filters/sliding_window/stat_test_swfilters/ttest_rel_swfilter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/filters/sliding_window/stat_test_swfilters/ttest_rel_swfilter.py -------------------------------------------------------------------------------- /shot_detector/filters/sliding_window/std_error_swfilter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/filters/sliding_window/std_error_swfilter.py -------------------------------------------------------------------------------- /shot_detector/filters/sliding_window/std_swfilter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/filters/sliding_window/std_swfilter.py -------------------------------------------------------------------------------- /shot_detector/filters/sliding_window/variance_swfilter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/filters/sliding_window/variance_swfilter.py -------------------------------------------------------------------------------- /shot_detector/filters/sliding_window/wiener_swfilter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/filters/sliding_window/wiener_swfilter.py -------------------------------------------------------------------------------- /shot_detector/filters/sliding_window/zscore_swfilter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/filters/sliding_window/zscore_swfilter.py -------------------------------------------------------------------------------- /shot_detector/filters/sliding_window/zscore_zero_swfilter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/filters/sliding_window/zscore_zero_swfilter.py -------------------------------------------------------------------------------- /shot_detector/filters/util/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/filters/util/__init__.py -------------------------------------------------------------------------------- /shot_detector/filters/util/bulk_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/filters/util/bulk_filter.py -------------------------------------------------------------------------------- /shot_detector/filters/util/condition_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/filters/util/condition_filter.py -------------------------------------------------------------------------------- /shot_detector/filters/util/delay_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/filters/util/delay_filter.py -------------------------------------------------------------------------------- /shot_detector/filters/util/fork_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/filters/util/fork_filter.py -------------------------------------------------------------------------------- /shot_detector/filters/util/slice_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/filters/util/slice_filter.py -------------------------------------------------------------------------------- /shot_detector/handlers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/handlers/__init__.py -------------------------------------------------------------------------------- /shot_detector/handlers/base_event_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/handlers/base_event_handler.py -------------------------------------------------------------------------------- /shot_detector/handlers/base_frame_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/handlers/base_frame_handler.py -------------------------------------------------------------------------------- /shot_detector/handlers/base_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/handlers/base_handler.py -------------------------------------------------------------------------------- /shot_detector/handlers/base_plot_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/handlers/base_plot_handler.py -------------------------------------------------------------------------------- /shot_detector/handlers/base_point_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/handlers/base_point_handler.py -------------------------------------------------------------------------------- /shot_detector/handlers/base_video_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/handlers/base_video_handler.py -------------------------------------------------------------------------------- /shot_detector/handlers/parallel_base_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/handlers/parallel_base_handler.py -------------------------------------------------------------------------------- /shot_detector/handlers/parallel_frame_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/handlers/parallel_frame_handler.py -------------------------------------------------------------------------------- /shot_detector/legacy_objects/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/legacy_objects/__init__.py -------------------------------------------------------------------------------- /shot_detector/legacy_objects/base_frame.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/legacy_objects/base_frame.py -------------------------------------------------------------------------------- /shot_detector/legacy_objects/base_frame_size.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/legacy_objects/base_frame_size.py -------------------------------------------------------------------------------- /shot_detector/legacy_objects/base_point.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/legacy_objects/base_point.py -------------------------------------------------------------------------------- /shot_detector/legacy_objects/base_video_unit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/legacy_objects/base_video_unit.py -------------------------------------------------------------------------------- /shot_detector/legacy_objects/point_window.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/legacy_objects/point_window.py -------------------------------------------------------------------------------- /shot_detector/legacy_objects/second.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/legacy_objects/second.py -------------------------------------------------------------------------------- /shot_detector/objects/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/objects/__init__.py -------------------------------------------------------------------------------- /shot_detector/objects/base_frame.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/objects/base_frame.py -------------------------------------------------------------------------------- /shot_detector/objects/base_point.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/objects/base_point.py -------------------------------------------------------------------------------- /shot_detector/objects/base_video_frame.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/objects/base_video_frame.py -------------------------------------------------------------------------------- /shot_detector/objects/base_video_unit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/objects/base_video_unit.py -------------------------------------------------------------------------------- /shot_detector/objects/frame_position.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/objects/frame_position.py -------------------------------------------------------------------------------- /shot_detector/objects/frame_size.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/objects/frame_size.py -------------------------------------------------------------------------------- /shot_detector/objects/point_window.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/objects/point_window.py -------------------------------------------------------------------------------- /shot_detector/objects/time/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/objects/time/__init__.py -------------------------------------------------------------------------------- /shot_detector/objects/time/base_time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/objects/time/base_time.py -------------------------------------------------------------------------------- /shot_detector/objects/time/clock_time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/objects/time/clock_time.py -------------------------------------------------------------------------------- /shot_detector/objects/time/stream_time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/objects/time/stream_time.py -------------------------------------------------------------------------------- /shot_detector/objects/time/time_float.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/objects/time/time_float.py -------------------------------------------------------------------------------- /shot_detector/objects/time/video_time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/objects/time/video_time.py -------------------------------------------------------------------------------- /shot_detector/selectors/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/selectors/__init__.py -------------------------------------------------------------------------------- /shot_detector/selectors/event/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/selectors/event/__init__.py -------------------------------------------------------------------------------- /shot_detector/selectors/event/base_event_selector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/selectors/event/base_event_selector.py -------------------------------------------------------------------------------- /shot_detector/selectors/event/dtr_event_selector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/selectors/event/dtr_event_selector.py -------------------------------------------------------------------------------- /shot_detector/selectors/event/old_event_selector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/selectors/event/old_event_selector.py -------------------------------------------------------------------------------- /shot_detector/selectors/point/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/selectors/point/__init__.py -------------------------------------------------------------------------------- /shot_detector/selectors/point/base_point_selector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/selectors/point/base_point_selector.py -------------------------------------------------------------------------------- /shot_detector/services/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/services/__init__.py -------------------------------------------------------------------------------- /shot_detector/services/base_detector_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/services/base_detector_service.py -------------------------------------------------------------------------------- /shot_detector/services/base_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/services/base_service.py -------------------------------------------------------------------------------- /shot_detector/services/plot_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/services/plot_service.py -------------------------------------------------------------------------------- /shot_detector/services/shot_detector_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/services/shot_detector_service.py -------------------------------------------------------------------------------- /shot_detector/tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/tool.py -------------------------------------------------------------------------------- /shot_detector/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/utils/__init__.py -------------------------------------------------------------------------------- /shot_detector/utils/collections/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/utils/collections/__init__.py -------------------------------------------------------------------------------- /shot_detector/utils/collections/condenser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/utils/collections/condenser.py -------------------------------------------------------------------------------- /shot_detector/utils/collections/obj_dict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/utils/collections/obj_dict.py -------------------------------------------------------------------------------- /shot_detector/utils/collections/sliding_windows/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/utils/collections/sliding_windows/__init__.py -------------------------------------------------------------------------------- /shot_detector/utils/collections/sliding_windows/base_sliding_window.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/utils/collections/sliding_windows/base_sliding_window.py -------------------------------------------------------------------------------- /shot_detector/utils/collections/sliding_windows/delayed_sliding_window.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/utils/collections/sliding_windows/delayed_sliding_window.py -------------------------------------------------------------------------------- /shot_detector/utils/collections/sliding_windows/repeated_sliding_window.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/utils/collections/sliding_windows/repeated_sliding_window.py -------------------------------------------------------------------------------- /shot_detector/utils/collections/sliding_windows/sliding_window.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/utils/collections/sliding_windows/sliding_window.py -------------------------------------------------------------------------------- /shot_detector/utils/collections/smart_dict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/utils/collections/smart_dict.py -------------------------------------------------------------------------------- /shot_detector/utils/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/utils/common.py -------------------------------------------------------------------------------- /shot_detector/utils/config_arg_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/utils/config_arg_parser.py -------------------------------------------------------------------------------- /shot_detector/utils/dsl/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/utils/dsl/__init__.py -------------------------------------------------------------------------------- /shot_detector/utils/dsl/dsl_kwargs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/utils/dsl/dsl_kwargs.py -------------------------------------------------------------------------------- /shot_detector/utils/dsl/dsl_operator_mixin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/utils/dsl/dsl_operator_mixin.py -------------------------------------------------------------------------------- /shot_detector/utils/functool_lru_cache_method.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/utils/functool_lru_cache_method.py -------------------------------------------------------------------------------- /shot_detector/utils/gale_church.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/utils/gale_church.py -------------------------------------------------------------------------------- /shot_detector/utils/iter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/utils/iter.py -------------------------------------------------------------------------------- /shot_detector/utils/lazy_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/utils/lazy_helper.py -------------------------------------------------------------------------------- /shot_detector/utils/lazy_helper_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/utils/lazy_helper_wrapper.py -------------------------------------------------------------------------------- /shot_detector/utils/log_meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/utils/log_meta.py -------------------------------------------------------------------------------- /shot_detector/utils/log_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/utils/log_settings.py -------------------------------------------------------------------------------- /shot_detector/utils/memo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/utils/memo.py -------------------------------------------------------------------------------- /shot_detector/utils/multiprocessing/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/utils/multiprocessing/__init__.py -------------------------------------------------------------------------------- /shot_detector/utils/multiprocessing/base_queue_process_pool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/utils/multiprocessing/base_queue_process_pool.py -------------------------------------------------------------------------------- /shot_detector/utils/multiprocessing/func_seq_mapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/utils/multiprocessing/func_seq_mapper.py -------------------------------------------------------------------------------- /shot_detector/utils/multiprocessing/function_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/utils/multiprocessing/function_task.py -------------------------------------------------------------------------------- /shot_detector/utils/multiprocessing/pp_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/utils/multiprocessing/pp_server.py -------------------------------------------------------------------------------- /shot_detector/utils/multiprocessing/queue_worker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/utils/multiprocessing/queue_worker.py -------------------------------------------------------------------------------- /shot_detector/utils/multiprocessing/save_state_process_pool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/utils/multiprocessing/save_state_process_pool.py -------------------------------------------------------------------------------- /shot_detector/utils/numerical.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/utils/numerical.py -------------------------------------------------------------------------------- /shot_detector/utils/repr_dict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/utils/repr_dict.py -------------------------------------------------------------------------------- /shot_detector/utils/repr_hash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/utils/repr_hash.py -------------------------------------------------------------------------------- /shot_detector/utils/tex_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w495/python-video-shot-detector/HEAD/shot_detector/utils/tex_template.py --------------------------------------------------------------------------------