arxiv: v1 [cs.cv] 19 Jan 2019

Size: px
Start display at page:

Download "arxiv: v1 [cs.cv] 19 Jan 2019"

Transcription

1 Writer Independent Offline Signature Recognition Using Ensemble Learning Sourya Dipta Das 1, Himanshu Ladia 2, Vaibhav Kumar 2, and Shivansh Mishra 2 1 Jadavpur University, Kolkata, India 2 Delhi Technological University, Delhi, India arxiv: v1 [cs.cv] 19 Jan 2019 Abstract. The area of Handwritten Signature Verification has been broadly researched in the last decades, but remains an open research problem. In offline (static) signature verification, the dynamic information of the signature writing process is lost, and it is difficult to design good feature extractors that can distinguish genuine signatures and skilled forgeries. This verification task is even harder in writer independent scenarios which is undeniably fiscal for realistic cases. In this paper, we have proposed an Ensemble model for offline writer, independent signature verification task with Deep learning. We have used two CNNs for feature extraction, after that RGBT for classification & Stacking to generate final prediction vector. We have done extensive experiments on various datasets from various sources to maintain a variance in the dataset. We have achieved the state of the art performance on various datasets. Keywords: Offline Signature Verification, Convolutional Neural Networks, Ensemble Learning, Deep Learning 1 Introduction Signature verification is a critical task and many efforts have been made to remove the uncertainty involved in the manual authentication procedure, which makes it an important research line in the field of machine learning and pattern recognition. In offline signature verification, the signature is acquired after the writing process is completed, by scanning a document containing the signature. Defining discriminative feature extractors for offline signatures is a difficult task due to different types of signatures from different origin based on language, country or region. Offline signature verification can be addressed with writer dependent and writer independent approaches. Writer independent scenario is preferable over writer dependent approaches, as for a functioning system, a writer dependent system needs to be retrained with every new writer or signer. For a consumer based system, such as bank, where every day new consumers can open their account this incurs huge cost. Whereas, in writer independent case, a generic system is built to model the discrepancy among the genuine and forged signatures. One of the main challenges for the writer independent offline signature verification task is having a high intra-class variability compared to physical

2 2 Sourya, Himanshu et al. biometric traits, such as fingerprint or iris. This issue is aggravated with the presence of low inter-class variability when we consider skilled forgeries. In a realistic scenario, during training we only have access to genuine signatures for the users enrolled to the system. During operations, however, we want the system not only to be able to accept genuine signatures, but also to reject forgeries. Lastly, the amount of data available for each user is often very limited in real applications. During the enrollment phase, users are often required to supply only a few samples of their signatures. In other words, even if there is a large number of users enrolled to the system, a classifier needs to perform well for a new user, for whom only a small set of samples are available. In this scenario, our model is based on ensemble model of two deep nets which is trained on two different loss function to learn discriminative features for detection of both person & forgery. With our model, we have achieved high accuracy on large scale cross domain datasets. 2 Previous Work Different hand crafted features have been proposed for offline signature verification tasks. Examples include block codes, wavelet and Fourier series etc [2]. Some other methods consider the geometrical and topological characteristics of local attributes, such as position, tangent direction, blob structure, connected component and curvature [1], grid based methods [7], methods based on geometrical moments [6], and texture based features [8], Projection and contour based methods [3] are also quite used for offline signature verification as a unsupervised method. Apart from that, some structural methods like graph matching [4] and compact correlated features [5] are also become popular in signature recognition. Convolutional Neural Network [10] have been used to transfer learning of macro & micro features from training on a large dataset to using this model as a feature extractor in a another task by using same network. From the perspective of few shot learning, Siamese networks are popular & effective option for offline signature verification. In a recent work, Convolutional siamese network [9] had been used for offline signature recognition. 3 Our Model Description We have proposed a ensemble model consists of two deepnet model and we have used Regularized Gradient Boosting Tree (RGBT) as a classifier and finally stacking as a ensemble algorithm to get final prediction vector. 3.1 Preprocessing & Feature Extraction We have used preprocessing techniques from the paper [10] & then we have used two deep net models to extract the feature from each signature. One deepnet (which is called here as Signet ) model is trained on genuine signatures to learn common descriptive features among the writers and another deepnet model

3 Writer Independent Offline Signature Recognition Using Ensemble Learning 3 (which is called here as Signet-f ) is trained on genuine & forged signatures both to learn discriminative features between original and fake one. We pass the signature images through both the models and capture the output of the last layer of the convolutional neural network. This gives us features extracted from signet, and signetf models. 3.2 Model Architecture We have used same Convolutional Neural Network Architecture mentioned in the paper [10] for both CNNs and used their training procedure & loss functions for respective CNNs on the same dataset to get trained CNNs for feature extraction. Description of the CNN is described in [Fig. 1]. Fig. 1. Description of the CNN architecture used for feature extraction 3.3 Writer Independent Classifier We have used Regularized Gradient Boosting Tree as our writer independent classifier. It is a sequential technique which works on the principle of an ensemble. It combines a set of weak learners and delivers improved prediction accuracy. At any instant t, the model outcomes are weighed based on the outcomes of previous instant t-1. The outcomes predicted correctly are given a lower weight and the ones miss-classified are weighted higher. Though fitting the training set too closely can lead to degradation of the model s generalization ability. So, to neutralize this effect, we have used regularization methods to reduce this overfitting effect by constraining the fitting procedure. During training, we have set maximum tree depth for base learners as 3, boosting learning rate as 0.1 and number of boosted trees to fit as 100. After getting prediction vector from two classifier, they are fed to stacking module to form a ensemble.

4 4 Sourya, Himanshu et al. 3.4 Stacking as Ensemble Method Stacking is one of the ensemble model, where a new model is trained from the combined predictions of two or more model. The predictions from the models are used as inputs for each sequential layer, and combined to form a final set of predictions. In the implementation, a logistic regression model is used as the combiner. Fig. 2. Signature Verification Model Block Diagram 4 Experimentation The dataset combining of genuine and forged images is run through the CNN for extracting features. Then, a 33% random test split is used. The 67% data is used for training the RGBT model. Then, from the trained model, the probabilities is calculate for both, the 67% training data and the 33% testing data. The results are evaluated for both, signet and signet-f feature extractors. The corresponding probabilities are also calculated from the features extracted from a signet-f model in the similar fashion. Then, these probabilities are horizontally stacked to create a (n,2) shape feature matrix. This process is done for both, the 67% training data, and 33% test data. A logistic unit is trained on this feature matrix using the 67% training data. And it is tested on the feature matrix of 33% test data. For our implementation & training, we had used a laptop with CPU - Intel(R) Core(TM) i5-6200u 2.30GHz and RAM of 8 GB. During the experiments

5 Writer Independent Offline Signature Recognition Using Ensemble Learning 5 on various datsets, we observe that the signet model is better at classifying genuine images and the signet-f model is better at classifying forged images. So, it is logical to stack the two classifiers and improve the overall accuracy by a handsome margin. Table 1. Benchmark Signature Datasets Dataset Name Genuine Fake Samples in Samples in signatures signatures Training Set Test Set CEDAR[11] Hindi-Dataset[8] Bengali-Dataset[8] Results & Discussion We have evaluated our proposed model with various datasets mentioned in Table 1. We used the performance metric for accuracy of the model described in the paper [9]. Performance with our proposed model and comparison with other state of the art method is described in Table 2. In case of Bengali & Hindi Dataset, our proposed method outperformed other 3 state of the art methods but not be able to outperform Dutta et al., graph matching & SigNet on CEDAR dataset. One possilbe reason for this result may be that for little amount of data, other unsupervised methods and Siamese network (trained on that dataset specifically) are better than ours. Table 2. Comparison & Performance of the proposed method with other state-of-theart methods on mentioned signature datasets Dataset Name Methods Accuracy (%) Word Shape (GSC) (Kalera et al.[2]) Zernike moments (Chen and Srihari[13]) Graph matching (Chen and Srihari[4]) CEDAR Surroundedness features (Kumar et al.[12]) Dutta et al.[5] SigNet[9] Proposed Method Pal et al.[8] Dutta et al.[5] Hindi Dataset SigNet[9] Proposed Method Pal et al.[8] Dutta et al.[5] Bengali Dataset SigNet[9] Proposed Method

6 6 Sourya, Himanshu et al. 4.2 Conclusion In this paper, we have presented a framework based on ensemble learning for offline signature verification. Also, our experiments made on cross domain datasets indicate how well our ensemble model can robustly detect fraudulence of different handwriting style of different signers and forgers with diverse background and scripts. Furthermore, the Ensemble Model designed by us has surpassed the state-of-the-art results on most of the benchmark signature datasets from various scripts & domain. Our future work in this problem will be focus on the multimodal model to incorporate both online & offline signature in one model with different types of data augmentation. References 1. M. E. Munich, P. Perona, Visual identification by signature tracking, IEEE TPAMI 25 (2) (2003) M. K. Kalera, S. N. Srihari, A. Xu, Offline signature verification and identification using distance statistics, IJPRAI 18 (7) (2004) G. Dimauro, S. Impedovo, G. Pirlo, A. Salzo, A multi-expert signature verification system for bankcheck processing, IJPRAI 11 (05) (1997) S. Chen, S. Srihari, A new offline signature verification method based on graph, in: ICPR, 2006, pp A. Dutta, U. Pal, J. Llados, Compact correlated features for writer independent signature verification, in: ICPR, 2016, pp V. Ramesh, M. N. Murty, offline signature verification using genetically optimized weighted features, PR 32 (2) (1999) K. Huang, H. Yan, Offline signature verification based on geometric feature extraction and neural network classification, PR 30 (1) (1997) S. Pal, A. Alaei, U. Pal, M. Blumenstein, Performance of an offline signature verification method based on texture features on a large indic-script signature dataset, in: DAS, 2016, pp Dey, S., Dutta, A., Toledo, J.I., Ghosh, S.K., Llads, J., & Pal, U. (2017). SigNet: Convolutional Siamese Network for Writer Independent Offline Signature Verification. CoRR, abs/ Luiz G. Hafemann, Robert Sabourin, and Luiz S. Oliveira Learning features for offline handwritten signature verification using deep convolutional neural networks. Pattern Recogn. 70, C (October 2017), M. K. Kalera, S. Srihari, A. Xu, Offline signature verification and identification using distance statistics,international Journal of Pattern Recognition and Artificial Intelligence 18 (07) (2004) R. Kumar, J. Sharma, B. Chanda, Writer-independent offline signature verification using surroundedness feature, PRL 33 (3) (2012) S. Chen, S. Srihari, Use of exterior contours and shape features in offline signature verification, in: ICDAR, 2005, pp

arxiv: v2 [cs.cv] 30 Sep 2017

arxiv: v2 [cs.cv] 30 Sep 2017 1 Pattern Recognition Letters journal homepage: www.elsevier.com SigNet: Convolutional Siamese Network for Writer Independent Offline Signature Verification Sounak Dey a,, Anjan Dutta a, J. Ignacio Toledo

More information

Off-line Signature Verification Using Writer-Independent Approach

Off-line Signature Verification Using Writer-Independent Approach Off-line Signature Verification Using Writer-Independent Approach Luiz S. Oliveira, Edson Justino, and Robert Sabourin Abstract In this work we present a strategy for off-line signature verification. It

More information

User Signature Identification and Image Pixel Pattern Verification

User Signature Identification and Image Pixel Pattern Verification Global Journal of Pure and Applied Mathematics. ISSN 0973-1768 Volume 13, Number 7 (2017), pp. 3193-3202 Research India Publications http://www.ripublication.com User Signature Identification and Image

More information

Online Signature Verification Technique

Online Signature Verification Technique Volume 3, Issue 1 ISSN: 2320-5288 International Journal of Engineering Technology & Management Research Journal homepage: www.ijetmr.org Online Signature Verification Technique Ankit Soni M Tech Student,

More information

IJESRT. Scientific Journal Impact Factor: (ISRA), Impact Factor: 1.852

IJESRT. Scientific Journal Impact Factor: (ISRA), Impact Factor: 1.852 IJESRT INTERNATIONAL JOURNAL OF ENGINEERING SCIENCES & RESEARCH TECHNOLOGY INTELLEGENT APPROACH FOR OFFLINE SIGNATURE VERIFICATION USING CHAINCODE AND ENERGY FEATURE EXTRACTION ON MULTICORE PROCESSOR Raju

More information

HANDWRITTEN SIGNATURE VERIFICATION USING NEURAL NETWORK & ECLUDEAN APPROACH

HANDWRITTEN SIGNATURE VERIFICATION USING NEURAL NETWORK & ECLUDEAN APPROACH http:// HANDWRITTEN SIGNATURE VERIFICATION USING NEURAL NETWORK & ECLUDEAN APPROACH Shalu Saraswat 1, Prof. Sitesh Kumar Sinha 2, Prof. Mukesh Kumar 3 1,2,3 Department of Computer Science, AISECT University

More information

Offline Signature Verification Using Neural Network

Offline Signature Verification Using Neural Network Offline Signature Verification Using Neural Network Dr. Kiran Y.C 1, Ms. Nirmita Nagaraj 2 1Professor, Dept. of Computer Science and engineering, B.N.M Institute of Technology, Karnataka, India 2Student,

More information

Recognition of Unconstrained Malayalam Handwritten Numeral

Recognition of Unconstrained Malayalam Handwritten Numeral Recognition of Unconstrained Malayalam Handwritten Numeral U. Pal, S. Kundu, Y. Ali, H. Islam and N. Tripathy C VPR Unit, Indian Statistical Institute, Kolkata-108, India Email: umapada@isical.ac.in Abstract

More information

arxiv: v2 [cs.cv] 19 Aug 2015

arxiv: v2 [cs.cv] 19 Aug 2015 Offline Handwritten Signature Verification - Literature Review arxiv:1507.07909v2 [cs.cv] 19 Aug 2015 Luiz G. Hafemann, Robert Sabourin Lab. d imagerie, de vision et d intelligence artificielle École de

More information

Convolution Neural Networks for Chinese Handwriting Recognition

Convolution Neural Networks for Chinese Handwriting Recognition Convolution Neural Networks for Chinese Handwriting Recognition Xu Chen Stanford University 450 Serra Mall, Stanford, CA 94305 xchen91@stanford.edu Abstract Convolutional neural networks have been proven

More information

Recognition of Off-Line Handwritten Devnagari Characters Using Quadratic Classifier

Recognition of Off-Line Handwritten Devnagari Characters Using Quadratic Classifier Recognition of Off-Line Handwritten Devnagari Characters Using Quadratic Classifier N. Sharma, U. Pal*, F. Kimura**, and S. Pal Computer Vision and Pattern Recognition Unit, Indian Statistical Institute

More information

Off-line Signature Verification Using Neural Network

Off-line Signature Verification Using Neural Network International Journal of Scientific & Engineering Research, Volume 3, Issue 2, February-2012 1 Off-line Signature Verification Using Neural Network Ashwini Pansare, Shalini Bhatia Abstract a number of

More information

Fine Classification of Unconstrained Handwritten Persian/Arabic Numerals by Removing Confusion amongst Similar Classes

Fine Classification of Unconstrained Handwritten Persian/Arabic Numerals by Removing Confusion amongst Similar Classes 2009 10th International Conference on Document Analysis and Recognition Fine Classification of Unconstrained Handwritten Persian/Arabic Numerals by Removing Confusion amongst Similar Classes Alireza Alaei

More information

NOVATEUR PUBLICATIONS INTERNATIONAL JOURNAL OF INNOVATIONS IN ENGINEERING RESEARCH AND TECHNOLOGY [IJIERT] ISSN: VOLUME 2, ISSUE 1 JAN-2015

NOVATEUR PUBLICATIONS INTERNATIONAL JOURNAL OF INNOVATIONS IN ENGINEERING RESEARCH AND TECHNOLOGY [IJIERT] ISSN: VOLUME 2, ISSUE 1 JAN-2015 Offline Handwritten Signature Verification using Neural Network Pallavi V. Hatkar Department of Electronics Engineering, TKIET Warana, India Prof.B.T.Salokhe Department of Electronics Engineering, TKIET

More information

Off-line Bangla Signature Verification

Off-line Bangla Signature Verification 2012 10th IAPR International Workshop on Document Analysis Systems Off-line Bangla Signature Verification Srikanta Pal University, Gold Coast srikanta.pal@griffithuni. edu.au Vu Nguyen University, Gold

More information

Signature Recognition by Pixel Variance Analysis Using Multiple Morphological Dilations

Signature Recognition by Pixel Variance Analysis Using Multiple Morphological Dilations Signature Recognition by Pixel Variance Analysis Using Multiple Morphological Dilations H B Kekre 1, Department of Computer Engineering, V A Bharadi 2, Department of Electronics and Telecommunication**

More information

Offline Handwritten Signatures Classification Using Wavelet Packets and Level Similarity Based Scoring

Offline Handwritten Signatures Classification Using Wavelet Packets and Level Similarity Based Scoring Offline Handwritten Signatures Classification Using Wavelet Packets and Level Similarity Based Scoring Poornima G Patil #1, Ravindra S Hegadi #2 1 Department of Computer Science and Applications 2 School

More information

Online Signature Verification: A Review

Online Signature Verification: A Review IOSR Journal of Computer Engineering (IOSR-JCE) e-issn: 2278-0661,p-ISSN: 2278-8727, Volume 19, Issue 2, Ver. III (Mar.-Apr. 2017), PP 33-37 www.iosrjournals.org Online Signature Verification: A Review

More information

A Non-Rigid Feature Extraction Method for Shape Recognition

A Non-Rigid Feature Extraction Method for Shape Recognition A Non-Rigid Feature Extraction Method for Shape Recognition Jon Almazán, Alicia Fornés, Ernest Valveny Computer Vision Center Dept. Ciències de la Computació Universitat Autònoma de Barcelona Bellaterra,

More information

Off-Line Signature Verification based on Ordered Grid Features: An Evaluation

Off-Line Signature Verification based on Ordered Grid Features: An Evaluation Off-Line Signature Verification based on Ordered Grid Features: An Evaluation Konstantina Barkoula, George Economou Physics Department University of Patras Patras, Greece email: kbarkoula@gmail.com, economou@upatras.gr

More information

Offline Signature Verification using Grid based and Centroid based Approach

Offline Signature Verification using Grid based and Centroid based Approach Offline Signature Verification using Grid based and Centroid based Approach Sayantan Roy Department of Computer Science Engineering ISM Dhanbad Jharkhand ABSTRACT Now a day s Signature verification is

More information

Invarianceness for Character Recognition Using Geo-Discretization Features

Invarianceness for Character Recognition Using Geo-Discretization Features Computer and Information Science; Vol. 9, No. 2; 2016 ISSN 1913-8989 E-ISSN 1913-8997 Published by Canadian Center of Science and Education Invarianceness for Character Recognition Using Geo-Discretization

More information

Off-line Signature Verification using the Enhanced Modified Direction Feature and Neural-based Classification

Off-line Signature Verification using the Enhanced Modified Direction Feature and Neural-based Classification Off-line Signature Verification using the Enhanced Modified Direction Feature and Neural-based Classification Author Armand, Stephane, Blumenstein, Michael, Muthukkumarasamy, Vallipuram Published 2006

More information

Handwritten Gurumukhi Character Recognition by using Recurrent Neural Network

Handwritten Gurumukhi Character Recognition by using Recurrent Neural Network 139 Handwritten Gurumukhi Character Recognition by using Recurrent Neural Network Harmit Kaur 1, Simpel Rani 2 1 M. Tech. Research Scholar (Department of Computer Science & Engineering), Yadavindra College

More information

OFFLINE SIGNATURE VERIFICATION USING SUPPORT LOCAL BINARY PATTERN

OFFLINE SIGNATURE VERIFICATION USING SUPPORT LOCAL BINARY PATTERN OFFLINE SIGNATURE VERIFICATION USING SUPPORT LOCAL BINARY PATTERN P.Vickram, Dr. A. Sri Krishna and D.Swapna Department of Computer Science & Engineering, R.V. R & J.C College of Engineering, Guntur ABSTRACT

More information

Online Bangla Handwriting Recognition System

Online Bangla Handwriting Recognition System 1 Online Bangla Handwriting Recognition System K. Roy Dept. of Comp. Sc. West Bengal University of Technology, BF 142, Saltlake, Kolkata-64, India N. Sharma, T. Pal and U. Pal Computer Vision and Pattern

More information

Applying Supervised Learning

Applying Supervised Learning Applying Supervised Learning When to Consider Supervised Learning A supervised learning algorithm takes a known set of input data (the training set) and known responses to the data (output), and trains

More information

Spatial Topology of Equitemporal Points on Signatures for Retrieval

Spatial Topology of Equitemporal Points on Signatures for Retrieval Spatial Topology of Equitemporal Points on Signatures for Retrieval D.S. Guru, H.N. Prakash, and T.N. Vikram Dept of Studies in Computer Science,University of Mysore, Mysore - 570 006, India dsg@compsci.uni-mysore.ac.in,

More information

Design of Digital Signature Verification Algorithm using Relative Slopemethod

Design of Digital Signature Verification Algorithm using Relative Slopemethod Design of Digital Signature Verification Algorithm using Relative Slopemethod Prof. Miss. P.N.Ganorkar, Dept.of Computer Engineering SRPCE,Nagpur (Maharashtra), India Email:prachiti.ganorkar@gmail.com

More information

Indian Multi-Script Full Pin-code String Recognition for Postal Automation

Indian Multi-Script Full Pin-code String Recognition for Postal Automation 2009 10th International Conference on Document Analysis and Recognition Indian Multi-Script Full Pin-code String Recognition for Postal Automation U. Pal 1, R. K. Roy 1, K. Roy 2 and F. Kimura 3 1 Computer

More information

Retrieval of Offline Handwritten Signatures

Retrieval of Offline Handwritten Signatures Retrieval of Offline Handwritten Signatures H.N. Prakash Department of Studies in Computer Science, University of Mysore, Manasagangothri, Mysore-57 6, India D. S. Guru Department of Studies in Computer

More information

IMPROVED FACE RECOGNITION USING ICP TECHNIQUES INCAMERA SURVEILLANCE SYSTEMS. Kirthiga, M.E-Communication system, PREC, Thanjavur

IMPROVED FACE RECOGNITION USING ICP TECHNIQUES INCAMERA SURVEILLANCE SYSTEMS. Kirthiga, M.E-Communication system, PREC, Thanjavur IMPROVED FACE RECOGNITION USING ICP TECHNIQUES INCAMERA SURVEILLANCE SYSTEMS Kirthiga, M.E-Communication system, PREC, Thanjavur R.Kannan,Assistant professor,prec Abstract: Face Recognition is important

More information

Writer Recognizer for Offline Text Based on SIFT

Writer Recognizer for Offline Text Based on SIFT Available Online at www.ijcsmc.com International Journal of Computer Science and Mobile Computing A Monthly Journal of Computer Science and Information Technology IJCSMC, Vol. 4, Issue. 5, May 2015, pg.1057

More information

Word-wise Script Identification from Video Frames

Word-wise Script Identification from Video Frames Word-wise Script Identification from Video Frames Author Sharma, Nabin, Chanda, Sukalpa, Pal, Umapada, Blumenstein, Michael Published 2013 Conference Title Proceedings 12th International Conference on

More information

Approach to Increase Accuracy of Multimodal Biometric System for Feature Level Fusion

Approach to Increase Accuracy of Multimodal Biometric System for Feature Level Fusion Approach to Increase Accuracy of Multimodal Biometric System for Feature Level Fusion Er. Munish Kumar, Er. Prabhjit Singh M-Tech(Scholar) Global Institute of Management and Emerging Technology Assistant

More information

A FRAMEWORK OF EXTRACTING MULTI-SCALE FEATURES USING MULTIPLE CONVOLUTIONAL NEURAL NETWORKS. Kuan-Chuan Peng and Tsuhan Chen

A FRAMEWORK OF EXTRACTING MULTI-SCALE FEATURES USING MULTIPLE CONVOLUTIONAL NEURAL NETWORKS. Kuan-Chuan Peng and Tsuhan Chen A FRAMEWORK OF EXTRACTING MULTI-SCALE FEATURES USING MULTIPLE CONVOLUTIONAL NEURAL NETWORKS Kuan-Chuan Peng and Tsuhan Chen School of Electrical and Computer Engineering, Cornell University, Ithaca, NY

More information

Content-based Information Retrieval from Handwritten Documents

Content-based Information Retrieval from Handwritten Documents Content-based Information Retrieval from Handwritten Documents Sargur Srihari, Chen Huang and Harish Srinivasan Center of Excellence for Document Analysis and Recognition (CEDAR) University at Buffalo,

More information

DEVANAGARI SCRIPT SEPARATION AND RECOGNITION USING MORPHOLOGICAL OPERATIONS AND OPTIMIZED FEATURE EXTRACTION METHODS

DEVANAGARI SCRIPT SEPARATION AND RECOGNITION USING MORPHOLOGICAL OPERATIONS AND OPTIMIZED FEATURE EXTRACTION METHODS DEVANAGARI SCRIPT SEPARATION AND RECOGNITION USING MORPHOLOGICAL OPERATIONS AND OPTIMIZED FEATURE EXTRACTION METHODS Sushilkumar N. Holambe Dr. Ulhas B. Shinde Shrikant D. Mali Persuing PhD at Principal

More information

RULE BASED SIGNATURE VERIFICATION AND FORGERY DETECTION

RULE BASED SIGNATURE VERIFICATION AND FORGERY DETECTION RULE BASED SIGNATURE VERIFICATION AND FORGERY DETECTION M. Hanmandlu Multimedia University Jalan Multimedia 63100, Cyberjaya Selangor, Malaysia E-mail:madasu.hanmandlu@mmu.edu.my M. Vamsi Krishna Dept.

More information

A System for Automatic Extraction of the User Entered Data from Bankchecks

A System for Automatic Extraction of the User Entered Data from Bankchecks A System for Automatic Extraction of the User Entered Data from Bankchecks ALESSANDRO L. KOERICH 1 LEE LUAN LING 2 1 CEFET/PR Centro Federal de Educação Tecnológica do Paraná Av. Sete de Setembro, 3125,

More information

CHAPTER 1 INTRODUCTION

CHAPTER 1 INTRODUCTION CHAPTER 1 INTRODUCTION 1.1 Introduction Pattern recognition is a set of mathematical, statistical and heuristic techniques used in executing `man-like' tasks on computers. Pattern recognition plays an

More information

PCA-based Offline Handwritten Character Recognition System

PCA-based Offline Handwritten Character Recognition System Smart Computing Review, vol. 3, no. 5, October 2013 346 Smart Computing Review PCA-based Offline Handwritten Character Recognition System Munish Kumar 1, M. K. Jindal 2, and R. K. Sharma 3 1 Computer Science

More information

Cursive Handwriting Recognition System Using Feature Extraction and Artificial Neural Network

Cursive Handwriting Recognition System Using Feature Extraction and Artificial Neural Network Cursive Handwriting Recognition System Using Feature Extraction and Artificial Neural Network Utkarsh Dwivedi 1, Pranjal Rajput 2, Manish Kumar Sharma 3 1UG Scholar, Dept. of CSE, GCET, Greater Noida,

More information

An Application of the 2D Gaussian Filter for Enhancing Feature Extraction in Off-line Signature Verification

An Application of the 2D Gaussian Filter for Enhancing Feature Extraction in Off-line Signature Verification 2011 International Conference on Document Analysis and Recognition An Application of the 2D Gaussian Filter for Enhancing Feature Extraction in Off-line Signature Verification Vu Nguyen and Michael Blumenstein

More information

A Combined Method for On-Line Signature Verification

A Combined Method for On-Line Signature Verification BULGARIAN ACADEMY OF SCIENCES CYBERNETICS AND INFORMATION TECHNOLOGIES Volume 14, No 2 Sofia 2014 Print ISSN: 1311-9702; Online ISSN: 1314-4081 DOI: 10.2478/cait-2014-0022 A Combined Method for On-Line

More information

6. Multimodal Biometrics

6. Multimodal Biometrics 6. Multimodal Biometrics Multimodal biometrics is based on combination of more than one type of biometric modalities or traits. The most compelling reason to combine different modalities is to improve

More information

Projected Texture for Hand Geometry based Authentication

Projected Texture for Hand Geometry based Authentication Projected Texture for Hand Geometry based Authentication Avinash Sharma Nishant Shobhit Anoop Namboodiri Center for Visual Information Technology International Institute of Information Technology, Hyderabad,

More information

A THREE LAYERED MODEL TO PERFORM CHARACTER RECOGNITION FOR NOISY IMAGES

A THREE LAYERED MODEL TO PERFORM CHARACTER RECOGNITION FOR NOISY IMAGES INTERNATIONAL JOURNAL OF RESEARCH IN COMPUTER APPLICATIONSAND ROBOTICS ISSN 2320-7345 A THREE LAYERED MODEL TO PERFORM CHARACTER RECOGNITION FOR NOISY IMAGES 1 Neha, 2 Anil Saroliya, 3 Varun Sharma 1,

More information

Su et al. Shape Descriptors - III

Su et al. Shape Descriptors - III Su et al. Shape Descriptors - III Siddhartha Chaudhuri http://www.cse.iitb.ac.in/~cs749 Funkhouser; Feng, Liu, Gong Recap Global A shape descriptor is a set of numbers that describes a shape in a way that

More information

Individuality of Handwritten Characters

Individuality of Handwritten Characters Accepted by the 7th International Conference on Document Analysis and Recognition, Edinburgh, Scotland, August 3-6, 2003. (Paper ID: 527) Individuality of Handwritten s Bin Zhang Sargur N. Srihari Sangjik

More information

On-line Signature Verification on a Mobile Platform

On-line Signature Verification on a Mobile Platform On-line Signature Verification on a Mobile Platform Nesma Houmani, Sonia Garcia-Salicetti, Bernadette Dorizzi, and Mounim El-Yacoubi Institut Telecom; Telecom SudParis; Intermedia Team, 9 rue Charles Fourier,

More information

Fingerprint Recognition using Texture Features

Fingerprint Recognition using Texture Features Fingerprint Recognition using Texture Features Manidipa Saha, Jyotismita Chaki, Ranjan Parekh,, School of Education Technology, Jadavpur University, Kolkata, India Abstract: This paper proposes an efficient

More information

CHAPTER 8 COMPOUND CHARACTER RECOGNITION USING VARIOUS MODELS

CHAPTER 8 COMPOUND CHARACTER RECOGNITION USING VARIOUS MODELS CHAPTER 8 COMPOUND CHARACTER RECOGNITION USING VARIOUS MODELS 8.1 Introduction The recognition systems developed so far were for simple characters comprising of consonants and vowels. But there is one

More information

ISSN: ISO 9001:2008 Certified International Journal of Engineering Science and Innovative Technology (IJESIT) Volume 2, Issue 4, July 2013

ISSN: ISO 9001:2008 Certified International Journal of Engineering Science and Innovative Technology (IJESIT) Volume 2, Issue 4, July 2013 Offline Handwritten Signatures Classification Using Wavelets and Support Vector Machines Poornima G Patil, Ravindra S Hegadi Dayananda Sagar Institutions Bangalore, Solapur University Solapur Abstract

More information

Automatic Static Signature Verification Systems: A Review

Automatic Static Signature Verification Systems: A Review Automatic Static Signature Verification Systems: A Review 1 Vitthal K. Bhosale1 Dr. Anil R. Karwankar2 1 PG Student, Government College of Engineering, Aurangabad (M.S.), 2 Assistant Professor, Dept. Of

More information

Handwritten Devanagari Character Recognition Model Using Neural Network

Handwritten Devanagari Character Recognition Model Using Neural Network Handwritten Devanagari Character Recognition Model Using Neural Network Gaurav Jaiswal M.Sc. (Computer Science) Department of Computer Science Banaras Hindu University, Varanasi. India gauravjais88@gmail.com

More information

International Journal of Scientific Research & Engineering Trends Volume 4, Issue 6, Nov-Dec-2018, ISSN (Online): X

International Journal of Scientific Research & Engineering Trends Volume 4, Issue 6, Nov-Dec-2018, ISSN (Online): X Analysis about Classification Techniques on Categorical Data in Data Mining Assistant Professor P. Meena Department of Computer Science Adhiyaman Arts and Science College for Women Uthangarai, Krishnagiri,

More information

A System for Joining and Recognition of Broken Bangla Numerals for Indian Postal Automation

A System for Joining and Recognition of Broken Bangla Numerals for Indian Postal Automation A System for Joining and Recognition of Broken Bangla Numerals for Indian Postal Automation K. Roy, U. Pal and B. B. Chaudhuri CVPR Unit; Indian Statistical Institute, Kolkata-108; India umapada@isical.ac.in

More information

Complementary Features Combined in a MLP-based System to Recognize Handwritten Devnagari Character

Complementary Features Combined in a MLP-based System to Recognize Handwritten Devnagari Character Journal of Information Hiding and Multimedia Signal Processing 2011 ISSN 2073-4212 Ubiquitous International Volume 2, Number 1, January 2011 Complementary Features Combined in a MLP-based System to Recognize

More information

A Study on the Consistency of Features for On-line Signature Verification

A Study on the Consistency of Features for On-line Signature Verification A Study on the Consistency of Features for On-line Signature Verification Center for Unified Biometrics and Sensors State University of New York at Buffalo Amherst, NY 14260 {hlei,govind}@cse.buffalo.edu

More information

Security Evaluation of Online Signature Verification System using Webcams

Security Evaluation of Online Signature Verification System using Webcams Security Evaluation of Online Signature Verification System using Webcams T.Venkatesh Research Scholar, K.L.University, A.P.,India Balaji.S Professor, K.L.University, A.P.,India. Chakravarthy A S N Professor,

More information

Chain Code Histogram based approach

Chain Code Histogram based approach An attempt at visualizing the Fourth Dimension Take a point, stretch it into a line, curl it into a circle, twist it into a sphere, and punch through the sphere Albert Einstein Chain Code Histogram based

More information

A Laplacian Based Novel Approach to Efficient Text Localization in Grayscale Images

A Laplacian Based Novel Approach to Efficient Text Localization in Grayscale Images A Laplacian Based Novel Approach to Efficient Text Localization in Grayscale Images Karthik Ram K.V & Mahantesh K Department of Electronics and Communication Engineering, SJB Institute of Technology, Bangalore,

More information

An Exploration of Computer Vision Techniques for Bird Species Classification

An Exploration of Computer Vision Techniques for Bird Species Classification An Exploration of Computer Vision Techniques for Bird Species Classification Anne L. Alter, Karen M. Wang December 15, 2017 Abstract Bird classification, a fine-grained categorization task, is a complex

More information

Spotting Words in Latin, Devanagari and Arabic Scripts

Spotting Words in Latin, Devanagari and Arabic Scripts Spotting Words in Latin, Devanagari and Arabic Scripts Sargur N. Srihari, Harish Srinivasan, Chen Huang and Shravya Shetty {srihari,hs32,chuang5,sshetty}@cedar.buffalo.edu Center of Excellence for Document

More information

Handwritten Marathi Character Recognition on an Android Device

Handwritten Marathi Character Recognition on an Android Device Handwritten Marathi Character Recognition on an Android Device Tanvi Zunjarrao 1, Uday Joshi 2 1MTech Student, Computer Engineering, KJ Somaiya College of Engineering,Vidyavihar,India 2Associate Professor,

More information

Online Signature Verification System using DRT, DCT and K-NN Classifier

Online Signature Verification System using DRT, DCT and K-NN Classifier IJIRST International Journal for Innovative Research in Science & Technology Volume 3 Issue 01 June 2016 ISSN (online): 2349-6010 Online Signature Verification System using DRT, DCT and K-NN Classifier

More information

Incorporating Touch Biometrics to Mobile One-Time Passwords: Exploration of Digits

Incorporating Touch Biometrics to Mobile One-Time Passwords: Exploration of Digits Incorporating Touch Biometrics to Mobile One-Time Passwords: Exploration of Digits Ruben Tolosana, Ruben Vera-Rodriguez, Julian Fierrez and Javier Ortega-Garcia BiDA Lab- Biometrics and Data Pattern Analytics

More information

SEVERAL METHODS OF FEATURE EXTRACTION TO HELP IN OPTICAL CHARACTER RECOGNITION

SEVERAL METHODS OF FEATURE EXTRACTION TO HELP IN OPTICAL CHARACTER RECOGNITION SEVERAL METHODS OF FEATURE EXTRACTION TO HELP IN OPTICAL CHARACTER RECOGNITION Binod Kumar Prasad * * Bengal College of Engineering and Technology, Durgapur, W.B., India. Rajdeep Kundu 2 2 Bengal College

More information

Gurmeet Kaur 1, Parikshit 2, Dr. Chander Kant 3 1 M.tech Scholar, Assistant Professor 2, 3

Gurmeet Kaur 1, Parikshit 2, Dr. Chander Kant 3 1 M.tech Scholar, Assistant Professor 2, 3 Volume 8 Issue 2 March 2017 - Sept 2017 pp. 72-80 available online at www.csjournals.com A Novel Approach to Improve the Biometric Security using Liveness Detection Gurmeet Kaur 1, Parikshit 2, Dr. Chander

More information

A Survey of Problems of Overlapped Handwritten Characters in Recognition process for Gurmukhi Script

A Survey of Problems of Overlapped Handwritten Characters in Recognition process for Gurmukhi Script A Survey of Problems of Overlapped Handwritten Characters in Recognition process for Gurmukhi Script Arwinder Kaur 1, Ashok Kumar Bathla 2 1 M. Tech. Student, CE Dept., 2 Assistant Professor, CE Dept.,

More information

Finger Vein Biometric Approach for Personal Identification Using IRT Feature and Gabor Filter Implementation

Finger Vein Biometric Approach for Personal Identification Using IRT Feature and Gabor Filter Implementation Finger Vein Biometric Approach for Personal Identification Using IRT Feature and Gabor Filter Implementation Sowmya. A (Digital Electronics (MTech), BITM Ballari), Shiva kumar k.s (Associate Professor,

More information

Segmentation of Kannada Handwritten Characters and Recognition Using Twelve Directional Feature Extraction Techniques

Segmentation of Kannada Handwritten Characters and Recognition Using Twelve Directional Feature Extraction Techniques Segmentation of Kannada Handwritten Characters and Recognition Using Twelve Directional Feature Extraction Techniques 1 Lohitha B.J, 2 Y.C Kiran 1 M.Tech. Student Dept. of ISE, Dayananda Sagar College

More information

Structural Feature Extraction to recognize some of the Offline Isolated Handwritten Gujarati Characters using Decision Tree Classifier

Structural Feature Extraction to recognize some of the Offline Isolated Handwritten Gujarati Characters using Decision Tree Classifier Structural Feature Extraction to recognize some of the Offline Isolated Handwritten Gujarati Characters using Decision Tree Classifier Hetal R. Thaker Atmiya Institute of Technology & science, Kalawad

More information

A Novel Automated Approach for Offline Signature Verification Based on Shape Matrix

A Novel Automated Approach for Offline Signature Verification Based on Shape Matrix A Novel Automated Approach for Offline Signature Verification Based on Shape Matrix Sumbal Iqbal Ahmed Peshawar Pakistan Rashid Jalal Qureshi Emirates Aviation University Dubai,UAE Imran Khan Peshawar,

More information

Traffic Signs Recognition using HP and HOG Descriptors Combined to MLP and SVM Classifiers

Traffic Signs Recognition using HP and HOG Descriptors Combined to MLP and SVM Classifiers Traffic Signs Recognition using HP and HOG Descriptors Combined to MLP and SVM Classifiers A. Salhi, B. Minaoui, M. Fakir, H. Chakib, H. Grimech Faculty of science and Technology Sultan Moulay Slimane

More information

Encryption of Text Using Fingerprints

Encryption of Text Using Fingerprints Encryption of Text Using Fingerprints Abhishek Sharma 1, Narendra Kumar 2 1 Master of Technology, Information Security Management, Dehradun Institute of Technology, Dehradun, India 2 Assistant Professor,

More information

A Survey on Feature Extraction Techniques for Palmprint Identification

A Survey on Feature Extraction Techniques for Palmprint Identification International Journal Of Computational Engineering Research (ijceronline.com) Vol. 03 Issue. 12 A Survey on Feature Extraction Techniques for Palmprint Identification Sincy John 1, Kumudha Raimond 2 1

More information

ECE 5470 Classification, Machine Learning, and Neural Network Review

ECE 5470 Classification, Machine Learning, and Neural Network Review ECE 5470 Classification, Machine Learning, and Neural Network Review Due December 1. Solution set Instructions: These questions are to be answered on this document which should be submitted to blackboard

More information

CHAPTER 5 FEASIBILITY STUDY ON 3D BIOMETRIC AUTHENTICATION MECHANISM

CHAPTER 5 FEASIBILITY STUDY ON 3D BIOMETRIC AUTHENTICATION MECHANISM 107 CHAPTER 5 FEASIBILITY STUDY ON 3D BIOMETRIC AUTHENTICATION MECHANISM 5.1 AUTHENTICATION MECHANISMS Authentication is the process of establishing whether a peer is who or what it claims to be in a particular

More information

Event Based Offline Signature Modeling Using Grid Source Probabilistic Coding

Event Based Offline Signature Modeling Using Grid Source Probabilistic Coding Event Based Offline Signature Modeling Using Grid Source Probabilistic Coding Konstantina Barkoula 1, Elias Zois 2, Evangelos Zervas 2, and George Economou 1 1 Physics Dept., University of Patras, Patras,

More information

Kaggle Data Science Bowl 2017 Technical Report

Kaggle Data Science Bowl 2017 Technical Report Kaggle Data Science Bowl 2017 Technical Report qfpxfd Team May 11, 2017 1 Team Members Table 1: Team members Name E-Mail University Jia Ding dingjia@pku.edu.cn Peking University, Beijing, China Aoxue Li

More information

wavelet packet transform

wavelet packet transform Research Journal of Engineering Sciences ISSN 2278 9472 Combining left and right palmprint for enhanced security using discrete wavelet packet transform Abstract Komal Kashyap * and Ekta Tamrakar Department

More information

Writer Identification In Music Score Documents Without Staff-Line Removal

Writer Identification In Music Score Documents Without Staff-Line Removal Writer Identification In Music Score Documents Without Staff-Line Removal Anirban Hati, Partha P. Roy and Umapada Pal Computer Vision and Pattern Recognition Unit Indian Statistical Institute Kolkata,

More information

Off-Line Multi-Script Writer Identification using AR Coefficients

Off-Line Multi-Script Writer Identification using AR Coefficients 2009 10th International Conference on Document Analysis and Recognition Off-Line Multi-Script Writer Identification using AR Coefficients Utpal Garain Indian Statistical Institute 203, B.. Road, Kolkata

More information

Touchless Fingerprint recognition using MATLAB

Touchless Fingerprint recognition using MATLAB International Journal of Innovation and Scientific Research ISSN 2351-814 Vol. 1 No. 2 Oct. 214, pp. 458-465 214 Innovative Space of Scientific Research Journals http://www.ijisr.issr-journals.org/ Touchless

More information

HANDWRITTEN GURMUKHI CHARACTER RECOGNITION USING WAVELET TRANSFORMS

HANDWRITTEN GURMUKHI CHARACTER RECOGNITION USING WAVELET TRANSFORMS International Journal of Electronics, Communication & Instrumentation Engineering Research and Development (IJECIERD) ISSN 2249-684X Vol.2, Issue 3 Sep 2012 27-37 TJPRC Pvt. Ltd., HANDWRITTEN GURMUKHI

More information

DEFORMABLE MATCHING OF HAND SHAPES FOR USER VERIFICATION. Ani1 K. Jain and Nicolae Duta

DEFORMABLE MATCHING OF HAND SHAPES FOR USER VERIFICATION. Ani1 K. Jain and Nicolae Duta DEFORMABLE MATCHING OF HAND SHAPES FOR USER VERIFICATION Ani1 K. Jain and Nicolae Duta Department of Computer Science and Engineering Michigan State University, East Lansing, MI 48824-1026, USA E-mail:

More information

Isolated Curved Gurmukhi Character Recognition Using Projection of Gradient

Isolated Curved Gurmukhi Character Recognition Using Projection of Gradient International Journal of Computational Intelligence Research ISSN 0973-1873 Volume 13, Number 6 (2017), pp. 1387-1396 Research India Publications http://www.ripublication.com Isolated Curved Gurmukhi Character

More information

Off-line Signature Verification Using Enhanced Modified Direction Features in Conjunction with Neural Classifiers and Support Vector Machines

Off-line Signature Verification Using Enhanced Modified Direction Features in Conjunction with Neural Classifiers and Support Vector Machines Off-line Signature Verification Using Enhanced Modified Direction Features in Conjunction with Neural Classifiers and Support Vector Machines Author Nguyen, Vu, Blumenstein, Michael, Muthukkumarasamy,

More information

arxiv: v1 [cs.cv] 16 Nov 2015

arxiv: v1 [cs.cv] 16 Nov 2015 Coarse-to-fine Face Alignment with Multi-Scale Local Patch Regression Zhiao Huang hza@megvii.com Erjin Zhou zej@megvii.com Zhimin Cao czm@megvii.com arxiv:1511.04901v1 [cs.cv] 16 Nov 2015 Abstract Facial

More information

Offline Signature verification and recognition using ART 1

Offline Signature verification and recognition using ART 1 Offline Signature verification and recognition using ART 1 R. Sukanya K.Malathy M.E Infant Jesus College of Engineering And Technology Abstract: The main objective of this project is signature verification

More information

Offline Signature Verification using Feature Point Extraction

Offline Signature Verification using Feature Point Extraction Offline Signature Verification using Feature Point S.N. Gunjal Computer Engg. Dept SRES s College of Engineering, Kopargaon-423603. Maharashtra (India) B.J. Dange Computer Engg. Dept SRES s College of

More information

A Simplistic Way of Feature Extraction Directed towards a Better Recognition Accuracy

A Simplistic Way of Feature Extraction Directed towards a Better Recognition Accuracy International Journal of Engineering Research and Development e-issn: 2278-067X, p-issn: 2278-800X, www.ijerd.com Volume 3, Issue 7 (September 2012), PP. 43-49 A Simplistic Way of Feature Extraction Directed

More information

Keras: Handwritten Digit Recognition using MNIST Dataset

Keras: Handwritten Digit Recognition using MNIST Dataset Keras: Handwritten Digit Recognition using MNIST Dataset IIT PATNA February 9, 2017 1 / 24 OUTLINE 1 Introduction Keras: Deep Learning library for Theano and TensorFlow 2 Installing Keras Installation

More information

Learning to Recognize Faces in Realistic Conditions

Learning to Recognize Faces in Realistic Conditions 000 001 002 003 004 005 006 007 008 009 010 011 012 013 014 015 016 017 018 019 020 021 022 023 024 025 026 027 028 029 030 031 032 033 034 035 036 037 038 039 040 041 042 043 044 045 046 047 048 049 050

More information

CHAPTER 6 PERFORMANCE ANALYSIS OF SOFT COMPUTING BASED FACE RECOGNITION

CHAPTER 6 PERFORMANCE ANALYSIS OF SOFT COMPUTING BASED FACE RECOGNITION 137 CHAPTER 6 PERFORMANCE ANALYSIS OF SOFT COMPUTING BASED FACE RECOGNITION In the previous chapters, a brief description about the theory and experimental results of PCA, FLDA, Gabor, Neural, Db wavelets

More information

A Novel Data Encryption Technique by Genetic Crossover of Robust Finger Print Based Key and Handwritten Signature Key

A Novel Data Encryption Technique by Genetic Crossover of Robust Finger Print Based Key and Handwritten Signature Key www.ijcsi.org 209 A Novel Data Encryption Technique by Genetic Crossover of Robust Finger Print Based Key and Handwritten Signature Key Tanmay Bhattacharya 1, Sirshendu Hore 2 and S. R. Bhadra Chaudhuri

More information

Object Detection Lecture Introduction to deep learning (CNN) Idar Dyrdal

Object Detection Lecture Introduction to deep learning (CNN) Idar Dyrdal Object Detection Lecture 10.3 - Introduction to deep learning (CNN) Idar Dyrdal Deep Learning Labels Computational models composed of multiple processing layers (non-linear transformations) Used to learn

More information

Keywords Palmprint recognition, patterns, features

Keywords Palmprint recognition, patterns, features Volume 7, Issue 3, March 2017 ISSN: 2277 128X International Journal of Advanced Research in Computer Science and Software Engineering Research Paper Available online at: www.ijarcsse.com A Review on Palm

More information