├── .gitignore ├── AIPhotoEditor.pdf ├── Demo.mp4 ├── README.md ├── Run.lnk ├── frontend ├── cool-button │ ├── README.txt │ ├── css │ │ └── style.css │ ├── license.txt │ └── scss │ │ └── style.scss ├── css │ ├── main.css │ ├── reset.min.css │ ├── style.css │ └── util.css ├── image │ ├── abc.jpg │ ├── blur_to_hd.jpg │ ├── blur_to_hd_output.jpg │ ├── cover.JPG │ └── o-letter.png ├── index.html └── js │ └── script.js ├── requirements.txt ├── sample_data ├── blur_to_hd │ ├── 0107.png │ ├── 0226.png │ ├── 0313.png │ ├── 0411.png │ ├── 1.jpeg │ ├── 2.jpeg │ ├── 3.jpeg │ ├── 4.jpeg │ └── Code │ │ ├── 1.jpg │ │ ├── Image to Blur.py │ │ ├── blr.jpg │ │ └── blr2.jpg ├── fogg_removal │ ├── 14_1137_to_1162.jpg │ ├── temp.jpg │ └── z.jpg ├── image_to_map │ ├── 1001.jpg │ ├── 1012.jpg │ ├── 1030.jpg │ ├── 1087.jpg │ ├── 124.jpg │ ├── 145.jpg │ ├── 195.jpg │ ├── 246.jpg │ ├── 281.jpg │ ├── 332.jpg │ ├── 448.jpg │ ├── 488.jpg │ ├── 551.jpg │ └── 593.jpg └── object_removal │ ├── ObjectRemoval-1.png │ ├── PSP-RemoveUnwantedObjects-FB.jpg │ ├── example-1-1.jpg │ └── label_00002.jpg ├── satellite_view_to_vectors └── pixel2pixel_satellitetovector.ipynb └── server ├── .gitignore ├── LICENSE ├── codes └── blurtohd.py ├── main.py ├── model ├── __init__.py └── model.py ├── run.bat └── server.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshit09/AI-Photo-Editor/HEAD/.gitignore -------------------------------------------------------------------------------- /AIPhotoEditor.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshit09/AI-Photo-Editor/HEAD/AIPhotoEditor.pdf -------------------------------------------------------------------------------- /Demo.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshit09/AI-Photo-Editor/HEAD/Demo.mp4 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshit09/AI-Photo-Editor/HEAD/README.md -------------------------------------------------------------------------------- /Run.lnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshit09/AI-Photo-Editor/HEAD/Run.lnk -------------------------------------------------------------------------------- /frontend/cool-button/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshit09/AI-Photo-Editor/HEAD/frontend/cool-button/README.txt -------------------------------------------------------------------------------- /frontend/cool-button/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshit09/AI-Photo-Editor/HEAD/frontend/cool-button/css/style.css -------------------------------------------------------------------------------- /frontend/cool-button/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshit09/AI-Photo-Editor/HEAD/frontend/cool-button/license.txt -------------------------------------------------------------------------------- /frontend/cool-button/scss/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshit09/AI-Photo-Editor/HEAD/frontend/cool-button/scss/style.scss -------------------------------------------------------------------------------- /frontend/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshit09/AI-Photo-Editor/HEAD/frontend/css/main.css -------------------------------------------------------------------------------- /frontend/css/reset.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshit09/AI-Photo-Editor/HEAD/frontend/css/reset.min.css -------------------------------------------------------------------------------- /frontend/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshit09/AI-Photo-Editor/HEAD/frontend/css/style.css -------------------------------------------------------------------------------- /frontend/css/util.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshit09/AI-Photo-Editor/HEAD/frontend/css/util.css -------------------------------------------------------------------------------- /frontend/image/abc.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshit09/AI-Photo-Editor/HEAD/frontend/image/abc.jpg -------------------------------------------------------------------------------- /frontend/image/blur_to_hd.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshit09/AI-Photo-Editor/HEAD/frontend/image/blur_to_hd.jpg -------------------------------------------------------------------------------- /frontend/image/blur_to_hd_output.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshit09/AI-Photo-Editor/HEAD/frontend/image/blur_to_hd_output.jpg -------------------------------------------------------------------------------- /frontend/image/cover.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshit09/AI-Photo-Editor/HEAD/frontend/image/cover.JPG -------------------------------------------------------------------------------- /frontend/image/o-letter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshit09/AI-Photo-Editor/HEAD/frontend/image/o-letter.png -------------------------------------------------------------------------------- /frontend/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshit09/AI-Photo-Editor/HEAD/frontend/index.html -------------------------------------------------------------------------------- /frontend/js/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshit09/AI-Photo-Editor/HEAD/frontend/js/script.js -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshit09/AI-Photo-Editor/HEAD/requirements.txt -------------------------------------------------------------------------------- /sample_data/blur_to_hd/0107.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshit09/AI-Photo-Editor/HEAD/sample_data/blur_to_hd/0107.png -------------------------------------------------------------------------------- /sample_data/blur_to_hd/0226.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshit09/AI-Photo-Editor/HEAD/sample_data/blur_to_hd/0226.png -------------------------------------------------------------------------------- /sample_data/blur_to_hd/0313.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshit09/AI-Photo-Editor/HEAD/sample_data/blur_to_hd/0313.png -------------------------------------------------------------------------------- /sample_data/blur_to_hd/0411.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshit09/AI-Photo-Editor/HEAD/sample_data/blur_to_hd/0411.png -------------------------------------------------------------------------------- /sample_data/blur_to_hd/1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshit09/AI-Photo-Editor/HEAD/sample_data/blur_to_hd/1.jpeg -------------------------------------------------------------------------------- /sample_data/blur_to_hd/2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshit09/AI-Photo-Editor/HEAD/sample_data/blur_to_hd/2.jpeg -------------------------------------------------------------------------------- /sample_data/blur_to_hd/3.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshit09/AI-Photo-Editor/HEAD/sample_data/blur_to_hd/3.jpeg -------------------------------------------------------------------------------- /sample_data/blur_to_hd/4.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshit09/AI-Photo-Editor/HEAD/sample_data/blur_to_hd/4.jpeg -------------------------------------------------------------------------------- /sample_data/blur_to_hd/Code/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshit09/AI-Photo-Editor/HEAD/sample_data/blur_to_hd/Code/1.jpg -------------------------------------------------------------------------------- /sample_data/blur_to_hd/Code/Image to Blur.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshit09/AI-Photo-Editor/HEAD/sample_data/blur_to_hd/Code/Image to Blur.py -------------------------------------------------------------------------------- /sample_data/blur_to_hd/Code/blr.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshit09/AI-Photo-Editor/HEAD/sample_data/blur_to_hd/Code/blr.jpg -------------------------------------------------------------------------------- /sample_data/blur_to_hd/Code/blr2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshit09/AI-Photo-Editor/HEAD/sample_data/blur_to_hd/Code/blr2.jpg -------------------------------------------------------------------------------- /sample_data/fogg_removal/14_1137_to_1162.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshit09/AI-Photo-Editor/HEAD/sample_data/fogg_removal/14_1137_to_1162.jpg -------------------------------------------------------------------------------- /sample_data/fogg_removal/temp.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshit09/AI-Photo-Editor/HEAD/sample_data/fogg_removal/temp.jpg -------------------------------------------------------------------------------- /sample_data/fogg_removal/z.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshit09/AI-Photo-Editor/HEAD/sample_data/fogg_removal/z.jpg -------------------------------------------------------------------------------- /sample_data/image_to_map/1001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshit09/AI-Photo-Editor/HEAD/sample_data/image_to_map/1001.jpg -------------------------------------------------------------------------------- /sample_data/image_to_map/1012.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshit09/AI-Photo-Editor/HEAD/sample_data/image_to_map/1012.jpg -------------------------------------------------------------------------------- /sample_data/image_to_map/1030.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshit09/AI-Photo-Editor/HEAD/sample_data/image_to_map/1030.jpg -------------------------------------------------------------------------------- /sample_data/image_to_map/1087.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshit09/AI-Photo-Editor/HEAD/sample_data/image_to_map/1087.jpg -------------------------------------------------------------------------------- /sample_data/image_to_map/124.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshit09/AI-Photo-Editor/HEAD/sample_data/image_to_map/124.jpg -------------------------------------------------------------------------------- /sample_data/image_to_map/145.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshit09/AI-Photo-Editor/HEAD/sample_data/image_to_map/145.jpg -------------------------------------------------------------------------------- /sample_data/image_to_map/195.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshit09/AI-Photo-Editor/HEAD/sample_data/image_to_map/195.jpg -------------------------------------------------------------------------------- /sample_data/image_to_map/246.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshit09/AI-Photo-Editor/HEAD/sample_data/image_to_map/246.jpg -------------------------------------------------------------------------------- /sample_data/image_to_map/281.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshit09/AI-Photo-Editor/HEAD/sample_data/image_to_map/281.jpg -------------------------------------------------------------------------------- /sample_data/image_to_map/332.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshit09/AI-Photo-Editor/HEAD/sample_data/image_to_map/332.jpg -------------------------------------------------------------------------------- /sample_data/image_to_map/448.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshit09/AI-Photo-Editor/HEAD/sample_data/image_to_map/448.jpg -------------------------------------------------------------------------------- /sample_data/image_to_map/488.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshit09/AI-Photo-Editor/HEAD/sample_data/image_to_map/488.jpg -------------------------------------------------------------------------------- /sample_data/image_to_map/551.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshit09/AI-Photo-Editor/HEAD/sample_data/image_to_map/551.jpg -------------------------------------------------------------------------------- /sample_data/image_to_map/593.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshit09/AI-Photo-Editor/HEAD/sample_data/image_to_map/593.jpg -------------------------------------------------------------------------------- /sample_data/object_removal/ObjectRemoval-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshit09/AI-Photo-Editor/HEAD/sample_data/object_removal/ObjectRemoval-1.png -------------------------------------------------------------------------------- /sample_data/object_removal/PSP-RemoveUnwantedObjects-FB.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshit09/AI-Photo-Editor/HEAD/sample_data/object_removal/PSP-RemoveUnwantedObjects-FB.jpg -------------------------------------------------------------------------------- /sample_data/object_removal/example-1-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshit09/AI-Photo-Editor/HEAD/sample_data/object_removal/example-1-1.jpg -------------------------------------------------------------------------------- /sample_data/object_removal/label_00002.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshit09/AI-Photo-Editor/HEAD/sample_data/object_removal/label_00002.jpg -------------------------------------------------------------------------------- /satellite_view_to_vectors/pixel2pixel_satellitetovector.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshit09/AI-Photo-Editor/HEAD/satellite_view_to_vectors/pixel2pixel_satellitetovector.ipynb -------------------------------------------------------------------------------- /server/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshit09/AI-Photo-Editor/HEAD/server/.gitignore -------------------------------------------------------------------------------- /server/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshit09/AI-Photo-Editor/HEAD/server/LICENSE -------------------------------------------------------------------------------- /server/codes/blurtohd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshit09/AI-Photo-Editor/HEAD/server/codes/blurtohd.py -------------------------------------------------------------------------------- /server/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshit09/AI-Photo-Editor/HEAD/server/main.py -------------------------------------------------------------------------------- /server/model/__init__.py: -------------------------------------------------------------------------------- 1 | from .model import * -------------------------------------------------------------------------------- /server/model/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshit09/AI-Photo-Editor/HEAD/server/model/model.py -------------------------------------------------------------------------------- /server/run.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshit09/AI-Photo-Editor/HEAD/server/run.bat -------------------------------------------------------------------------------- /server/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshit09/AI-Photo-Editor/HEAD/server/server.py --------------------------------------------------------------------------------