├── .gitignore ├── README.md ├── data ├── dataset │ └── README.md └── testcases │ └── README.md ├── docs └── description.pdf ├── requirements.txt └── src ├── data ├── iam_dataset.py └── test_generator.py ├── features ├── feature_extractor.py └── feature_extractor_old.py ├── main.py ├── models └── gmm_model.py ├── pre_processing └── pre_processor.py ├── segmentation └── line_segmentor.py └── utils ├── constants.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmarBazaraa/WriterIdentifier/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmarBazaraa/WriterIdentifier/HEAD/README.md -------------------------------------------------------------------------------- /data/dataset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmarBazaraa/WriterIdentifier/HEAD/data/dataset/README.md -------------------------------------------------------------------------------- /data/testcases/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmarBazaraa/WriterIdentifier/HEAD/data/testcases/README.md -------------------------------------------------------------------------------- /docs/description.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmarBazaraa/WriterIdentifier/HEAD/docs/description.pdf -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | opencv-python>=3.0 2 | numpy 3 | scikit-image 4 | sklearn 5 | matplotlib 6 | -------------------------------------------------------------------------------- /src/data/iam_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmarBazaraa/WriterIdentifier/HEAD/src/data/iam_dataset.py -------------------------------------------------------------------------------- /src/data/test_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmarBazaraa/WriterIdentifier/HEAD/src/data/test_generator.py -------------------------------------------------------------------------------- /src/features/feature_extractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmarBazaraa/WriterIdentifier/HEAD/src/features/feature_extractor.py -------------------------------------------------------------------------------- /src/features/feature_extractor_old.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmarBazaraa/WriterIdentifier/HEAD/src/features/feature_extractor_old.py -------------------------------------------------------------------------------- /src/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmarBazaraa/WriterIdentifier/HEAD/src/main.py -------------------------------------------------------------------------------- /src/models/gmm_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmarBazaraa/WriterIdentifier/HEAD/src/models/gmm_model.py -------------------------------------------------------------------------------- /src/pre_processing/pre_processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmarBazaraa/WriterIdentifier/HEAD/src/pre_processing/pre_processor.py -------------------------------------------------------------------------------- /src/segmentation/line_segmentor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmarBazaraa/WriterIdentifier/HEAD/src/segmentation/line_segmentor.py -------------------------------------------------------------------------------- /src/utils/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmarBazaraa/WriterIdentifier/HEAD/src/utils/constants.py -------------------------------------------------------------------------------- /src/utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmarBazaraa/WriterIdentifier/HEAD/src/utils/utils.py --------------------------------------------------------------------------------