├── .gitignore ├── README.md ├── data └── test │ └── Winter_Scenes_in_Holland.mp4 ├── demo.gif ├── environment.yml ├── src ├── config │ └── config_flow_100.json ├── models │ ├── datasets_local.py │ ├── network_filter.py │ ├── network_local.py │ ├── stage_1 │ │ ├── core │ │ │ ├── __init__.py │ │ │ ├── corr.py │ │ │ ├── datasets.py │ │ │ ├── extractor.py │ │ │ ├── raft.py │ │ │ ├── update.py │ │ │ ├── util_flow.py │ │ │ └── utils │ │ │ │ ├── __init__.py │ │ │ │ ├── augmentor.py │ │ │ │ ├── flow_metric_utils.py │ │ │ │ ├── flow_viz.py │ │ │ │ ├── frame_utils.py │ │ │ │ └── utils.py │ │ ├── evaluate.py │ │ ├── implicit_neural_networks.py │ │ ├── loss_utils.py │ │ ├── raft_wrapper.py │ │ └── unwrap_utils.py │ ├── utils.py │ └── vgg.py ├── neural_filter_and_refinement.py ├── preprocess_mask_portrait.py ├── preprocess_mask_rcnn.py ├── preprocess_optical_flow.py ├── stage1_neural_atlas.py └── stage1_neural_atlas_seg.py └── test.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChenyangLEI/All-In-One-Deflicker/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChenyangLEI/All-In-One-Deflicker/HEAD/README.md -------------------------------------------------------------------------------- /data/test/Winter_Scenes_in_Holland.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChenyangLEI/All-In-One-Deflicker/HEAD/data/test/Winter_Scenes_in_Holland.mp4 -------------------------------------------------------------------------------- /demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChenyangLEI/All-In-One-Deflicker/HEAD/demo.gif -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChenyangLEI/All-In-One-Deflicker/HEAD/environment.yml -------------------------------------------------------------------------------- /src/config/config_flow_100.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChenyangLEI/All-In-One-Deflicker/HEAD/src/config/config_flow_100.json -------------------------------------------------------------------------------- /src/models/datasets_local.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChenyangLEI/All-In-One-Deflicker/HEAD/src/models/datasets_local.py -------------------------------------------------------------------------------- /src/models/network_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChenyangLEI/All-In-One-Deflicker/HEAD/src/models/network_filter.py -------------------------------------------------------------------------------- /src/models/network_local.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChenyangLEI/All-In-One-Deflicker/HEAD/src/models/network_local.py -------------------------------------------------------------------------------- /src/models/stage_1/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/models/stage_1/core/corr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChenyangLEI/All-In-One-Deflicker/HEAD/src/models/stage_1/core/corr.py -------------------------------------------------------------------------------- /src/models/stage_1/core/datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChenyangLEI/All-In-One-Deflicker/HEAD/src/models/stage_1/core/datasets.py -------------------------------------------------------------------------------- /src/models/stage_1/core/extractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChenyangLEI/All-In-One-Deflicker/HEAD/src/models/stage_1/core/extractor.py -------------------------------------------------------------------------------- /src/models/stage_1/core/raft.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChenyangLEI/All-In-One-Deflicker/HEAD/src/models/stage_1/core/raft.py -------------------------------------------------------------------------------- /src/models/stage_1/core/update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChenyangLEI/All-In-One-Deflicker/HEAD/src/models/stage_1/core/update.py -------------------------------------------------------------------------------- /src/models/stage_1/core/util_flow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChenyangLEI/All-In-One-Deflicker/HEAD/src/models/stage_1/core/util_flow.py -------------------------------------------------------------------------------- /src/models/stage_1/core/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/models/stage_1/core/utils/augmentor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChenyangLEI/All-In-One-Deflicker/HEAD/src/models/stage_1/core/utils/augmentor.py -------------------------------------------------------------------------------- /src/models/stage_1/core/utils/flow_metric_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChenyangLEI/All-In-One-Deflicker/HEAD/src/models/stage_1/core/utils/flow_metric_utils.py -------------------------------------------------------------------------------- /src/models/stage_1/core/utils/flow_viz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChenyangLEI/All-In-One-Deflicker/HEAD/src/models/stage_1/core/utils/flow_viz.py -------------------------------------------------------------------------------- /src/models/stage_1/core/utils/frame_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChenyangLEI/All-In-One-Deflicker/HEAD/src/models/stage_1/core/utils/frame_utils.py -------------------------------------------------------------------------------- /src/models/stage_1/core/utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChenyangLEI/All-In-One-Deflicker/HEAD/src/models/stage_1/core/utils/utils.py -------------------------------------------------------------------------------- /src/models/stage_1/evaluate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChenyangLEI/All-In-One-Deflicker/HEAD/src/models/stage_1/evaluate.py -------------------------------------------------------------------------------- /src/models/stage_1/implicit_neural_networks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChenyangLEI/All-In-One-Deflicker/HEAD/src/models/stage_1/implicit_neural_networks.py -------------------------------------------------------------------------------- /src/models/stage_1/loss_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChenyangLEI/All-In-One-Deflicker/HEAD/src/models/stage_1/loss_utils.py -------------------------------------------------------------------------------- /src/models/stage_1/raft_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChenyangLEI/All-In-One-Deflicker/HEAD/src/models/stage_1/raft_wrapper.py -------------------------------------------------------------------------------- /src/models/stage_1/unwrap_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChenyangLEI/All-In-One-Deflicker/HEAD/src/models/stage_1/unwrap_utils.py -------------------------------------------------------------------------------- /src/models/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChenyangLEI/All-In-One-Deflicker/HEAD/src/models/utils.py -------------------------------------------------------------------------------- /src/models/vgg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChenyangLEI/All-In-One-Deflicker/HEAD/src/models/vgg.py -------------------------------------------------------------------------------- /src/neural_filter_and_refinement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChenyangLEI/All-In-One-Deflicker/HEAD/src/neural_filter_and_refinement.py -------------------------------------------------------------------------------- /src/preprocess_mask_portrait.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChenyangLEI/All-In-One-Deflicker/HEAD/src/preprocess_mask_portrait.py -------------------------------------------------------------------------------- /src/preprocess_mask_rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChenyangLEI/All-In-One-Deflicker/HEAD/src/preprocess_mask_rcnn.py -------------------------------------------------------------------------------- /src/preprocess_optical_flow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChenyangLEI/All-In-One-Deflicker/HEAD/src/preprocess_optical_flow.py -------------------------------------------------------------------------------- /src/stage1_neural_atlas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChenyangLEI/All-In-One-Deflicker/HEAD/src/stage1_neural_atlas.py -------------------------------------------------------------------------------- /src/stage1_neural_atlas_seg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChenyangLEI/All-In-One-Deflicker/HEAD/src/stage1_neural_atlas_seg.py -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChenyangLEI/All-In-One-Deflicker/HEAD/test.py --------------------------------------------------------------------------------