├── .gitignore ├── IDCard Prediction Test.ipynb ├── README.md ├── assets ├── dice.png ├── iou.png ├── iou_formular1.png ├── pipeline.png └── unet.jpg ├── dataset └── .gitkeep ├── models.py ├── prepare_dataset.py ├── pretrained └── README.md ├── requirements.txt ├── test.py ├── test ├── sample1.png ├── sample2.png ├── sample3.png └── sample4.png ├── train.py └── utils ├── __init__.py ├── image.py ├── loss.py └── metrics.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobiassteidle/ML_IDCard_Segmentation-TF-Keras/HEAD/.gitignore -------------------------------------------------------------------------------- /IDCard Prediction Test.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobiassteidle/ML_IDCard_Segmentation-TF-Keras/HEAD/IDCard Prediction Test.ipynb -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobiassteidle/ML_IDCard_Segmentation-TF-Keras/HEAD/README.md -------------------------------------------------------------------------------- /assets/dice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobiassteidle/ML_IDCard_Segmentation-TF-Keras/HEAD/assets/dice.png -------------------------------------------------------------------------------- /assets/iou.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobiassteidle/ML_IDCard_Segmentation-TF-Keras/HEAD/assets/iou.png -------------------------------------------------------------------------------- /assets/iou_formular1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobiassteidle/ML_IDCard_Segmentation-TF-Keras/HEAD/assets/iou_formular1.png -------------------------------------------------------------------------------- /assets/pipeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobiassteidle/ML_IDCard_Segmentation-TF-Keras/HEAD/assets/pipeline.png -------------------------------------------------------------------------------- /assets/unet.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobiassteidle/ML_IDCard_Segmentation-TF-Keras/HEAD/assets/unet.jpg -------------------------------------------------------------------------------- /dataset/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobiassteidle/ML_IDCard_Segmentation-TF-Keras/HEAD/models.py -------------------------------------------------------------------------------- /prepare_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobiassteidle/ML_IDCard_Segmentation-TF-Keras/HEAD/prepare_dataset.py -------------------------------------------------------------------------------- /pretrained/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobiassteidle/ML_IDCard_Segmentation-TF-Keras/HEAD/pretrained/README.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobiassteidle/ML_IDCard_Segmentation-TF-Keras/HEAD/requirements.txt -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobiassteidle/ML_IDCard_Segmentation-TF-Keras/HEAD/test.py -------------------------------------------------------------------------------- /test/sample1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobiassteidle/ML_IDCard_Segmentation-TF-Keras/HEAD/test/sample1.png -------------------------------------------------------------------------------- /test/sample2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobiassteidle/ML_IDCard_Segmentation-TF-Keras/HEAD/test/sample2.png -------------------------------------------------------------------------------- /test/sample3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobiassteidle/ML_IDCard_Segmentation-TF-Keras/HEAD/test/sample3.png -------------------------------------------------------------------------------- /test/sample4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobiassteidle/ML_IDCard_Segmentation-TF-Keras/HEAD/test/sample4.png -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobiassteidle/ML_IDCard_Segmentation-TF-Keras/HEAD/train.py -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobiassteidle/ML_IDCard_Segmentation-TF-Keras/HEAD/utils/image.py -------------------------------------------------------------------------------- /utils/loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobiassteidle/ML_IDCard_Segmentation-TF-Keras/HEAD/utils/loss.py -------------------------------------------------------------------------------- /utils/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobiassteidle/ML_IDCard_Segmentation-TF-Keras/HEAD/utils/metrics.py --------------------------------------------------------------------------------