├── README.md ├── __pycache__ └── denseFCN.cpython-36.pyc ├── denseFCN.py ├── networkArchitecture └── 158b993b1ea5a0b7ee6e460376e3ce2.png ├── requirements.txt ├── test_withoutComputeMetrics.py ├── testedImages └── NIST-2106 │ └── tamper │ └── PSNC2016_0481_NC2016_4386.jpg ├── train_demo.py └── utils ├── __init__.py ├── losses.py ├── metrics.py ├── read_dataset.py └── tee_print.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhuangPeiyu/Dense-FCN-for-tampering-localization/HEAD/README.md -------------------------------------------------------------------------------- /__pycache__/denseFCN.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhuangPeiyu/Dense-FCN-for-tampering-localization/HEAD/__pycache__/denseFCN.cpython-36.pyc -------------------------------------------------------------------------------- /denseFCN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhuangPeiyu/Dense-FCN-for-tampering-localization/HEAD/denseFCN.py -------------------------------------------------------------------------------- /networkArchitecture/158b993b1ea5a0b7ee6e460376e3ce2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhuangPeiyu/Dense-FCN-for-tampering-localization/HEAD/networkArchitecture/158b993b1ea5a0b7ee6e460376e3ce2.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhuangPeiyu/Dense-FCN-for-tampering-localization/HEAD/requirements.txt -------------------------------------------------------------------------------- /test_withoutComputeMetrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhuangPeiyu/Dense-FCN-for-tampering-localization/HEAD/test_withoutComputeMetrics.py -------------------------------------------------------------------------------- /testedImages/NIST-2106/tamper/PSNC2016_0481_NC2016_4386.jpg: -------------------------------------------------------------------------------- 1 | a 2 | -------------------------------------------------------------------------------- /train_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhuangPeiyu/Dense-FCN-for-tampering-localization/HEAD/train_demo.py -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhuangPeiyu/Dense-FCN-for-tampering-localization/HEAD/utils/__init__.py -------------------------------------------------------------------------------- /utils/losses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhuangPeiyu/Dense-FCN-for-tampering-localization/HEAD/utils/losses.py -------------------------------------------------------------------------------- /utils/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhuangPeiyu/Dense-FCN-for-tampering-localization/HEAD/utils/metrics.py -------------------------------------------------------------------------------- /utils/read_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhuangPeiyu/Dense-FCN-for-tampering-localization/HEAD/utils/read_dataset.py -------------------------------------------------------------------------------- /utils/tee_print.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhuangPeiyu/Dense-FCN-for-tampering-localization/HEAD/utils/tee_print.py --------------------------------------------------------------------------------