├── .gitignore ├── LICENSE ├── README.md ├── dataset ├── download_dataset.py └── stack_npy.py ├── images ├── binary_accuracy.svg ├── loss.svg ├── output.jpg ├── test.jpg ├── val_binary_accuracy.svg └── val_loss.svg ├── model ├── iou_loss.py ├── train.py └── unet_model.py ├── test_model.py └── unet_model_whole_100epochs.h5 /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdivarekarBhumit/ID-Card-Segmentation/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdivarekarBhumit/ID-Card-Segmentation/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdivarekarBhumit/ID-Card-Segmentation/HEAD/README.md -------------------------------------------------------------------------------- /dataset/download_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdivarekarBhumit/ID-Card-Segmentation/HEAD/dataset/download_dataset.py -------------------------------------------------------------------------------- /dataset/stack_npy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdivarekarBhumit/ID-Card-Segmentation/HEAD/dataset/stack_npy.py -------------------------------------------------------------------------------- /images/binary_accuracy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdivarekarBhumit/ID-Card-Segmentation/HEAD/images/binary_accuracy.svg -------------------------------------------------------------------------------- /images/loss.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdivarekarBhumit/ID-Card-Segmentation/HEAD/images/loss.svg -------------------------------------------------------------------------------- /images/output.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdivarekarBhumit/ID-Card-Segmentation/HEAD/images/output.jpg -------------------------------------------------------------------------------- /images/test.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdivarekarBhumit/ID-Card-Segmentation/HEAD/images/test.jpg -------------------------------------------------------------------------------- /images/val_binary_accuracy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdivarekarBhumit/ID-Card-Segmentation/HEAD/images/val_binary_accuracy.svg -------------------------------------------------------------------------------- /images/val_loss.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdivarekarBhumit/ID-Card-Segmentation/HEAD/images/val_loss.svg -------------------------------------------------------------------------------- /model/iou_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdivarekarBhumit/ID-Card-Segmentation/HEAD/model/iou_loss.py -------------------------------------------------------------------------------- /model/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdivarekarBhumit/ID-Card-Segmentation/HEAD/model/train.py -------------------------------------------------------------------------------- /model/unet_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdivarekarBhumit/ID-Card-Segmentation/HEAD/model/unet_model.py -------------------------------------------------------------------------------- /test_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdivarekarBhumit/ID-Card-Segmentation/HEAD/test_model.py -------------------------------------------------------------------------------- /unet_model_whole_100epochs.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdivarekarBhumit/ID-Card-Segmentation/HEAD/unet_model_whole_100epochs.h5 --------------------------------------------------------------------------------