├── .gitignore ├── README.md ├── affine_transform.py ├── augmentation-helpers ├── background │ ├── background_1.jpg │ ├── background_2.jpg │ ├── background_3.jpg │ ├── background_4.jpg │ ├── background_5.jpg │ └── background_6.jpg └── overlays │ ├── monitor │ ├── monitor_1.jpg │ ├── monitor_2.jpg │ ├── monitor_3.jpg │ ├── monitor_5.jpg │ ├── monitor_6.jpg │ └── monitor_7.jpg │ └── wrinkle │ ├── wrinkle_1.jpg │ ├── wrinkle_2.jpg │ └── wrinkle_3.jpg ├── basic_transform.py ├── composite_transform.py ├── data └── sample.jpg ├── demo.py ├── distortion.py ├── main.py ├── output ├── blur.gif ├── contrast_and_brighten.gif ├── distort.gif ├── gamma_saturation.gif ├── lcd_overlay.gif ├── noise.gif ├── perspective.gif ├── rotate.gif ├── scanner_like.gif ├── shadow.gif ├── stretch.gif ├── watermark.gif └── wrinkles.gif ├── requirements.txt ├── utility.py └── warp_mls.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gautam-aayush/form-data-augmentation/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gautam-aayush/form-data-augmentation/HEAD/README.md -------------------------------------------------------------------------------- /affine_transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gautam-aayush/form-data-augmentation/HEAD/affine_transform.py -------------------------------------------------------------------------------- /augmentation-helpers/background/background_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gautam-aayush/form-data-augmentation/HEAD/augmentation-helpers/background/background_1.jpg -------------------------------------------------------------------------------- /augmentation-helpers/background/background_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gautam-aayush/form-data-augmentation/HEAD/augmentation-helpers/background/background_2.jpg -------------------------------------------------------------------------------- /augmentation-helpers/background/background_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gautam-aayush/form-data-augmentation/HEAD/augmentation-helpers/background/background_3.jpg -------------------------------------------------------------------------------- /augmentation-helpers/background/background_4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gautam-aayush/form-data-augmentation/HEAD/augmentation-helpers/background/background_4.jpg -------------------------------------------------------------------------------- /augmentation-helpers/background/background_5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gautam-aayush/form-data-augmentation/HEAD/augmentation-helpers/background/background_5.jpg -------------------------------------------------------------------------------- /augmentation-helpers/background/background_6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gautam-aayush/form-data-augmentation/HEAD/augmentation-helpers/background/background_6.jpg -------------------------------------------------------------------------------- /augmentation-helpers/overlays/monitor/monitor_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gautam-aayush/form-data-augmentation/HEAD/augmentation-helpers/overlays/monitor/monitor_1.jpg -------------------------------------------------------------------------------- /augmentation-helpers/overlays/monitor/monitor_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gautam-aayush/form-data-augmentation/HEAD/augmentation-helpers/overlays/monitor/monitor_2.jpg -------------------------------------------------------------------------------- /augmentation-helpers/overlays/monitor/monitor_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gautam-aayush/form-data-augmentation/HEAD/augmentation-helpers/overlays/monitor/monitor_3.jpg -------------------------------------------------------------------------------- /augmentation-helpers/overlays/monitor/monitor_5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gautam-aayush/form-data-augmentation/HEAD/augmentation-helpers/overlays/monitor/monitor_5.jpg -------------------------------------------------------------------------------- /augmentation-helpers/overlays/monitor/monitor_6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gautam-aayush/form-data-augmentation/HEAD/augmentation-helpers/overlays/monitor/monitor_6.jpg -------------------------------------------------------------------------------- /augmentation-helpers/overlays/monitor/monitor_7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gautam-aayush/form-data-augmentation/HEAD/augmentation-helpers/overlays/monitor/monitor_7.jpg -------------------------------------------------------------------------------- /augmentation-helpers/overlays/wrinkle/wrinkle_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gautam-aayush/form-data-augmentation/HEAD/augmentation-helpers/overlays/wrinkle/wrinkle_1.jpg -------------------------------------------------------------------------------- /augmentation-helpers/overlays/wrinkle/wrinkle_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gautam-aayush/form-data-augmentation/HEAD/augmentation-helpers/overlays/wrinkle/wrinkle_2.jpg -------------------------------------------------------------------------------- /augmentation-helpers/overlays/wrinkle/wrinkle_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gautam-aayush/form-data-augmentation/HEAD/augmentation-helpers/overlays/wrinkle/wrinkle_3.jpg -------------------------------------------------------------------------------- /basic_transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gautam-aayush/form-data-augmentation/HEAD/basic_transform.py -------------------------------------------------------------------------------- /composite_transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gautam-aayush/form-data-augmentation/HEAD/composite_transform.py -------------------------------------------------------------------------------- /data/sample.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gautam-aayush/form-data-augmentation/HEAD/data/sample.jpg -------------------------------------------------------------------------------- /demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gautam-aayush/form-data-augmentation/HEAD/demo.py -------------------------------------------------------------------------------- /distortion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gautam-aayush/form-data-augmentation/HEAD/distortion.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gautam-aayush/form-data-augmentation/HEAD/main.py -------------------------------------------------------------------------------- /output/blur.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gautam-aayush/form-data-augmentation/HEAD/output/blur.gif -------------------------------------------------------------------------------- /output/contrast_and_brighten.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gautam-aayush/form-data-augmentation/HEAD/output/contrast_and_brighten.gif -------------------------------------------------------------------------------- /output/distort.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gautam-aayush/form-data-augmentation/HEAD/output/distort.gif -------------------------------------------------------------------------------- /output/gamma_saturation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gautam-aayush/form-data-augmentation/HEAD/output/gamma_saturation.gif -------------------------------------------------------------------------------- /output/lcd_overlay.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gautam-aayush/form-data-augmentation/HEAD/output/lcd_overlay.gif -------------------------------------------------------------------------------- /output/noise.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gautam-aayush/form-data-augmentation/HEAD/output/noise.gif -------------------------------------------------------------------------------- /output/perspective.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gautam-aayush/form-data-augmentation/HEAD/output/perspective.gif -------------------------------------------------------------------------------- /output/rotate.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gautam-aayush/form-data-augmentation/HEAD/output/rotate.gif -------------------------------------------------------------------------------- /output/scanner_like.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gautam-aayush/form-data-augmentation/HEAD/output/scanner_like.gif -------------------------------------------------------------------------------- /output/shadow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gautam-aayush/form-data-augmentation/HEAD/output/shadow.gif -------------------------------------------------------------------------------- /output/stretch.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gautam-aayush/form-data-augmentation/HEAD/output/stretch.gif -------------------------------------------------------------------------------- /output/watermark.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gautam-aayush/form-data-augmentation/HEAD/output/watermark.gif -------------------------------------------------------------------------------- /output/wrinkles.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gautam-aayush/form-data-augmentation/HEAD/output/wrinkles.gif -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gautam-aayush/form-data-augmentation/HEAD/requirements.txt -------------------------------------------------------------------------------- /utility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gautam-aayush/form-data-augmentation/HEAD/utility.py -------------------------------------------------------------------------------- /warp_mls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gautam-aayush/form-data-augmentation/HEAD/warp_mls.py --------------------------------------------------------------------------------