├── .gitignore ├── README.md ├── data ├── output │ ├── linear_fixed_weak_25.0247.jpg │ ├── linear_gaussian_weak_24.0392.jpg │ └── linear_sine_weak_24.4859.jpg └── sample_images │ ├── 1.JPEG │ ├── 2.JPEG │ ├── 3.JPEG │ ├── 4.JPEG │ ├── 5.JPEG │ ├── large_1.jpg │ ├── large_2.jpg │ ├── large_3.jpg │ ├── large_4.jpg │ ├── large_5.jpg │ ├── med_1.jpg │ ├── med_2.jpg │ ├── med_3.jpeg │ └── med_4.jpeg └── src ├── basic_shapes.py ├── bcg.py ├── dft_analysis.py ├── dft_dragotti.py ├── dragotti_loader.py ├── image_tools.py ├── main.py ├── module.py ├── moire.py ├── preproc_dragotti.sh ├── recapture_generator.py ├── warp.py └── warp_func_test.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr3coi/screen_photo_simulator/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr3coi/screen_photo_simulator/HEAD/README.md -------------------------------------------------------------------------------- /data/output/linear_fixed_weak_25.0247.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr3coi/screen_photo_simulator/HEAD/data/output/linear_fixed_weak_25.0247.jpg -------------------------------------------------------------------------------- /data/output/linear_gaussian_weak_24.0392.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr3coi/screen_photo_simulator/HEAD/data/output/linear_gaussian_weak_24.0392.jpg -------------------------------------------------------------------------------- /data/output/linear_sine_weak_24.4859.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr3coi/screen_photo_simulator/HEAD/data/output/linear_sine_weak_24.4859.jpg -------------------------------------------------------------------------------- /data/sample_images/1.JPEG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr3coi/screen_photo_simulator/HEAD/data/sample_images/1.JPEG -------------------------------------------------------------------------------- /data/sample_images/2.JPEG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr3coi/screen_photo_simulator/HEAD/data/sample_images/2.JPEG -------------------------------------------------------------------------------- /data/sample_images/3.JPEG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr3coi/screen_photo_simulator/HEAD/data/sample_images/3.JPEG -------------------------------------------------------------------------------- /data/sample_images/4.JPEG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr3coi/screen_photo_simulator/HEAD/data/sample_images/4.JPEG -------------------------------------------------------------------------------- /data/sample_images/5.JPEG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr3coi/screen_photo_simulator/HEAD/data/sample_images/5.JPEG -------------------------------------------------------------------------------- /data/sample_images/large_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr3coi/screen_photo_simulator/HEAD/data/sample_images/large_1.jpg -------------------------------------------------------------------------------- /data/sample_images/large_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr3coi/screen_photo_simulator/HEAD/data/sample_images/large_2.jpg -------------------------------------------------------------------------------- /data/sample_images/large_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr3coi/screen_photo_simulator/HEAD/data/sample_images/large_3.jpg -------------------------------------------------------------------------------- /data/sample_images/large_4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr3coi/screen_photo_simulator/HEAD/data/sample_images/large_4.jpg -------------------------------------------------------------------------------- /data/sample_images/large_5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr3coi/screen_photo_simulator/HEAD/data/sample_images/large_5.jpg -------------------------------------------------------------------------------- /data/sample_images/med_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr3coi/screen_photo_simulator/HEAD/data/sample_images/med_1.jpg -------------------------------------------------------------------------------- /data/sample_images/med_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr3coi/screen_photo_simulator/HEAD/data/sample_images/med_2.jpg -------------------------------------------------------------------------------- /data/sample_images/med_3.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr3coi/screen_photo_simulator/HEAD/data/sample_images/med_3.jpeg -------------------------------------------------------------------------------- /data/sample_images/med_4.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr3coi/screen_photo_simulator/HEAD/data/sample_images/med_4.jpeg -------------------------------------------------------------------------------- /src/basic_shapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr3coi/screen_photo_simulator/HEAD/src/basic_shapes.py -------------------------------------------------------------------------------- /src/bcg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr3coi/screen_photo_simulator/HEAD/src/bcg.py -------------------------------------------------------------------------------- /src/dft_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr3coi/screen_photo_simulator/HEAD/src/dft_analysis.py -------------------------------------------------------------------------------- /src/dft_dragotti.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr3coi/screen_photo_simulator/HEAD/src/dft_dragotti.py -------------------------------------------------------------------------------- /src/dragotti_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr3coi/screen_photo_simulator/HEAD/src/dragotti_loader.py -------------------------------------------------------------------------------- /src/image_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr3coi/screen_photo_simulator/HEAD/src/image_tools.py -------------------------------------------------------------------------------- /src/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr3coi/screen_photo_simulator/HEAD/src/main.py -------------------------------------------------------------------------------- /src/module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr3coi/screen_photo_simulator/HEAD/src/module.py -------------------------------------------------------------------------------- /src/moire.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr3coi/screen_photo_simulator/HEAD/src/moire.py -------------------------------------------------------------------------------- /src/preproc_dragotti.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr3coi/screen_photo_simulator/HEAD/src/preproc_dragotti.sh -------------------------------------------------------------------------------- /src/recapture_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr3coi/screen_photo_simulator/HEAD/src/recapture_generator.py -------------------------------------------------------------------------------- /src/warp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr3coi/screen_photo_simulator/HEAD/src/warp.py -------------------------------------------------------------------------------- /src/warp_func_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr3coi/screen_photo_simulator/HEAD/src/warp_func_test.py --------------------------------------------------------------------------------