├── .gitignore ├── Application of Convolutional Neural Network for Image Forgery Detection and Localization.pdf ├── Aptfile ├── ManTraNet_Ptrain4.h5 ├── Procfile ├── README.md ├── app.py ├── bot.py ├── modelCore.py ├── requirements.txt ├── static ├── images │ ├── s1.svg │ ├── s2.svg │ └── s3.svg ├── scripts │ └── fullpage.min.js └── stylesheets │ ├── fullpage.min.css │ └── style.css └── templates └── base.html /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | .vscode 3 | .ipynb_checkpoints 4 | venv 5 | *.png -------------------------------------------------------------------------------- /Application of Convolutional Neural Network for Image Forgery Detection and Localization.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neelanjan00/Image-Forgery-Detection/e046420ba4eb103a00a246c03c9eb07d18789217/Application of Convolutional Neural Network for Image Forgery Detection and Localization.pdf -------------------------------------------------------------------------------- /Aptfile: -------------------------------------------------------------------------------- 1 | libsm6 2 | libxrender1 3 | libfontconfig1 4 | libice6 -------------------------------------------------------------------------------- /ManTraNet_Ptrain4.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neelanjan00/Image-Forgery-Detection/e046420ba4eb103a00a246c03c9eb07d18789217/ManTraNet_Ptrain4.h5 -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: python app.py 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |  2 |
4 |
5 |
6 |
7 |
8 |