Skip to content

Latest commit

 

History

History
41 lines (26 loc) · 1.85 KB

README.md

File metadata and controls

41 lines (26 loc) · 1.85 KB

FPD-M-net: Fingerprint Image Denoising and Inpainting Using M-Net Based Convolutional Neural Networks using Keras.

This is end-to-end trainable Convolutional Neural Network (CNN) based architecture for fingerprint image denoising and inpainting problem. We pose the fingerprint denoising and inpainting as a segmentation (foreground) task. Our architecture is based on the M-net which was proposed for brain segmentation. We modify this architecture and call the resulting architecture as FPD-M-net. The fingerprint images are degraded with varies distortion (blur, brightness, contrast, elastic transformation, occlusion, scratch, resolution, rotation and overlaying the fingerprints on top of various backgrounds). Our model tackles the distortions and noise using encoder layers and restores the fingerprint images using decoder layers. Our method achieves overall 3rd rank in the Chalearn LAP Inpainting Competition Track 3 - Fingerprint Denoising and Inpainting, ECCV 2018 : http://chalearnlap.cvc.uab.es/dataset/32/results/63/

Paper link : [FPD-M-net]

Dependencies

This code depends on the following libraries:

Keras>=2.0

theano or tensorflow

Also, this code should be compatible with Python versions 2.7-3.5. (tested in python2.7)

Example

if Cuda enabled

$ CUDA_VISIBLE_DEVICES=0 python2.7 test.py "test_path"

else

$ python2.7 test.py "test_path"

The predicted results will be in "test_path/Results"

Citation

If you use this code for your research, please cite:

@inproceedings{adiga2018fpdmnet,
  title={FPD-M-net: Fingerprint Image Denoising and Inpainting Using M-Net Based Convolutional Neural Networks},
  author={Adiga, Sukesh V and Sivaswamy, Jayanthi},
  booktitle={arXiv preprint arXiv:1812.10191},
  year={2018},
}
License

This project is licensed under the terms of the MIT license.