├── .gitignore ├── Images └── firstpage_v3.png ├── LICENSE ├── README.md ├── data.py ├── dataProcess ├── download_image.py └── yfcc_dataInfo.py ├── datasets ├── __init__.py ├── casia_1.py ├── casia_2.py ├── columbia.py ├── dso_1.py ├── general.py ├── in_the_wild.py ├── realistic_tampering.py └── scene_completion.py ├── eval └── image_splice │ ├── exif_sc.py │ └── metrics.py ├── model_wrapper.py ├── requirements.txt ├── splice_evaluator.py ├── train.py └── utils ├── general.py ├── html.py ├── structures.py └── system.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellomuffin/exif-as-language/HEAD/.gitignore -------------------------------------------------------------------------------- /Images/firstpage_v3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellomuffin/exif-as-language/HEAD/Images/firstpage_v3.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellomuffin/exif-as-language/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellomuffin/exif-as-language/HEAD/README.md -------------------------------------------------------------------------------- /data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellomuffin/exif-as-language/HEAD/data.py -------------------------------------------------------------------------------- /dataProcess/download_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellomuffin/exif-as-language/HEAD/dataProcess/download_image.py -------------------------------------------------------------------------------- /dataProcess/yfcc_dataInfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellomuffin/exif-as-language/HEAD/dataProcess/yfcc_dataInfo.py -------------------------------------------------------------------------------- /datasets/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellomuffin/exif-as-language/HEAD/datasets/__init__.py -------------------------------------------------------------------------------- /datasets/casia_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellomuffin/exif-as-language/HEAD/datasets/casia_1.py -------------------------------------------------------------------------------- /datasets/casia_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellomuffin/exif-as-language/HEAD/datasets/casia_2.py -------------------------------------------------------------------------------- /datasets/columbia.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellomuffin/exif-as-language/HEAD/datasets/columbia.py -------------------------------------------------------------------------------- /datasets/dso_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellomuffin/exif-as-language/HEAD/datasets/dso_1.py -------------------------------------------------------------------------------- /datasets/general.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellomuffin/exif-as-language/HEAD/datasets/general.py -------------------------------------------------------------------------------- /datasets/in_the_wild.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellomuffin/exif-as-language/HEAD/datasets/in_the_wild.py -------------------------------------------------------------------------------- /datasets/realistic_tampering.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellomuffin/exif-as-language/HEAD/datasets/realistic_tampering.py -------------------------------------------------------------------------------- /datasets/scene_completion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellomuffin/exif-as-language/HEAD/datasets/scene_completion.py -------------------------------------------------------------------------------- /eval/image_splice/exif_sc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellomuffin/exif-as-language/HEAD/eval/image_splice/exif_sc.py -------------------------------------------------------------------------------- /eval/image_splice/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellomuffin/exif-as-language/HEAD/eval/image_splice/metrics.py -------------------------------------------------------------------------------- /model_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellomuffin/exif-as-language/HEAD/model_wrapper.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellomuffin/exif-as-language/HEAD/requirements.txt -------------------------------------------------------------------------------- /splice_evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellomuffin/exif-as-language/HEAD/splice_evaluator.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellomuffin/exif-as-language/HEAD/train.py -------------------------------------------------------------------------------- /utils/general.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellomuffin/exif-as-language/HEAD/utils/general.py -------------------------------------------------------------------------------- /utils/html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellomuffin/exif-as-language/HEAD/utils/html.py -------------------------------------------------------------------------------- /utils/structures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellomuffin/exif-as-language/HEAD/utils/structures.py -------------------------------------------------------------------------------- /utils/system.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellomuffin/exif-as-language/HEAD/utils/system.py --------------------------------------------------------------------------------