├── .gitignore ├── LICENSE ├── Learning Rich Features for Image Manipulation Dection.pdf ├── README.md ├── _image ├── 11.png └── results.png ├── _pdf └── WIFS_2015_splicebuster.pdf ├── data ├── VOCDevkit2007 │ └── VOC2007 │ │ └── .gitignore ├── coco │ ├── LuaAPI │ │ ├── CocoApi.lua │ │ ├── MaskApi.lua │ │ ├── cocoDemo.lua │ │ ├── env.lua │ │ ├── init.lua │ │ └── rocks │ │ │ └── coco-scm-1.rockspec │ ├── MatlabAPI │ │ ├── CocoApi.m │ │ ├── CocoEval.m │ │ ├── CocoUtils.m │ │ ├── MaskApi.m │ │ ├── cocoDemo.m │ │ ├── evalDemo.m │ │ ├── gason.m │ │ └── private │ │ │ ├── gasonMex.cpp │ │ │ ├── gasonMex.mexa64 │ │ │ ├── gasonMex.mexmaci64 │ │ │ ├── getPrmDflt.m │ │ │ ├── maskApiMex.c │ │ │ ├── maskApiMex.mexa64 │ │ │ └── maskApiMex.mexmaci64 │ ├── PythonAPI │ │ ├── Makefile │ │ ├── build │ │ │ ├── lib.win-amd64-3.5 │ │ │ │ └── pycocotools │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── _mask.cp35-win_amd64.pyd │ │ │ │ │ ├── coco.py │ │ │ │ │ ├── cocoeval.py │ │ │ │ │ └── mask.py │ │ │ ├── lib.win-amd64-3.6 │ │ │ │ └── pycocotools │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── _mask.cp36-win_amd64.pyd │ │ │ │ │ ├── coco.py │ │ │ │ │ ├── cocoeval.py │ │ │ │ │ └── mask.py │ │ │ ├── temp.win-amd64-3.5 │ │ │ │ ├── Release │ │ │ │ │ └── pycocotools │ │ │ │ │ │ ├── _mask.cp35-win_amd64.exp │ │ │ │ │ │ ├── _mask.cp35-win_amd64.lib │ │ │ │ │ │ └── _mask.obj │ │ │ │ └── common │ │ │ │ │ └── maskApi.obj │ │ │ └── temp.win-amd64-3.6 │ │ │ │ ├── Release │ │ │ │ └── pycocotools │ │ │ │ │ ├── _mask.cp36-win_amd64.exp │ │ │ │ │ ├── _mask.cp36-win_amd64.lib │ │ │ │ │ └── _mask.obj │ │ │ │ └── common │ │ │ │ └── maskApi.obj │ │ ├── pycocoDemo.ipynb │ │ ├── pycocoEvalDemo.ipynb │ │ ├── pycocotools │ │ │ ├── __init__.py │ │ │ ├── _mask.c │ │ │ ├── _mask.cp35-win_amd64.pyd │ │ │ ├── _mask.cp36-win_amd64.pyd │ │ │ ├── _mask.pyx │ │ │ ├── coco.py │ │ │ ├── cocoeval.py │ │ │ └── mask.py │ │ └── setup.py │ ├── README.txt │ ├── common │ │ ├── gason.cpp │ │ ├── gason.h │ │ ├── maskApi.c │ │ └── maskApi.h │ ├── license.txt │ └── results │ │ ├── captions_val2014_fakecap_results.json │ │ ├── instances_val2014_fakebbox100_results.json │ │ ├── instances_val2014_fakesegm100_results.json │ │ ├── person_keypoints_val2014_fakekeypoints100_results.json │ │ └── val2014_fake_eval_res.txt └── demo │ ├── 000456.jpg │ ├── 000457.jpg │ ├── 000542.jpg │ ├── 001150.jpg │ ├── 001763.jpg │ ├── 004545.jpg │ └── 1.jpg ├── default └── DIY_dataset │ └── default │ └── .gitignore ├── demo_two_stream.py ├── lib ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-35.pyc │ └── __init__.cpython-36.pyc ├── config │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-35.pyc │ │ ├── __init__.cpython-36.pyc │ │ ├── config.cpython-35.pyc │ │ └── config.cpython-36.pyc │ └── config.py ├── datasets │ ├── DIY_pascal_voc.py │ ├── __pycache__ │ │ ├── coco.cpython-35.pyc │ │ ├── ds_utils.cpython-35.pyc │ │ ├── factory.cpython-35.pyc │ │ ├── factory.cpython-36.pyc │ │ ├── imdb.cpython-35.pyc │ │ ├── imdb.cpython-36.pyc │ │ ├── pascal_voc.cpython-35.pyc │ │ ├── pascal_voc.cpython-36.pyc │ │ ├── roidb.cpython-35.pyc │ │ ├── roidb.cpython-36.pyc │ │ └── voc_eval.cpython-35.pyc │ ├── coco.py │ ├── ds_utils.py │ ├── factory.py │ ├── imdb.py │ ├── pascal_voc.py │ ├── roidb.py │ ├── voc_eval.py │ └── xml_op.py ├── layer_utils │ ├── Sp_D_CRN_A_pla0006_pla0009_0391.jpg │ ├── Sp_D_CRN_A_sec0083_ani0039_0401.jpg │ ├── Sp_D_NNN_A_txt0062_txt0060_0149.jpg │ ├── Sp_D_NNN_R_arc0088_arc0088_0367.jpg │ ├── Sp_D_NRD_A_nat0095_art0058_0582.jpg │ ├── Sp_D_NRN_A_ani0056_cha0062_0437.jpg │ ├── Sp_D_NRN_A_ani0082_ani0097_0427.jpg │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-35.pyc │ │ ├── anchor_target_layer.cpython-35.pyc │ │ ├── generate_anchors.cpython-35.pyc │ │ ├── noise_stream_SRM_layer.cpython-35.pyc │ │ ├── proposal_layer.cpython-35.pyc │ │ ├── proposal_target_layer.cpython-35.pyc │ │ ├── proposal_top_layer.cpython-35.pyc │ │ ├── roi_data_layer.cpython-35.pyc │ │ └── snippets.cpython-35.pyc │ ├── anchor_target_layer.py │ ├── generate_anchors.py │ ├── noise_stream_SRM_layer.py │ ├── proposal_layer.py │ ├── proposal_target_layer.py │ ├── proposal_top_layer.py │ ├── roi_data_layer.py │ └── snippets.py ├── nets │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-35.pyc │ │ ├── network.cpython-35.pyc │ │ ├── resnet_v1.cpython-35.pyc │ │ └── vgg16.cpython-35.pyc │ ├── network.py │ ├── resnet_v1.py │ └── vgg16.py ├── setup.py └── utils │ ├── __init__.py │ ├── __pycache__ │ ├── __init__.cpython-35.pyc │ ├── __init__.cpython-36.pyc │ ├── bbox_transform.cpython-35.pyc │ ├── blob.cpython-35.pyc │ ├── compact_bilinear_pooling.cpython-35.pyc │ ├── minibatch.cpython-35.pyc │ ├── nms_wrapper.cpython-35.pyc │ ├── py_cpu_nms.cpython-35.pyc │ ├── test.cpython-35.pyc │ └── timer.cpython-35.pyc │ ├── bbox.c │ ├── bbox.pyx │ ├── bbox_transform.py │ ├── blob.py │ ├── compact_bilinear_pooling.py │ ├── cython_bbox.cp35-win_amd64.pyd │ ├── minibatch.py │ ├── nms_wrapper.py │ ├── py_cpu_nms.py │ ├── sequential_fft │ ├── __init__.py │ ├── build │ │ └── sequential_batch_fft.so │ ├── compile.sh │ ├── sequential_batch_fft.cc │ ├── sequential_batch_fft_kernel.cu.cc │ ├── sequential_batch_fft_ops.py │ └── sequential_batch_fft_test.py │ ├── test.py │ ├── test_cbp.py │ └── timer.py ├── main_create_training_set.py └── train.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryJiang134/Image_manipulation_detection/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryJiang134/Image_manipulation_detection/HEAD/LICENSE -------------------------------------------------------------------------------- /Learning Rich Features for Image Manipulation Dection.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryJiang134/Image_manipulation_detection/HEAD/Learning Rich Features for Image Manipulation Dection.pdf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryJiang134/Image_manipulation_detection/HEAD/README.md -------------------------------------------------------------------------------- /_image/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryJiang134/Image_manipulation_detection/HEAD/_image/11.png -------------------------------------------------------------------------------- /_image/results.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryJiang134/Image_manipulation_detection/HEAD/_image/results.png -------------------------------------------------------------------------------- /_pdf/WIFS_2015_splicebuster.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryJiang134/Image_manipulation_detection/HEAD/_pdf/WIFS_2015_splicebuster.pdf -------------------------------------------------------------------------------- /data/VOCDevkit2007/VOC2007/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/coco/LuaAPI/CocoApi.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryJiang134/Image_manipulation_detection/HEAD/data/coco/LuaAPI/CocoApi.lua -------------------------------------------------------------------------------- /data/coco/LuaAPI/MaskApi.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryJiang134/Image_manipulation_detection/HEAD/data/coco/LuaAPI/MaskApi.lua -------------------------------------------------------------------------------- /data/coco/LuaAPI/cocoDemo.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryJiang134/Image_manipulation_detection/HEAD/data/coco/LuaAPI/cocoDemo.lua -------------------------------------------------------------------------------- /data/coco/LuaAPI/env.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryJiang134/Image_manipulation_detection/HEAD/data/coco/LuaAPI/env.lua -------------------------------------------------------------------------------- /data/coco/LuaAPI/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryJiang134/Image_manipulation_detection/HEAD/data/coco/LuaAPI/init.lua -------------------------------------------------------------------------------- /data/coco/LuaAPI/rocks/coco-scm-1.rockspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryJiang134/Image_manipulation_detection/HEAD/data/coco/LuaAPI/rocks/coco-scm-1.rockspec -------------------------------------------------------------------------------- /data/coco/MatlabAPI/CocoApi.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryJiang134/Image_manipulation_detection/HEAD/data/coco/MatlabAPI/CocoApi.m -------------------------------------------------------------------------------- /data/coco/MatlabAPI/CocoEval.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryJiang134/Image_manipulation_detection/HEAD/data/coco/MatlabAPI/CocoEval.m -------------------------------------------------------------------------------- /data/coco/MatlabAPI/CocoUtils.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryJiang134/Image_manipulation_detection/HEAD/data/coco/MatlabAPI/CocoUtils.m -------------------------------------------------------------------------------- /data/coco/MatlabAPI/MaskApi.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryJiang134/Image_manipulation_detection/HEAD/data/coco/MatlabAPI/MaskApi.m -------------------------------------------------------------------------------- /data/coco/MatlabAPI/cocoDemo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryJiang134/Image_manipulation_detection/HEAD/data/coco/MatlabAPI/cocoDemo.m -------------------------------------------------------------------------------- /data/coco/MatlabAPI/evalDemo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryJiang134/Image_manipulation_detection/HEAD/data/coco/MatlabAPI/evalDemo.m -------------------------------------------------------------------------------- /data/coco/MatlabAPI/gason.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryJiang134/Image_manipulation_detection/HEAD/data/coco/MatlabAPI/gason.m -------------------------------------------------------------------------------- /data/coco/MatlabAPI/private/gasonMex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryJiang134/Image_manipulation_detection/HEAD/data/coco/MatlabAPI/private/gasonMex.cpp -------------------------------------------------------------------------------- /data/coco/MatlabAPI/private/gasonMex.mexa64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryJiang134/Image_manipulation_detection/HEAD/data/coco/MatlabAPI/private/gasonMex.mexa64 -------------------------------------------------------------------------------- /data/coco/MatlabAPI/private/gasonMex.mexmaci64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryJiang134/Image_manipulation_detection/HEAD/data/coco/MatlabAPI/private/gasonMex.mexmaci64 -------------------------------------------------------------------------------- /data/coco/MatlabAPI/private/getPrmDflt.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryJiang134/Image_manipulation_detection/HEAD/data/coco/MatlabAPI/private/getPrmDflt.m -------------------------------------------------------------------------------- /data/coco/MatlabAPI/private/maskApiMex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryJiang134/Image_manipulation_detection/HEAD/data/coco/MatlabAPI/private/maskApiMex.c -------------------------------------------------------------------------------- /data/coco/MatlabAPI/private/maskApiMex.mexa64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryJiang134/Image_manipulation_detection/HEAD/data/coco/MatlabAPI/private/maskApiMex.mexa64 -------------------------------------------------------------------------------- /data/coco/MatlabAPI/private/maskApiMex.mexmaci64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryJiang134/Image_manipulation_detection/HEAD/data/coco/MatlabAPI/private/maskApiMex.mexmaci64 -------------------------------------------------------------------------------- /data/coco/PythonAPI/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryJiang134/Image_manipulation_detection/HEAD/data/coco/PythonAPI/Makefile -------------------------------------------------------------------------------- /data/coco/PythonAPI/build/lib.win-amd64-3.5/pycocotools/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'tylin' 2 | -------------------------------------------------------------------------------- /data/coco/PythonAPI/build/lib.win-amd64-3.5/pycocotools/_mask.cp35-win_amd64.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryJiang134/Image_manipulation_detection/HEAD/data/coco/PythonAPI/build/lib.win-amd64-3.5/pycocotools/_mask.cp35-win_amd64.pyd -------------------------------------------------------------------------------- /data/coco/PythonAPI/build/lib.win-amd64-3.5/pycocotools/coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryJiang134/Image_manipulation_detection/HEAD/data/coco/PythonAPI/build/lib.win-amd64-3.5/pycocotools/coco.py -------------------------------------------------------------------------------- /data/coco/PythonAPI/build/lib.win-amd64-3.5/pycocotools/cocoeval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryJiang134/Image_manipulation_detection/HEAD/data/coco/PythonAPI/build/lib.win-amd64-3.5/pycocotools/cocoeval.py -------------------------------------------------------------------------------- /data/coco/PythonAPI/build/lib.win-amd64-3.5/pycocotools/mask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryJiang134/Image_manipulation_detection/HEAD/data/coco/PythonAPI/build/lib.win-amd64-3.5/pycocotools/mask.py -------------------------------------------------------------------------------- /data/coco/PythonAPI/build/lib.win-amd64-3.6/pycocotools/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'tylin' 2 | -------------------------------------------------------------------------------- /data/coco/PythonAPI/build/lib.win-amd64-3.6/pycocotools/_mask.cp36-win_amd64.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryJiang134/Image_manipulation_detection/HEAD/data/coco/PythonAPI/build/lib.win-amd64-3.6/pycocotools/_mask.cp36-win_amd64.pyd -------------------------------------------------------------------------------- /data/coco/PythonAPI/build/lib.win-amd64-3.6/pycocotools/coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryJiang134/Image_manipulation_detection/HEAD/data/coco/PythonAPI/build/lib.win-amd64-3.6/pycocotools/coco.py -------------------------------------------------------------------------------- /data/coco/PythonAPI/build/lib.win-amd64-3.6/pycocotools/cocoeval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryJiang134/Image_manipulation_detection/HEAD/data/coco/PythonAPI/build/lib.win-amd64-3.6/pycocotools/cocoeval.py -------------------------------------------------------------------------------- /data/coco/PythonAPI/build/lib.win-amd64-3.6/pycocotools/mask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryJiang134/Image_manipulation_detection/HEAD/data/coco/PythonAPI/build/lib.win-amd64-3.6/pycocotools/mask.py -------------------------------------------------------------------------------- /data/coco/PythonAPI/build/temp.win-amd64-3.5/Release/pycocotools/_mask.cp35-win_amd64.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryJiang134/Image_manipulation_detection/HEAD/data/coco/PythonAPI/build/temp.win-amd64-3.5/Release/pycocotools/_mask.cp35-win_amd64.exp -------------------------------------------------------------------------------- /data/coco/PythonAPI/build/temp.win-amd64-3.5/Release/pycocotools/_mask.cp35-win_amd64.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryJiang134/Image_manipulation_detection/HEAD/data/coco/PythonAPI/build/temp.win-amd64-3.5/Release/pycocotools/_mask.cp35-win_amd64.lib -------------------------------------------------------------------------------- /data/coco/PythonAPI/build/temp.win-amd64-3.5/Release/pycocotools/_mask.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryJiang134/Image_manipulation_detection/HEAD/data/coco/PythonAPI/build/temp.win-amd64-3.5/Release/pycocotools/_mask.obj -------------------------------------------------------------------------------- /data/coco/PythonAPI/build/temp.win-amd64-3.5/common/maskApi.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryJiang134/Image_manipulation_detection/HEAD/data/coco/PythonAPI/build/temp.win-amd64-3.5/common/maskApi.obj -------------------------------------------------------------------------------- /data/coco/PythonAPI/build/temp.win-amd64-3.6/Release/pycocotools/_mask.cp36-win_amd64.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryJiang134/Image_manipulation_detection/HEAD/data/coco/PythonAPI/build/temp.win-amd64-3.6/Release/pycocotools/_mask.cp36-win_amd64.exp -------------------------------------------------------------------------------- /data/coco/PythonAPI/build/temp.win-amd64-3.6/Release/pycocotools/_mask.cp36-win_amd64.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryJiang134/Image_manipulation_detection/HEAD/data/coco/PythonAPI/build/temp.win-amd64-3.6/Release/pycocotools/_mask.cp36-win_amd64.lib -------------------------------------------------------------------------------- /data/coco/PythonAPI/build/temp.win-amd64-3.6/Release/pycocotools/_mask.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryJiang134/Image_manipulation_detection/HEAD/data/coco/PythonAPI/build/temp.win-amd64-3.6/Release/pycocotools/_mask.obj -------------------------------------------------------------------------------- /data/coco/PythonAPI/build/temp.win-amd64-3.6/common/maskApi.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryJiang134/Image_manipulation_detection/HEAD/data/coco/PythonAPI/build/temp.win-amd64-3.6/common/maskApi.obj -------------------------------------------------------------------------------- /data/coco/PythonAPI/pycocoDemo.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryJiang134/Image_manipulation_detection/HEAD/data/coco/PythonAPI/pycocoDemo.ipynb -------------------------------------------------------------------------------- /data/coco/PythonAPI/pycocoEvalDemo.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryJiang134/Image_manipulation_detection/HEAD/data/coco/PythonAPI/pycocoEvalDemo.ipynb -------------------------------------------------------------------------------- /data/coco/PythonAPI/pycocotools/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'tylin' 2 | -------------------------------------------------------------------------------- /data/coco/PythonAPI/pycocotools/_mask.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryJiang134/Image_manipulation_detection/HEAD/data/coco/PythonAPI/pycocotools/_mask.c -------------------------------------------------------------------------------- /data/coco/PythonAPI/pycocotools/_mask.cp35-win_amd64.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryJiang134/Image_manipulation_detection/HEAD/data/coco/PythonAPI/pycocotools/_mask.cp35-win_amd64.pyd -------------------------------------------------------------------------------- /data/coco/PythonAPI/pycocotools/_mask.cp36-win_amd64.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryJiang134/Image_manipulation_detection/HEAD/data/coco/PythonAPI/pycocotools/_mask.cp36-win_amd64.pyd -------------------------------------------------------------------------------- /data/coco/PythonAPI/pycocotools/_mask.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryJiang134/Image_manipulation_detection/HEAD/data/coco/PythonAPI/pycocotools/_mask.pyx -------------------------------------------------------------------------------- /data/coco/PythonAPI/pycocotools/coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryJiang134/Image_manipulation_detection/HEAD/data/coco/PythonAPI/pycocotools/coco.py -------------------------------------------------------------------------------- /data/coco/PythonAPI/pycocotools/cocoeval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryJiang134/Image_manipulation_detection/HEAD/data/coco/PythonAPI/pycocotools/cocoeval.py -------------------------------------------------------------------------------- /data/coco/PythonAPI/pycocotools/mask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryJiang134/Image_manipulation_detection/HEAD/data/coco/PythonAPI/pycocotools/mask.py -------------------------------------------------------------------------------- /data/coco/PythonAPI/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryJiang134/Image_manipulation_detection/HEAD/data/coco/PythonAPI/setup.py -------------------------------------------------------------------------------- /data/coco/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryJiang134/Image_manipulation_detection/HEAD/data/coco/README.txt -------------------------------------------------------------------------------- /data/coco/common/gason.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryJiang134/Image_manipulation_detection/HEAD/data/coco/common/gason.cpp -------------------------------------------------------------------------------- /data/coco/common/gason.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryJiang134/Image_manipulation_detection/HEAD/data/coco/common/gason.h -------------------------------------------------------------------------------- /data/coco/common/maskApi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryJiang134/Image_manipulation_detection/HEAD/data/coco/common/maskApi.c -------------------------------------------------------------------------------- /data/coco/common/maskApi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryJiang134/Image_manipulation_detection/HEAD/data/coco/common/maskApi.h -------------------------------------------------------------------------------- /data/coco/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryJiang134/Image_manipulation_detection/HEAD/data/coco/license.txt -------------------------------------------------------------------------------- /data/coco/results/captions_val2014_fakecap_results.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryJiang134/Image_manipulation_detection/HEAD/data/coco/results/captions_val2014_fakecap_results.json -------------------------------------------------------------------------------- /data/coco/results/instances_val2014_fakebbox100_results.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryJiang134/Image_manipulation_detection/HEAD/data/coco/results/instances_val2014_fakebbox100_results.json -------------------------------------------------------------------------------- /data/coco/results/instances_val2014_fakesegm100_results.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryJiang134/Image_manipulation_detection/HEAD/data/coco/results/instances_val2014_fakesegm100_results.json -------------------------------------------------------------------------------- /data/coco/results/person_keypoints_val2014_fakekeypoints100_results.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryJiang134/Image_manipulation_detection/HEAD/data/coco/results/person_keypoints_val2014_fakekeypoints100_results.json -------------------------------------------------------------------------------- /data/coco/results/val2014_fake_eval_res.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryJiang134/Image_manipulation_detection/HEAD/data/coco/results/val2014_fake_eval_res.txt -------------------------------------------------------------------------------- /data/demo/000456.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryJiang134/Image_manipulation_detection/HEAD/data/demo/000456.jpg -------------------------------------------------------------------------------- /data/demo/000457.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryJiang134/Image_manipulation_detection/HEAD/data/demo/000457.jpg -------------------------------------------------------------------------------- /data/demo/000542.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryJiang134/Image_manipulation_detection/HEAD/data/demo/000542.jpg -------------------------------------------------------------------------------- /data/demo/001150.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryJiang134/Image_manipulation_detection/HEAD/data/demo/001150.jpg -------------------------------------------------------------------------------- /data/demo/001763.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryJiang134/Image_manipulation_detection/HEAD/data/demo/001763.jpg -------------------------------------------------------------------------------- /data/demo/004545.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryJiang134/Image_manipulation_detection/HEAD/data/demo/004545.jpg -------------------------------------------------------------------------------- /data/demo/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryJiang134/Image_manipulation_detection/HEAD/data/demo/1.jpg -------------------------------------------------------------------------------- /default/DIY_dataset/default/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryJiang134/Image_manipulation_detection/HEAD/default/DIY_dataset/default/.gitignore -------------------------------------------------------------------------------- /demo_two_stream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryJiang134/Image_manipulation_detection/HEAD/demo_two_stream.py -------------------------------------------------------------------------------- /lib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/__pycache__/__init__.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryJiang134/Image_manipulation_detection/HEAD/lib/__pycache__/__init__.cpython-35.pyc -------------------------------------------------------------------------------- /lib/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryJiang134/Image_manipulation_detection/HEAD/lib/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /lib/config/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/config/__pycache__/__init__.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryJiang134/Image_manipulation_detection/HEAD/lib/config/__pycache__/__init__.cpython-35.pyc -------------------------------------------------------------------------------- /lib/config/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryJiang134/Image_manipulation_detection/HEAD/lib/config/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /lib/config/__pycache__/config.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryJiang134/Image_manipulation_detection/HEAD/lib/config/__pycache__/config.cpython-35.pyc -------------------------------------------------------------------------------- /lib/config/__pycache__/config.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryJiang134/Image_manipulation_detection/HEAD/lib/config/__pycache__/config.cpython-36.pyc -------------------------------------------------------------------------------- /lib/config/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryJiang134/Image_manipulation_detection/HEAD/lib/config/config.py -------------------------------------------------------------------------------- /lib/datasets/DIY_pascal_voc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryJiang134/Image_manipulation_detection/HEAD/lib/datasets/DIY_pascal_voc.py -------------------------------------------------------------------------------- /lib/datasets/__pycache__/coco.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryJiang134/Image_manipulation_detection/HEAD/lib/datasets/__pycache__/coco.cpython-35.pyc -------------------------------------------------------------------------------- /lib/datasets/__pycache__/ds_utils.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryJiang134/Image_manipulation_detection/HEAD/lib/datasets/__pycache__/ds_utils.cpython-35.pyc -------------------------------------------------------------------------------- /lib/datasets/__pycache__/factory.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryJiang134/Image_manipulation_detection/HEAD/lib/datasets/__pycache__/factory.cpython-35.pyc -------------------------------------------------------------------------------- /lib/datasets/__pycache__/factory.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryJiang134/Image_manipulation_detection/HEAD/lib/datasets/__pycache__/factory.cpython-36.pyc -------------------------------------------------------------------------------- /lib/datasets/__pycache__/imdb.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryJiang134/Image_manipulation_detection/HEAD/lib/datasets/__pycache__/imdb.cpython-35.pyc -------------------------------------------------------------------------------- /lib/datasets/__pycache__/imdb.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryJiang134/Image_manipulation_detection/HEAD/lib/datasets/__pycache__/imdb.cpython-36.pyc -------------------------------------------------------------------------------- /lib/datasets/__pycache__/pascal_voc.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryJiang134/Image_manipulation_detection/HEAD/lib/datasets/__pycache__/pascal_voc.cpython-35.pyc -------------------------------------------------------------------------------- /lib/datasets/__pycache__/pascal_voc.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryJiang134/Image_manipulation_detection/HEAD/lib/datasets/__pycache__/pascal_voc.cpython-36.pyc -------------------------------------------------------------------------------- /lib/datasets/__pycache__/roidb.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryJiang134/Image_manipulation_detection/HEAD/lib/datasets/__pycache__/roidb.cpython-35.pyc -------------------------------------------------------------------------------- /lib/datasets/__pycache__/roidb.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryJiang134/Image_manipulation_detection/HEAD/lib/datasets/__pycache__/roidb.cpython-36.pyc -------------------------------------------------------------------------------- /lib/datasets/__pycache__/voc_eval.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryJiang134/Image_manipulation_detection/HEAD/lib/datasets/__pycache__/voc_eval.cpython-35.pyc -------------------------------------------------------------------------------- /lib/datasets/coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryJiang134/Image_manipulation_detection/HEAD/lib/datasets/coco.py -------------------------------------------------------------------------------- /lib/datasets/ds_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryJiang134/Image_manipulation_detection/HEAD/lib/datasets/ds_utils.py -------------------------------------------------------------------------------- /lib/datasets/factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryJiang134/Image_manipulation_detection/HEAD/lib/datasets/factory.py -------------------------------------------------------------------------------- /lib/datasets/imdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryJiang134/Image_manipulation_detection/HEAD/lib/datasets/imdb.py -------------------------------------------------------------------------------- /lib/datasets/pascal_voc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryJiang134/Image_manipulation_detection/HEAD/lib/datasets/pascal_voc.py -------------------------------------------------------------------------------- /lib/datasets/roidb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryJiang134/Image_manipulation_detection/HEAD/lib/datasets/roidb.py -------------------------------------------------------------------------------- /lib/datasets/voc_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryJiang134/Image_manipulation_detection/HEAD/lib/datasets/voc_eval.py -------------------------------------------------------------------------------- /lib/datasets/xml_op.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryJiang134/Image_manipulation_detection/HEAD/lib/datasets/xml_op.py -------------------------------------------------------------------------------- /lib/layer_utils/Sp_D_CRN_A_pla0006_pla0009_0391.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryJiang134/Image_manipulation_detection/HEAD/lib/layer_utils/Sp_D_CRN_A_pla0006_pla0009_0391.jpg -------------------------------------------------------------------------------- /lib/layer_utils/Sp_D_CRN_A_sec0083_ani0039_0401.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryJiang134/Image_manipulation_detection/HEAD/lib/layer_utils/Sp_D_CRN_A_sec0083_ani0039_0401.jpg -------------------------------------------------------------------------------- /lib/layer_utils/Sp_D_NNN_A_txt0062_txt0060_0149.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryJiang134/Image_manipulation_detection/HEAD/lib/layer_utils/Sp_D_NNN_A_txt0062_txt0060_0149.jpg -------------------------------------------------------------------------------- /lib/layer_utils/Sp_D_NNN_R_arc0088_arc0088_0367.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryJiang134/Image_manipulation_detection/HEAD/lib/layer_utils/Sp_D_NNN_R_arc0088_arc0088_0367.jpg -------------------------------------------------------------------------------- /lib/layer_utils/Sp_D_NRD_A_nat0095_art0058_0582.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryJiang134/Image_manipulation_detection/HEAD/lib/layer_utils/Sp_D_NRD_A_nat0095_art0058_0582.jpg -------------------------------------------------------------------------------- /lib/layer_utils/Sp_D_NRN_A_ani0056_cha0062_0437.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryJiang134/Image_manipulation_detection/HEAD/lib/layer_utils/Sp_D_NRN_A_ani0056_cha0062_0437.jpg -------------------------------------------------------------------------------- /lib/layer_utils/Sp_D_NRN_A_ani0082_ani0097_0427.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryJiang134/Image_manipulation_detection/HEAD/lib/layer_utils/Sp_D_NRN_A_ani0082_ani0097_0427.jpg -------------------------------------------------------------------------------- /lib/layer_utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/layer_utils/__pycache__/__init__.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryJiang134/Image_manipulation_detection/HEAD/lib/layer_utils/__pycache__/__init__.cpython-35.pyc -------------------------------------------------------------------------------- /lib/layer_utils/__pycache__/anchor_target_layer.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryJiang134/Image_manipulation_detection/HEAD/lib/layer_utils/__pycache__/anchor_target_layer.cpython-35.pyc -------------------------------------------------------------------------------- /lib/layer_utils/__pycache__/generate_anchors.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryJiang134/Image_manipulation_detection/HEAD/lib/layer_utils/__pycache__/generate_anchors.cpython-35.pyc -------------------------------------------------------------------------------- /lib/layer_utils/__pycache__/noise_stream_SRM_layer.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryJiang134/Image_manipulation_detection/HEAD/lib/layer_utils/__pycache__/noise_stream_SRM_layer.cpython-35.pyc -------------------------------------------------------------------------------- /lib/layer_utils/__pycache__/proposal_layer.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryJiang134/Image_manipulation_detection/HEAD/lib/layer_utils/__pycache__/proposal_layer.cpython-35.pyc -------------------------------------------------------------------------------- /lib/layer_utils/__pycache__/proposal_target_layer.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryJiang134/Image_manipulation_detection/HEAD/lib/layer_utils/__pycache__/proposal_target_layer.cpython-35.pyc -------------------------------------------------------------------------------- /lib/layer_utils/__pycache__/proposal_top_layer.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryJiang134/Image_manipulation_detection/HEAD/lib/layer_utils/__pycache__/proposal_top_layer.cpython-35.pyc -------------------------------------------------------------------------------- /lib/layer_utils/__pycache__/roi_data_layer.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryJiang134/Image_manipulation_detection/HEAD/lib/layer_utils/__pycache__/roi_data_layer.cpython-35.pyc -------------------------------------------------------------------------------- /lib/layer_utils/__pycache__/snippets.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryJiang134/Image_manipulation_detection/HEAD/lib/layer_utils/__pycache__/snippets.cpython-35.pyc -------------------------------------------------------------------------------- /lib/layer_utils/anchor_target_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryJiang134/Image_manipulation_detection/HEAD/lib/layer_utils/anchor_target_layer.py -------------------------------------------------------------------------------- /lib/layer_utils/generate_anchors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryJiang134/Image_manipulation_detection/HEAD/lib/layer_utils/generate_anchors.py -------------------------------------------------------------------------------- /lib/layer_utils/noise_stream_SRM_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryJiang134/Image_manipulation_detection/HEAD/lib/layer_utils/noise_stream_SRM_layer.py -------------------------------------------------------------------------------- /lib/layer_utils/proposal_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryJiang134/Image_manipulation_detection/HEAD/lib/layer_utils/proposal_layer.py -------------------------------------------------------------------------------- /lib/layer_utils/proposal_target_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryJiang134/Image_manipulation_detection/HEAD/lib/layer_utils/proposal_target_layer.py -------------------------------------------------------------------------------- /lib/layer_utils/proposal_top_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryJiang134/Image_manipulation_detection/HEAD/lib/layer_utils/proposal_top_layer.py -------------------------------------------------------------------------------- /lib/layer_utils/roi_data_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryJiang134/Image_manipulation_detection/HEAD/lib/layer_utils/roi_data_layer.py -------------------------------------------------------------------------------- /lib/layer_utils/snippets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryJiang134/Image_manipulation_detection/HEAD/lib/layer_utils/snippets.py -------------------------------------------------------------------------------- /lib/nets/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/nets/__pycache__/__init__.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryJiang134/Image_manipulation_detection/HEAD/lib/nets/__pycache__/__init__.cpython-35.pyc -------------------------------------------------------------------------------- /lib/nets/__pycache__/network.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryJiang134/Image_manipulation_detection/HEAD/lib/nets/__pycache__/network.cpython-35.pyc -------------------------------------------------------------------------------- /lib/nets/__pycache__/resnet_v1.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryJiang134/Image_manipulation_detection/HEAD/lib/nets/__pycache__/resnet_v1.cpython-35.pyc -------------------------------------------------------------------------------- /lib/nets/__pycache__/vgg16.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryJiang134/Image_manipulation_detection/HEAD/lib/nets/__pycache__/vgg16.cpython-35.pyc -------------------------------------------------------------------------------- /lib/nets/network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryJiang134/Image_manipulation_detection/HEAD/lib/nets/network.py -------------------------------------------------------------------------------- /lib/nets/resnet_v1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryJiang134/Image_manipulation_detection/HEAD/lib/nets/resnet_v1.py -------------------------------------------------------------------------------- /lib/nets/vgg16.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryJiang134/Image_manipulation_detection/HEAD/lib/nets/vgg16.py -------------------------------------------------------------------------------- /lib/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryJiang134/Image_manipulation_detection/HEAD/lib/setup.py -------------------------------------------------------------------------------- /lib/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/utils/__pycache__/__init__.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryJiang134/Image_manipulation_detection/HEAD/lib/utils/__pycache__/__init__.cpython-35.pyc -------------------------------------------------------------------------------- /lib/utils/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryJiang134/Image_manipulation_detection/HEAD/lib/utils/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /lib/utils/__pycache__/bbox_transform.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryJiang134/Image_manipulation_detection/HEAD/lib/utils/__pycache__/bbox_transform.cpython-35.pyc -------------------------------------------------------------------------------- /lib/utils/__pycache__/blob.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryJiang134/Image_manipulation_detection/HEAD/lib/utils/__pycache__/blob.cpython-35.pyc -------------------------------------------------------------------------------- /lib/utils/__pycache__/compact_bilinear_pooling.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryJiang134/Image_manipulation_detection/HEAD/lib/utils/__pycache__/compact_bilinear_pooling.cpython-35.pyc -------------------------------------------------------------------------------- /lib/utils/__pycache__/minibatch.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryJiang134/Image_manipulation_detection/HEAD/lib/utils/__pycache__/minibatch.cpython-35.pyc -------------------------------------------------------------------------------- /lib/utils/__pycache__/nms_wrapper.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryJiang134/Image_manipulation_detection/HEAD/lib/utils/__pycache__/nms_wrapper.cpython-35.pyc -------------------------------------------------------------------------------- /lib/utils/__pycache__/py_cpu_nms.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryJiang134/Image_manipulation_detection/HEAD/lib/utils/__pycache__/py_cpu_nms.cpython-35.pyc -------------------------------------------------------------------------------- /lib/utils/__pycache__/test.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryJiang134/Image_manipulation_detection/HEAD/lib/utils/__pycache__/test.cpython-35.pyc -------------------------------------------------------------------------------- /lib/utils/__pycache__/timer.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryJiang134/Image_manipulation_detection/HEAD/lib/utils/__pycache__/timer.cpython-35.pyc -------------------------------------------------------------------------------- /lib/utils/bbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryJiang134/Image_manipulation_detection/HEAD/lib/utils/bbox.c -------------------------------------------------------------------------------- /lib/utils/bbox.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryJiang134/Image_manipulation_detection/HEAD/lib/utils/bbox.pyx -------------------------------------------------------------------------------- /lib/utils/bbox_transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryJiang134/Image_manipulation_detection/HEAD/lib/utils/bbox_transform.py -------------------------------------------------------------------------------- /lib/utils/blob.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryJiang134/Image_manipulation_detection/HEAD/lib/utils/blob.py -------------------------------------------------------------------------------- /lib/utils/compact_bilinear_pooling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryJiang134/Image_manipulation_detection/HEAD/lib/utils/compact_bilinear_pooling.py -------------------------------------------------------------------------------- /lib/utils/cython_bbox.cp35-win_amd64.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryJiang134/Image_manipulation_detection/HEAD/lib/utils/cython_bbox.cp35-win_amd64.pyd -------------------------------------------------------------------------------- /lib/utils/minibatch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryJiang134/Image_manipulation_detection/HEAD/lib/utils/minibatch.py -------------------------------------------------------------------------------- /lib/utils/nms_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryJiang134/Image_manipulation_detection/HEAD/lib/utils/nms_wrapper.py -------------------------------------------------------------------------------- /lib/utils/py_cpu_nms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryJiang134/Image_manipulation_detection/HEAD/lib/utils/py_cpu_nms.py -------------------------------------------------------------------------------- /lib/utils/sequential_fft/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryJiang134/Image_manipulation_detection/HEAD/lib/utils/sequential_fft/__init__.py -------------------------------------------------------------------------------- /lib/utils/sequential_fft/build/sequential_batch_fft.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryJiang134/Image_manipulation_detection/HEAD/lib/utils/sequential_fft/build/sequential_batch_fft.so -------------------------------------------------------------------------------- /lib/utils/sequential_fft/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryJiang134/Image_manipulation_detection/HEAD/lib/utils/sequential_fft/compile.sh -------------------------------------------------------------------------------- /lib/utils/sequential_fft/sequential_batch_fft.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryJiang134/Image_manipulation_detection/HEAD/lib/utils/sequential_fft/sequential_batch_fft.cc -------------------------------------------------------------------------------- /lib/utils/sequential_fft/sequential_batch_fft_kernel.cu.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryJiang134/Image_manipulation_detection/HEAD/lib/utils/sequential_fft/sequential_batch_fft_kernel.cu.cc -------------------------------------------------------------------------------- /lib/utils/sequential_fft/sequential_batch_fft_ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryJiang134/Image_manipulation_detection/HEAD/lib/utils/sequential_fft/sequential_batch_fft_ops.py -------------------------------------------------------------------------------- /lib/utils/sequential_fft/sequential_batch_fft_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryJiang134/Image_manipulation_detection/HEAD/lib/utils/sequential_fft/sequential_batch_fft_test.py -------------------------------------------------------------------------------- /lib/utils/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryJiang134/Image_manipulation_detection/HEAD/lib/utils/test.py -------------------------------------------------------------------------------- /lib/utils/test_cbp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryJiang134/Image_manipulation_detection/HEAD/lib/utils/test_cbp.py -------------------------------------------------------------------------------- /lib/utils/timer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryJiang134/Image_manipulation_detection/HEAD/lib/utils/timer.py -------------------------------------------------------------------------------- /main_create_training_set.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryJiang134/Image_manipulation_detection/HEAD/main_create_training_set.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LarryJiang134/Image_manipulation_detection/HEAD/train.py --------------------------------------------------------------------------------