Fingerprint Mosaicking by Rolling with Sliding

Size: px
Start display at page:

Download "Fingerprint Mosaicking by Rolling with Sliding"

Transcription

1 Fingerprint Mosaicking by Rolling with Sliding Kyoungtaek Choi, Hunjae Park, Hee-seung Choi and Jaihie Kim Department of Electrical and Electronic Engineering,Yonsei University Biometrics Engineering Research Center, Seoul, Korea Abstract. 1 Introduction Numerous fingerprint-based verification systems have been widely adopted throughout the modern world, since these systems are convenient to use and relatively superior to other biometric systems in terms of price and performance. One advantage of small sensors (e.g., solid-state sensors) is that they can be used with many applications (e.g., laptops, cellular phones). However, information about the fingerprint is limited due to the small physical size of the sensing area, as shown in Fig.. (a) (b) Fig. 1. Fingerprint images captured by a large sensor and smaller one : (a) a fingerprint image captured by a large sensor, (b) a fingerprint image captured by a small sensor Therefore, the overlap between the template impression and the query impression produces inferior results, for example, a higher rate of false rejects. To overcome this problem, some researchers have explored the field of fingerprint fusion. The fingerprint fusion algorithm can be categorized largely into two types. The first type fuses feature sets from several fingerprint images; the second type produces mosaic fingerprint images. At the feature level, the fusion algorithm is very simple, and also, its recognition performance is better than that of a non-fusion system. However, it is difficult to apply it to existing systems which use features different from those used in the feature level fusion algorithm. It is

2 also difficult to add new features to the system. Several researchers have studied fusion systems at an image level. Jain and Lee captured several impressions by dabbing a finger on a small sensor and made a mosaic with a rigid transform [1],[2]. Ratha captured sequential impressions by rolling a finger on a large sensor. These kinds of sensors can cover a whole fingerprint and mosaic that print by stitching without calculating the transform among the fingerprints [3]. The multiple impressions captured by the dab approach (as used by Jain and Lee) are very hard to be mosaicked when the overlap between two images is very small, as shown in Fig. 2(a). In addition, the dab approach has little effect on two impressions obtained from a similar portion of a finger, as shown in Fig. 2(b). Therefore, it is difficult to acquire a whole fingerprint when using a small sensor. While the rolling approach (suggested by Ratha) is able to acquire a whole fingerprint, it requires large sensors, as shown in Fig. 2(c). It therefore cannot be applied to systems that use small sensors. (a) (b) (c) Fig. 2. Mosaicked images of previous algorithms : (a) small overlap area, (b) large overlap area, (c) rolled image with a large sensor To capture a whole fingerprint with a small sensor we present a new enrollment scheme and propose a new mosaicking algorithm which mosaics an image sequence captured by our enrollment scheme. Our paper is organized as follows. In Section 2, we describe our enrollment scheme and our system flow chart. In Section 3, we describe an image selection method that rejects a low-quality image from a sequence and a simple stitching method that works without calculating the transform parameter. In Section 4, we describe the image mosaicking process that calculates the local transform parameters between the images and warps one image to the other. The experimental results are shown in Section 5. Finally, conclusions appear in Section 6.

3 2 Fingerprint Enrollment and System Flow Charts To capture whole fingerprint images with small sensors, we present a new enrollment scheme as shown in Fig. 3. The user puts the left side of the finger on a small sensor, as shown in Fig. 3(a). The user rolls the finger on the sensor until the right part of the captured image contains the foreground region of a fingerprint, as shown in Fig. 3(b). The user then slides the finger on the sensor horizontally to acquire the part of the fingerprint that has not yet been captured, as shown in Fig. 3(c) and 3(d). Finally the user rolls the finger again to capture the right side of the finger, as shown in Fig. 3(e). Using this enrollment scheme, we were able to capture a sequence of images of a fingerprint and mosaic the sequence to produce a whole fingerprint. By using our enrollment scheme, we were able to obtain a wider area of a fingerprint with a small sensor than by using the dab approach. Fig. 3. New Enrollment Scheme We have explained how to acquire the horizontal region of a finger, as shown in Fig. 3. We can also acquire the vertical region of a finger by sliding a finger on the sensor vertically, as shown in Fig. 4. Furthermore, we can acquire a whole fingerprint to mosaic the horizontal region and the vertical region of a finger. The algorithm used to mosaic images that were captured by rolling and sliding a finger on the sensor horizontally is very similar to the algorithm that mosaics images that were captured by sliding the finger vertically. In this paper, we will explain only the former algorithm. Fig. 5 shows the flow chart of our algorithm that mosaics a fingerprint image sequence into a wide fingerprint image. In the preprocessing procedure, we segment foreground (fingerprint) and background areas in each frame and reject the motion blurred image. If the translation between the previous frame and the current frame doesn t occur, our algorithm stitches the current frame to the previous one (to expand the foreground region of the previous frame.) If the translation does occur, the algorithm executes the next procedure to mosaic the current frame to the previous one. To mosaic two images, our algorithm uses the global transform parameter to align one image to the other (roughly) and then uses the local transform parameters to align the local image blocks of one image to those of the other image. The corresponding points are considered to be the center points of each block. Finally, we warp one image to the other with

4 (a) (b) Fig. 4. The images captured by sliding vertically : (a) samples captured by sliding vertically, (b) the mosaicked image these corresponding points and mosaic the two images. Each procedure of our algorithm is explained in greater detail in the following sections. Preprocessing Estimation of a Global Parameter Hierarchical Block Matching Global Translation Vector Local Translation Vectors Image Warping Assignment of Gray Value Fig. 5. The system flow chart 3 Preprocessing In the preprocessing procedure, we first segment foreground and background areas in an image using the block variance of the image. This is because the background region contains a very low variance in the majority of the optical sensors. After the segmentation, we find the mean and variance of the foreground region and normalize the image, as suggested in [4]. In our enrollment scheme, it is possible that a few images become blurred. Blurring occurs when a user slides the finger on the sensor. These motion-blurred

5 images are rejected with the median value of the tenengrad of each image [5]. (The tenengrad refers to the magnitude of the gradient of an image.) The median value of the tenengrad is computed as T = med 1 N N N N G x (i, j) 2 +G y (i, j) 2 (1) i,j F b k The gradients G x and G y of an image are calculated by the sobel gradient algorithm and then the median value of the tenengrad is calculated in the foreground area blocks. In this case, the size of each block is 8*8 pixels. Fig. 6 shows the median tenengrad values of each frame. In Fig. 6 the tenengrads of motion-blurred images at frame number 17,79,92 are below the threshold (150) that is defined by using 2400 samples. The image at frame number 33 has a very high tenengrad value. After rejecting motion-blurred images, we check if the translation between the current frame and the previous one has occurred. If there has been no translation, we stitch the current frame to the previous one to expand a foreground area with the minimum method as proposed in [3]. To check the occurrence of the translation, we check whether the SAD (Sum of Absolute Difference) in the common foreground region between two frames is below the threshold or not. If the translation has occurred, we divide the current frame into several blocks and find the local translation vector of each block between two frames to mosaic them. In the following section, our image mosaicking procedure is explained in more detail. (17) (33) (79) (92) The Median Tenengrad of a image sequence! threshold Median Tenengrad Image Frame Number Fig. 6. The Median tenengrad of a image sequence

6 4 Image Mosaicking The image mosaicking procedure is divided into three parts. The first part involves searching for a global translation vector, the second part involves hierarchical block matching to find a local translation vector of each image block, and the third part involves the warping and assigning of gray-values to pixels which are found at the boundary between the two frames. 4.1 Searching for a Global Translation Vector We do not consider the rotation parameter between two frames because users slide their fingers horizontally on the sensor. We use the block-matching algorithm proposed by Chen et al to find global translation vectors and local ones [6]. Chen s algorithm allows the translation vector to be searched in a global minimum (like the full-search algorithm). Processing time can be reduced by about 1/10 when using Chen s algorithm. Even though many algorithms are faster than Chen s algorithm, most of them do not guarantee the global minimum solution. Furthermore, these searching algorithms are more likely to be trapped in a local minimum in fingerprint images than in other images, because the pattern of a fingerprint image is similar to a 2D-sinusoidal signal. 4.2 Hierarchical Block Matching After finding a global translation vector, we have to find the local translation vectors hierarchically, as shown in Fig. 7. When the user slides the finger on the sensor, plastic distortion caused by rubbing is inevitable. This makes it hard to align one image to the other exactly when using a global translation vector. To solve this problem, we divide an image into several blocks and find the local translation vector of each block. We then warp one image to the other with these local translation vectors. To find these local translation vectors, we align two frames (roughly) with a global translation vector and set the common foreground area between two frames. The common area is divided into four sub-blocks and each sub-block is divided into four high-level blocks until the smallest block size becomes 16*16 pixels, as shown in Fig. 7. The size of each block is a multiple of 2, so if the size of the common area is not a multiple of 2, the sub-blocks overlap. The smaller the sub-block size, the larger the probability of incorrect searching of the sub-block translation vector. This incorrect searching can be due to image noise, plastic distortion and simple patterns in a small area of a fingerprint image. To find the vectors correctly we implemented a regularization step on the Bayesian theory. The translation vector of the sub-block i in level l+1 is computed as ( ( )) t l+1,i = arg max t k l+1,i P t k /t l+1,i l,i/2 ( ( ) ) = arg max P t l,i/2 /t k P (t k ) t k l+1,i l+1,i l+1,i (2)

7 P (t k l+1,i) = ( ) P t l,i/2 /t k = l+1,i 1 e 2πσ N(S l+1 ) 1 tl,i/2 t k 2 l+1,i 2σ 2 (3) SAD(t k l+1,i ) SAD(t x l+1,i ) (4) t x l+1,i S l+1 We assume that the A-posterior PDF (Probability Density Function) of the translation vector is Gaussian and find the MAP (Maximum A-posterior Probability) solution for the local translation vector. In Eq. 3 t k is the kth translation vector of the block i in level l and the A-posterior probability in the l+1,i translation vector t l,i/2 of the parent block i/2 in level l, is computed as Eq.??. The prior probability of the translation vector t k l+1,i is P (tk l+1,i ) and the size of the searching area for the translation vector is N(S l+1 ). We find the translation vector of each sub-block in each level hierarchically through Eq. 2, as shown in Fig. 7. We define the plastic distortion of each block as the difference between the local translation vector and the global one. The center points of each smallest sub-block are the corresponding points between two images, which can be used in the image warping procedure. (0) f ( 0,0 = f ) golbal Level 0 (1) f 0,1 (1) f 0,0 (1) f 1,1 (1) f 1,0 Level 1 (2) (2) f 2,0 f 2,1 (2) (2) f 3,0 f 3,1 Level 2 Fig. 7. Hierarchical structure for searching the local translation vector 4.3 Warping and Gray-value Assignment After the block translation vectors are estimated, local distortions are compensated for using the point-based warping technique. Every center point of every block is considered a corresponding point when image Q is warped. That is, points derived from a global translation vector are utilized as destination points while source points are defined as translated points by the local translation vectors, as shown in Fig. 8. In the image warping procedure, we use the 2-pass meshwarping algorithm [7]. This algorithm includes Fant s resampling algorithm and

8 uses cublic spline as the interpolation method. The 2-pass mesh-warping algorithm is simple and is well-suited to our algorithm because the center points of the sub-blocks have a lattice structure. After performing the warping procedure, we stitch the image Q to the image P and make the boundary between image Q and P seamless. We define the transition region around the boundary (width is 5 pixels) and assign a gray value of each pixel in this transition region as the weighted sum of the gray values from Image Q and P in equation Eq. 5. In equation Eq.5, x is the distance from the boundary to the pixel position x of image Q. W is the width of the transition region, and t g is a global translation vector t used to align the warped image P to the image Q. Finally, we obtain a mosaicked image from images P and Q. We obtain a wide fingerprint image from an image sequence by applying our algorithm, as shown in Fig. 10. I t (x) = x W I q(x) + (1 x W ) I p(x + t g ) (5) Fig. 8. Illustration of the warping scheme Image Q boundary Transition Region Image P x Fig. 9. Gray value assignment of the boundary between two images 5 Experimental Results To capture fingerprint images We used 4 enrollment schemes as follows 1. A image for each finger enrolled by using the dab approach

9 Fig. 10. the mosaicked image with a fingerprint sequence Table 1. Mosaicking Success Rate # of images our algorithm Random Optimum A mosaicked image with several images enrolled by using the dab approach [2]. 3. A mosaicked image with a sequence of images enrolled by rolling a finger on a large sensor [3]. 4. A mosaicked image with a sequence of images enrolled by our enrollment scheme. We enrolled 100 fingers through 4 enrollment schemes. For 1st and 2nd enrollment sheme we capture 1000 images (10 images per a finger) and for third one we capture 100 rolled images (an image per a finger) and for the last one we capture 100 sequences (a sequence per a finger). The number of images belong to a sequence becomes different by each person. We use the ACCO 1394 sensor whose image size is with 500 dpi resolution. For 1st, 2nd and 4th enrollment shemes, we clipped the center region of an image whose size is Instead of using a small sensor, we used the ACCO 1394 sensor because its frame per second is enough to acquire a sequence enrolled by our enrollment scheme. We compare the mosaicking success rate of Lee s algorithm [2] and ours as shown in Table. 2. The success rate of Lee s algorithm varies according to the base image to which the algorithm align other images. Lee s algorithm has no method how to select the base image among several images, so we select an image among 10 images as a base image and align others to the image. We execute this procedure 1000times (10 times per a finger) by changing the base image. In Table. 2, # of images is the number of images successfully mosaicked and Random is the mosaicking success rate when we select a base image randomly and Optimum is the success rate when we select a base image to align others as well as possible. The success rate of our algorithm is independent of the base image, becase our algorithm aligns the other images to the first enrolled image from a sequence. To show that our enrollment scheme can acquire a wider area of a fingerprint than

10 Table 2. The size of foreground area and the number of minutiae enrollmentscheme our algorithm Random Optimum the dab approach, we measured the size of the foreground area and the number of minutiae from an image enrolled by the dab approach, the mosaicked image of Lee s algorithm, an rolled image and the mosaicked image of our algorithm as shown in Table. 6 Conclusions Acknowledgements This work was supported (in part) by the Biometrics Engineering Research Center, (KOSEF). References [1] A.K. Jain and A. Ross, Fingerprint mosaiking Proc. International Conference on Acoustic Speech and Signal Processing(ICASSP), vol. 4, pp , 2002 [2] Dongjae Lee, Sanghoon Lee, Kyoungtaek Choi and Jaihie Kim, Fingerprint fusion based on minutiae and ridge for enrollment LNCS on Audio-and Video-Based Biometric Person Authentication, vol.2688, pp , Jun [3] N.K. Ratha, J.H. Connell and R.M Bolle, Image mosaicing for rolled fingerprint construction Pattern Recognition, Proceedings. Fourteenth International Conference on, vol.2, pp , Aug [4] Lin Hong, Yifei Wan and A.K. Jain, Fingerprint Image Enhancement Algorithm and Performance Evaluation IEEE Transactions on Pattern Analysis and Machine Intelligence, vol.20, No. 8, pp , Aug [5] NK Chern, PA Neow and MH Ang Jr, Practical issues in pixel-based autofocusing for machine vision Int. Conf. On Robotics and Automation, pp , 2001 [6] Yong-Sheng Chen, Yi-Ping Hung and Chiou-Shann Fuh, Fast block matching algorithm based on the winner-update strategy IEEE Transactions on Image Processing, vol. 10, No. 8, pp , Aug [7] George Wolberg Digital image warping IEEE Computer Society Press, 1988

Preprocessing of a Fingerprint Image Captured with a Mobile Camera

Preprocessing of a Fingerprint Image Captured with a Mobile Camera Preprocessing of a Fingerprint Image Captured with a Mobile Camera Chulhan Lee 1, Sanghoon Lee 1,JaihieKim 1, and Sung-Jae Kim 2 1 Biometrics Engineering Research Center, Department of Electrical and Electronic

More information

Mahmood Fathy Computer Engineering Department Iran University of science and technology Tehran, Iran

Mahmood Fathy Computer Engineering Department Iran University of science and technology Tehran, Iran 1 Alignment-Free Fingerprint Cryptosystem Based On Multiple Fuzzy Vault and Minutia Local Structures Ali Akbar Nasiri Computer Engineering Department Iran University of science and technology Tehran, Iran

More information

Using Support Vector Machines to Eliminate False Minutiae Matches during Fingerprint Verification

Using Support Vector Machines to Eliminate False Minutiae Matches during Fingerprint Verification Using Support Vector Machines to Eliminate False Minutiae Matches during Fingerprint Verification Abstract Praveer Mansukhani, Sergey Tulyakov, Venu Govindaraju Center for Unified Biometrics and Sensors

More information

Implementation of Fingerprint Matching Algorithm

Implementation of Fingerprint Matching Algorithm RESEARCH ARTICLE International Journal of Engineering and Techniques - Volume 2 Issue 2, Mar Apr 2016 Implementation of Fingerprint Matching Algorithm Atul Ganbawle 1, Prof J.A. Shaikh 2 Padmabhooshan

More information

Fingerprint Deformation Models Using Minutiae Locations and Orientations

Fingerprint Deformation Models Using Minutiae Locations and Orientations Fingerprint Deformation Models Using Minutiae Locations and Orientations Yi Chen, Sarat Dass, Arun Ross, and Anil Jain Department of Computer Science and Engineering Michigan State University East Lansing,

More information

Biometric Security System Using Palm print

Biometric Security System Using Palm print ISSN (Online) : 2319-8753 ISSN (Print) : 2347-6710 International Journal of Innovative Research in Science, Engineering and Technology Volume 3, Special Issue 3, March 2014 2014 International Conference

More information

Reducing FMR of Fingerprint Verification by Using the Partial Band of Similarity

Reducing FMR of Fingerprint Verification by Using the Partial Band of Similarity Reducing FMR of Fingerprint Verification by Using the Partial Band of Similarity Seung-Hoon Chae 1,Chang-Ho Seo 2, Yongwha Chung 3, and Sung Bum Pan 4,* 1 Dept. of Information and Communication Engineering,

More information

Local Correlation-based Fingerprint Matching

Local Correlation-based Fingerprint Matching Local Correlation-based Fingerprint Matching Karthik Nandakumar Department of Computer Science and Engineering Michigan State University, MI 48824, U.S.A. nandakum@cse.msu.edu Anil K. Jain Department of

More information

Outline. Incorporating Biometric Quality In Multi-Biometrics FUSION. Results. Motivation. Image Quality: The FVC Experience

Outline. Incorporating Biometric Quality In Multi-Biometrics FUSION. Results. Motivation. Image Quality: The FVC Experience Incorporating Biometric Quality In Multi-Biometrics FUSION QUALITY Julian Fierrez-Aguilar, Javier Ortega-Garcia Biometrics Research Lab. - ATVS Universidad Autónoma de Madrid, SPAIN Loris Nanni, Raffaele

More information

A new approach to reference point location in fingerprint recognition

A new approach to reference point location in fingerprint recognition A new approach to reference point location in fingerprint recognition Piotr Porwik a) and Lukasz Wieclaw b) Institute of Informatics, Silesian University 41 200 Sosnowiec ul. Bedzinska 39, Poland a) porwik@us.edu.pl

More information

Combined Fingerprint Minutiae Template Generation

Combined Fingerprint Minutiae Template Generation Combined Fingerprint Minutiae Template Generation Guruprakash.V 1, Arthur Vasanth.J 2 PG Scholar, Department of EEE, Kongu Engineering College, Perundurai-52 1 Assistant Professor (SRG), Department of

More information

Published by: PIONEER RESEARCH & DEVELOPMENT GROUP (www.prdg.org) 1

Published by: PIONEER RESEARCH & DEVELOPMENT GROUP (www.prdg.org) 1 Minutiae Points Extraction using Biometric Fingerprint- Enhancement Vishal Wagh 1, Shefali Sonavane 2 1 Computer Science and Engineering Department, Walchand College of Engineering, Sangli, Maharashtra-416415,

More information

Comparison of fingerprint enhancement techniques through Mean Square Error and Peak-Signal to Noise Ratio

Comparison of fingerprint enhancement techniques through Mean Square Error and Peak-Signal to Noise Ratio Comparison of fingerprint enhancement techniques through Mean Square Error and Peak-Signal to Noise Ratio M. M. Kazi A. V. Mane R. R. Manza, K. V. Kale, Professor and Head, Abstract In the fingerprint

More information

BIOMET: A Multimodal Biometric Authentication System for Person Identification and Verification using Fingerprint and Face Recognition

BIOMET: A Multimodal Biometric Authentication System for Person Identification and Verification using Fingerprint and Face Recognition BIOMET: A Multimodal Biometric Authentication System for Person Identification and Verification using Fingerprint and Face Recognition Hiren D. Joshi Phd, Dept. of Computer Science Rollwala Computer Centre

More information

Filterbank-Based Fingerprint Matching. Multimedia Systems Project. Niveditha Amarnath Samir Shah

Filterbank-Based Fingerprint Matching. Multimedia Systems Project. Niveditha Amarnath Samir Shah Filterbank-Based Fingerprint Matching Multimedia Systems Project Niveditha Amarnath Samir Shah Presentation overview Introduction Background Algorithm Limitations and Improvements Conclusions and future

More information

Stereo Vision Image Processing Strategy for Moving Object Detecting

Stereo Vision Image Processing Strategy for Moving Object Detecting Stereo Vision Image Processing Strategy for Moving Object Detecting SHIUH-JER HUANG, FU-REN YING Department of Mechanical Engineering National Taiwan University of Science and Technology No. 43, Keelung

More information

A Fast Circular Edge Detector for the Iris Region Segmentation

A Fast Circular Edge Detector for the Iris Region Segmentation A Fast Circular Edge Detector for the Iris Region Segmentation Yeunggyu Park, Hoonju Yun, Myongseop Song, and Jaihie Kim I.V. Lab. Dept. of Electrical and Computer Engineering, Yonsei University, 134Shinchon-dong,

More information

Implementation of the USB Token System for Fingerprint Verification

Implementation of the USB Token System for Fingerprint Verification Implementation of the USB Token System for Fingerprint Verification Daesung Moon, Youn Hee Gil, Sung Bum Pan, and Yongwha Chung Biometrics Technology Research Team, ETRI, Daejeon, Korea {daesung, yhgil,

More information

Ujma A. Mulla 1 1 PG Student of Electronics Department of, B.I.G.C.E., Solapur, Maharashtra, India. IJRASET: All Rights are Reserved

Ujma A. Mulla 1 1 PG Student of Electronics Department of, B.I.G.C.E., Solapur, Maharashtra, India. IJRASET: All Rights are Reserved Generate new identity from fingerprints for privacy protection Ujma A. Mulla 1 1 PG Student of Electronics Department of, B.I.G.C.E., Solapur, Maharashtra, India Abstract : We propose here a novel system

More information

A GABOR FILTER-BASED APPROACH TO FINGERPRINT RECOGNITION

A GABOR FILTER-BASED APPROACH TO FINGERPRINT RECOGNITION A GABOR FILTER-BASED APPROACH TO FINGERPRINT RECOGNITION Chih-Jen Lee and Sheng-De Wang Dept. of Electrical Engineering EE Building, Rm. 441 National Taiwan University Taipei 106, TAIWAN sdwang@hpc.ee.ntu.edu.tw

More information

REINFORCED FINGERPRINT MATCHING METHOD FOR AUTOMATED FINGERPRINT IDENTIFICATION SYSTEM

REINFORCED FINGERPRINT MATCHING METHOD FOR AUTOMATED FINGERPRINT IDENTIFICATION SYSTEM REINFORCED FINGERPRINT MATCHING METHOD FOR AUTOMATED FINGERPRINT IDENTIFICATION SYSTEM 1 S.Asha, 2 T.Sabhanayagam 1 Lecturer, Department of Computer science and Engineering, Aarupadai veedu institute of

More information

AN EFFICIENT BINARIZATION TECHNIQUE FOR FINGERPRINT IMAGES S. B. SRIDEVI M.Tech., Department of ECE

AN EFFICIENT BINARIZATION TECHNIQUE FOR FINGERPRINT IMAGES S. B. SRIDEVI M.Tech., Department of ECE AN EFFICIENT BINARIZATION TECHNIQUE FOR FINGERPRINT IMAGES S. B. SRIDEVI M.Tech., Department of ECE sbsridevi89@gmail.com 287 ABSTRACT Fingerprint identification is the most prominent method of biometric

More information

Fingerprint Mosaicking &

Fingerprint Mosaicking & 72 1. New matching methods for comparing the ridge feature maps of two images. 2. Development of fusion architectures to improve performance of the hybrid matcher. 3. Constructing the ridge feature maps

More information

Finger Print Enhancement Using Minutiae Based Algorithm

Finger Print Enhancement Using Minutiae Based Algorithm 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. 3, Issue. 8, August 2014,

More information

Robust biometric image watermarking for fingerprint and face template protection

Robust biometric image watermarking for fingerprint and face template protection Robust biometric image watermarking for fingerprint and face template protection Mayank Vatsa 1, Richa Singh 1, Afzel Noore 1a),MaxM.Houck 2, and Keith Morris 2 1 West Virginia University, Morgantown,

More information

Development of an Automated Fingerprint Verification System

Development of an Automated Fingerprint Verification System Development of an Automated Development of an Automated Fingerprint Verification System Fingerprint Verification System Martin Saveski 18 May 2010 Introduction Biometrics the use of distinctive anatomical

More information

Verifying Fingerprint Match by Local Correlation Methods

Verifying Fingerprint Match by Local Correlation Methods Verifying Fingerprint Match by Local Correlation Methods Jiang Li, Sergey Tulyakov and Venu Govindaraju Abstract Most fingerprint matching algorithms are based on finding correspondences between minutiae

More information

FILTERBANK-BASED FINGERPRINT MATCHING. Dinesh Kapoor(2005EET2920) Sachin Gajjar(2005EET3194) Himanshu Bhatnagar(2005EET3239)

FILTERBANK-BASED FINGERPRINT MATCHING. Dinesh Kapoor(2005EET2920) Sachin Gajjar(2005EET3194) Himanshu Bhatnagar(2005EET3239) FILTERBANK-BASED FINGERPRINT MATCHING Dinesh Kapoor(2005EET2920) Sachin Gajjar(2005EET3194) Himanshu Bhatnagar(2005EET3239) Papers Selected FINGERPRINT MATCHING USING MINUTIAE AND TEXTURE FEATURES By Anil

More information

Feature-level Fusion for Effective Palmprint Authentication

Feature-level Fusion for Effective Palmprint Authentication Feature-level Fusion for Effective Palmprint Authentication Adams Wai-Kin Kong 1, 2 and David Zhang 1 1 Biometric Research Center, Department of Computing The Hong Kong Polytechnic University, Kowloon,

More information

Logical Templates for Feature Extraction in Fingerprint Images

Logical Templates for Feature Extraction in Fingerprint Images Logical Templates for Feature Extraction in Fingerprint Images Bir Bhanu, Michael Boshra and Xuejun Tan Center for Research in Intelligent Systems University of Califomia, Riverside, CA 9252 1, USA Email:

More information

Fingerprint Matching using Gabor Filters

Fingerprint Matching using Gabor Filters Fingerprint Matching using Gabor Filters Muhammad Umer Munir and Dr. Muhammad Younas Javed College of Electrical and Mechanical Engineering, National University of Sciences and Technology Rawalpindi, Pakistan.

More information

International Journal of Advanced Research in Computer Science and Software Engineering

International Journal of Advanced Research in Computer Science and Software Engineering ISSN: 2277 128X International Journal of Advanced Research in Computer Science and Software Engineering Research Paper Available online at: Fingerprint Recognition using Robust Local Features Madhuri and

More information

Peg-Free Hand Geometry Verification System

Peg-Free Hand Geometry Verification System Peg-Free Hand Geometry Verification System Pavan K Rudravaram Venu Govindaraju Center for Unified Biometrics and Sensors (CUBS), University at Buffalo,New York,USA. {pkr, govind} @cedar.buffalo.edu http://www.cubs.buffalo.edu

More information

Image Enhancement Techniques for Fingerprint Identification

Image Enhancement Techniques for Fingerprint Identification March 2013 1 Image Enhancement Techniques for Fingerprint Identification Pankaj Deshmukh, Siraj Pathan, Riyaz Pathan Abstract The aim of this paper is to propose a new method in fingerprint enhancement

More information

Face Recognition Using Vector Quantization Histogram and Support Vector Machine Classifier Rong-sheng LI, Fei-fei LEE *, Yan YAN and Qiu CHEN

Face Recognition Using Vector Quantization Histogram and Support Vector Machine Classifier Rong-sheng LI, Fei-fei LEE *, Yan YAN and Qiu CHEN 2016 International Conference on Artificial Intelligence: Techniques and Applications (AITA 2016) ISBN: 978-1-60595-389-2 Face Recognition Using Vector Quantization Histogram and Support Vector Machine

More information

Distorted Fingerprint Verification System

Distorted Fingerprint Verification System Informatica Economică vol. 15, no. 4/2011 13 Distorted Fingerprint Verification System Divya KARTHIKAESHWARAN 1, Jeyalatha SIVARAMAKRISHNAN 2 1 Department of Computer Science, Amrita University, Bangalore,

More information

Fingerprint Recognition System for Low Quality Images

Fingerprint Recognition System for Low Quality Images Fingerprint Recognition System for Low Quality Images Zin Mar Win and Myint Myint Sein University of Computer Studies, Yangon, Myanmar zmwucsy@gmail.com Department of Research and Development University

More information

Published by: PIONEER RESEARCH & DEVELOPMENT GROUP (www.prdg.org) 1

Published by: PIONEER RESEARCH & DEVELOPMENT GROUP (www.prdg.org) 1 Enhancing Security in Identity Documents Using QR Code RevathiM K 1, Annapandi P 2 and Ramya K P 3 1 Information Technology, Dr.Sivanthi Aditanar College of Engineering, Tiruchendur, Tamilnadu628215, India

More information

AN EFFICIENT METHOD FOR FINGERPRINT RECOGNITION FOR NOISY IMAGES

AN EFFICIENT METHOD FOR FINGERPRINT RECOGNITION FOR NOISY IMAGES International Journal of Computer Science and Communication Vol. 3, No. 1, January-June 2012, pp. 113-117 AN EFFICIENT METHOD FOR FINGERPRINT RECOGNITION FOR NOISY IMAGES Vijay V. Chaudhary 1 and S.R.

More information

Improving Latent Fingerprint Matching Performance by Orientation Field Estimation using Localized Dictionaries

Improving Latent Fingerprint Matching Performance by Orientation Field Estimation using Localized Dictionaries 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. 3, Issue. 11, November 2014,

More information

Incorporating Image Quality in Multi-Algorithm Fingerprint Verification

Incorporating Image Quality in Multi-Algorithm Fingerprint Verification Incorporating Image Quality in Multi-Algorithm Fingerprint Verification Julian Fierrez-Aguilar 1, Yi Chen 2, Javier Ortega-Garcia 1, and Anil K. Jain 2 1 ATVS, Escuela Politecnica Superior, Universidad

More information

Genetic Algorithm For Fingerprint Matching

Genetic Algorithm For Fingerprint Matching Genetic Algorithm For Fingerprint Matching B. POORNA Department Of Computer Applications, Dr.M.G.R.Educational And Research Institute, Maduravoyal, Chennai 600095,TamilNadu INDIA. Abstract:- An efficient

More information

Utilization of Matching Score Vector Similarity Measures in Biometric Systems

Utilization of Matching Score Vector Similarity Measures in Biometric Systems Utilization of Matching Se Vector Similarity Measures in Biometric Systems Xi Cheng, Sergey Tulyakov, and Venu Govindaraju Center for Unified Biometrics and Sensors University at Buffalo, NY, USA xicheng,tulyakov,govind@buffalo.edu

More information

Noise Reduction in Image Sequences using an Effective Fuzzy Algorithm

Noise Reduction in Image Sequences using an Effective Fuzzy Algorithm Noise Reduction in Image Sequences using an Effective Fuzzy Algorithm Mahmoud Saeid Khadijeh Saeid Mahmoud Khaleghi Abstract In this paper, we propose a novel spatiotemporal fuzzy based algorithm for noise

More information

Fingerprint Matching Using Minutiae Feature Hardikkumar V. Patel, Kalpesh Jadav

Fingerprint Matching Using Minutiae Feature Hardikkumar V. Patel, Kalpesh Jadav Fingerprint Matching Using Minutiae Feature Hardikkumar V. Patel, Kalpesh Jadav Abstract- Fingerprints have been used in identification of individuals for many years because of the famous fact that each

More information

On-Line Fingerprint Verification

On-Line Fingerprint Verification On-Line Fingerprint Verification Ani1 Jain and Lin Hong Pattern Recognition and Image Processing Laboratory Department of Computer Science Michigan State University East Lansing, MI 48824, USA {j ain,honglin}

More information

Image Preprocessing of Fingerprint Images Captured with a Mobile Camera

Image Preprocessing of Fingerprint Images Captured with a Mobile Camera 1 Image Preprocessing of Fingerprint Images Captured with a Mobile Camera Sanghoon Lee, Chulhan Lee, and Jaihie Kim Department of Electrical and Electronic Engineering,Yonsei University Biometrics Engineering

More information

Online and Offline Fingerprint Template Update Using Minutiae: An Experimental Comparison

Online and Offline Fingerprint Template Update Using Minutiae: An Experimental Comparison Online and Offline Fingerprint Template Update Using Minutiae: An Experimental Comparison Biagio Freni, Gian Luca Marcialis, and Fabio Roli University of Cagliari Department of Electrical and Electronic

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

This is the published version:

This is the published version: This is the published version: Youssif, A.A.A., Chowdhury, Morshed, Ray, Sid and Nafaa, H.Y. 2007, Fingerprint recognition system using hybrid matching techniques, in 6th IEEE/ACIS International Conference

More information

Illumination-Robust Face Recognition based on Gabor Feature Face Intrinsic Identity PCA Model

Illumination-Robust Face Recognition based on Gabor Feature Face Intrinsic Identity PCA Model Illumination-Robust Face Recognition based on Gabor Feature Face Intrinsic Identity PCA Model TAE IN SEOL*, SUN-TAE CHUNG*, SUNHO KI**, SEONGWON CHO**, YUN-KWANG HONG*** *School of Electronic Engineering

More information

Hybrid Biometric Person Authentication Using Face and Voice Features

Hybrid Biometric Person Authentication Using Face and Voice Features Paper presented in the Third International Conference, Audio- and Video-Based Biometric Person Authentication AVBPA 2001, Halmstad, Sweden, proceedings pages 348-353, June 2001. Hybrid Biometric Person

More information

Auto-focusing Technique in a Projector-Camera System

Auto-focusing Technique in a Projector-Camera System 2008 10th Intl. Conf. on Control, Automation, Robotics and Vision Hanoi, Vietnam, 17 20 December 2008 Auto-focusing Technique in a Projector-Camera System Lam Bui Quang, Daesik Kim and Sukhan Lee School

More information

Predictive Interpolation for Registration

Predictive Interpolation for Registration Predictive Interpolation for Registration D.G. Bailey Institute of Information Sciences and Technology, Massey University, Private bag 11222, Palmerston North D.G.Bailey@massey.ac.nz Abstract Predictive

More information

Multimodal Biometric Authentication using Face and Fingerprint

Multimodal Biometric Authentication using Face and Fingerprint IJIRST National Conference on Networks, Intelligence and Computing Systems March 2017 Multimodal Biometric Authentication using Face and Fingerprint Gayathri. R 1 Viji. A 2 1 M.E Student 2 Teaching Fellow

More information

K-Nearest Neighbor Classification Approach for Face and Fingerprint at Feature Level Fusion

K-Nearest Neighbor Classification Approach for Face and Fingerprint at Feature Level Fusion K-Nearest Neighbor Classification Approach for Face and Fingerprint at Feature Level Fusion Dhriti PEC University of Technology Chandigarh India Manvjeet Kaur PEC University of Technology Chandigarh India

More information

Fusion of Hand Geometry and Palmprint Biometrics

Fusion of Hand Geometry and Palmprint Biometrics (Working Paper, Dec. 2003) Fusion of Hand Geometry and Palmprint Biometrics D.C.M. Wong, C. Poon and H.C. Shen * Department of Computer Science, Hong Kong University of Science and Technology, Clear Water

More information

Polar Harmonic Transform for Fingerprint Recognition

Polar Harmonic Transform for Fingerprint Recognition International Journal Of Engineering Research And Development e-issn: 2278-067X, p-issn: 2278-800X, www.ijerd.com Volume 13, Issue 11 (November 2017), PP.50-55 Polar Harmonic Transform for Fingerprint

More information

FINGERPRINT MATCHING BASED ON STATISTICAL TEXTURE FEATURES

FINGERPRINT MATCHING BASED ON STATISTICAL TEXTURE FEATURES 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. 3, Issue. 9, September 2014,

More information

User Identification by Hierarchical Fingerprint and Palmprint Matching

User Identification by Hierarchical Fingerprint and Palmprint Matching User Identification by Hierarchical Fingerprint and Palmprint Matching Annapoorani D #1, Caroline Viola Stella Mary M *2 # PG Scholar, Department of Information Technology, * Prof. and HOD, Department

More information

Fingerprint Image Enhancement Algorithm and Performance Evaluation

Fingerprint Image Enhancement Algorithm and Performance Evaluation Fingerprint Image Enhancement Algorithm and Performance Evaluation Naja M I, Rajesh R M Tech Student, College of Engineering, Perumon, Perinad, Kerala, India Project Manager, NEST GROUP, Techno Park, TVM,

More information

Fingerprint Matching Incorporating Ridge Features Using Contourlet Transforms

Fingerprint Matching Incorporating Ridge Features Using Contourlet Transforms Fingerprint Matching Incorporating Ridge Features Using Contourlet Transforms M.S. Keerthana 1 Student,Department of CSE, K.S.Rangasamy College Of Technology,Tiruchengode,TamilNadu, India 1 ABSTRACT: This

More information

Fusion Method of Fingerprint Quality Evaluation: From the Local Gabor Feature to the Global Spatial-Frequency Structures

Fusion Method of Fingerprint Quality Evaluation: From the Local Gabor Feature to the Global Spatial-Frequency Structures Fusion Method of Fingerprint Quality Evaluation: From the Local abor Feature to the lobal Spatial-Frequency Structures Decong Yu, Lihong Ma,, Hanqing Lu, and Zhiqing Chen 3 D Key Lab. of Computer Networ,

More information

Dynamic Obstacle Detection Based on Background Compensation in Robot s Movement Space

Dynamic Obstacle Detection Based on Background Compensation in Robot s Movement Space MATEC Web of Conferences 95 83 (7) DOI:.5/ matecconf/79583 ICMME 6 Dynamic Obstacle Detection Based on Background Compensation in Robot s Movement Space Tao Ni Qidong Li Le Sun and Lingtao Huang School

More information

Fingerprint matching using ridges

Fingerprint matching using ridges Fingerprint matching using ridges Jianjiang Feng a, *, Zhengyu Ouyang a, and Anni Cai a a Beijing University of Posts and Telecommunications, Box 113, Beijing, 100876, P. R. China *Corresponding author.

More information

FC-QIA: Fingerprint-Classification based Quick Identification Algorithm

FC-QIA: Fingerprint-Classification based Quick Identification Algorithm 212 FC-QIA: Fingerprint-Classification based Quick Identification Algorithm Ajay Jangra 1, Vedpal Singh 2, Priyanka 3 1, 2 CSE Department UIET, Kurukshetra University, Kurukshetra, INDIA 3 ECE Department

More information

EE795: Computer Vision and Intelligent Systems

EE795: Computer Vision and Intelligent Systems EE795: Computer Vision and Intelligent Systems Spring 2012 TTh 17:30-18:45 WRI C225 Lecture 04 130131 http://www.ee.unlv.edu/~b1morris/ecg795/ 2 Outline Review Histogram Equalization Image Filtering Linear

More information

Adaptive Fingerprint Image Enhancement with Minutiae Extraction

Adaptive Fingerprint Image Enhancement with Minutiae Extraction RESEARCH ARTICLE OPEN ACCESS Adaptive Fingerprint Image Enhancement with Minutiae Extraction 1 Arul Stella, A. Ajin Mol 2 1 I. Arul Stella. Author is currently pursuing M.Tech (Information Technology)

More information

Computer Vision and Image Understanding

Computer Vision and Image Understanding Computer Vision and Image Understanding 113 (2009) 979 992 Contents lists available at ScienceDirect Computer Vision and Image Understanding journal homepage: www.elsevier.com/locate/cviu Minutiae-based

More information

PERFORMANCE MEASURE OF LOCAL OPERATORS IN FINGERPRINT DETECTION ABSTRACT

PERFORMANCE MEASURE OF LOCAL OPERATORS IN FINGERPRINT DETECTION ABSTRACT PERFORMANCE MEASURE OF LOCAL OPERATORS IN FINGERPRINT DETECTION V.VIJAYA KUMARI, AMIETE Department of ECE, V.L.B. Janakiammal College of Engineering and Technology Coimbatore 641 042, India. email:ebinviji@rediffmail.com

More information

Reference Point Detection for Arch Type Fingerprints

Reference Point Detection for Arch Type Fingerprints Reference Point Detection for Arch Type Fingerprints H.K. Lam 1, Z. Hou 1, W.Y. Yau 1, T.P. Chen 1, J. Li 2, and K.Y. Sim 2 1 Computer Vision and Image Understanding Department Institute for Infocomm Research,

More information

Fingerprint Ridge Distance Estimation: Algorithms and the Performance*

Fingerprint Ridge Distance Estimation: Algorithms and the Performance* Fingerprint Ridge Distance Estimation: Algorithms and the Performance* Xiaosi Zhan, Zhaocai Sun, Yilong Yin, and Yayun Chu Computer Department, Fuyan Normal College, 3603, Fuyang, China xiaoszhan@63.net,

More information

Latent Fingerprint Matching: Fusion of Rolled and Plain Fingerprints

Latent Fingerprint Matching: Fusion of Rolled and Plain Fingerprints Latent Fingerprint Matching: Fusion of Rolled and Plain Fingerprints Jianjiang Feng, Soweon Yoon, and Anil K. Jain Department of Computer Science and Engineering Michigan State University {jfeng,yoonsowo,jain}@cse.msu.edu

More information

FINGERPRINT VERIFICATION BASED ON IMAGE PROCESSING SEGMENTATION USING AN ONION ALGORITHM OF COMPUTATIONAL GEOMETRY

FINGERPRINT VERIFICATION BASED ON IMAGE PROCESSING SEGMENTATION USING AN ONION ALGORITHM OF COMPUTATIONAL GEOMETRY FINGERPRINT VERIFICATION BASED ON IMAGE PROCESSING SEGMENTATION USING AN ONION ALGORITHM OF COMPUTATIONAL GEOMETRY M. POULOS Dept. of Informatics University of Piraeus, P.O. BOX 96, 49100 Corfu, Greece

More information

Designing of Fingerprint Enhancement Based on Curved Region Based Ridge Frequency Estimation

Designing of Fingerprint Enhancement Based on Curved Region Based Ridge Frequency Estimation Designing of Fingerprint Enhancement Based on Curved Region Based Ridge Frequency Estimation Navjot Kaur #1, Mr. Gagandeep Singh #2 #1 M. Tech:Computer Science Engineering, Punjab Technical University

More information

Improved cancelable fingerprint templates using minutiae-based functional transform

Improved cancelable fingerprint templates using minutiae-based functional transform SECURITY AND COMMUNICATION NETWORKS Security Comm. Networks 2014; 7:1543 1551 Published online 17 May 2013 in Wiley Online Library (wileyonlinelibrary.com)..788 SPECIAL ISSUE PAPER using minutiae-based

More information

Biometrics Technology: Multi-modal (Part 2)

Biometrics Technology: Multi-modal (Part 2) Biometrics Technology: Multi-modal (Part 2) References: At the Level: [M7] U. Dieckmann, P. Plankensteiner and T. Wagner, "SESAM: A biometric person identification system using sensor fusion ", Pattern

More information

FINGERPRINTS IDENTIFICATION AND VERIFICATION BASED ON LOCAL DENSITY DISTRIBUTION WITH ROTATION COMPENSATION

FINGERPRINTS IDENTIFICATION AND VERIFICATION BASED ON LOCAL DENSITY DISTRIBUTION WITH ROTATION COMPENSATION FINGERPRINTS IDENTIFICATION AND VERIFICATION BASED ON LOCAL DENSITY DISTRIBUTION WITH ROTATION COMPENSATION 1 ZAINAB J. AHMED, 2 DR. LOAY E. GEORGE 1 Department of Biology Science, College of Science,

More information

CORE POINT DETECTION USING FINE ORIENTATION FIELD ESTIMATION

CORE POINT DETECTION USING FINE ORIENTATION FIELD ESTIMATION CORE POINT DETECTION USING FINE ORIENTATION FIELD ESTIMATION M. Usman Akram, Rabia Arshad, Rabia Anwar, Shoab A. Khan Department of Computer Engineering, EME College, NUST, Rawalpindi, Pakistan usmakram@gmail.com,rabiakundi2007@gmail.com,librabia2004@hotmail.com,

More information

Keywords Wavelet decomposition, SIFT, Unibiometrics, Multibiometrics, Histogram Equalization.

Keywords Wavelet decomposition, SIFT, Unibiometrics, Multibiometrics, Histogram Equalization. Volume 3, Issue 7, July 2013 ISSN: 2277 128X International Journal of Advanced Research in Computer Science and Software Engineering Research Paper Available online at: www.ijarcsse.com Secure and Reliable

More information

An introduction on several biometric modalities. Yuning Xu

An introduction on several biometric modalities. Yuning Xu An introduction on several biometric modalities Yuning Xu The way human beings use to recognize each other: equip machines with that capability Passwords can be forgotten, tokens can be lost Post-9/11

More information

Secure Fingerprint Matching with External Registration

Secure Fingerprint Matching with External Registration Secure Fingerprint Matching with External Registration James Reisman 1, Umut Uludag 2, and Arun Ross 3 1 Siemens Corporate Research, 755 College Road East, Princeton, NJ, 08540 james.reisman@siemens.com

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

Minutia Cylindrical Code Based Approach for Fingerprint Matching

Minutia Cylindrical Code Based Approach for Fingerprint Matching Minutia Cylindrical Code Based Approach for Fingerprint Matching Dilip Tamboli 1, Mr.Sandeep B Patil 2, Dr.G.R.Sinha 3 1 P.G. Scholar, Department of Electronics & Telecommunication Engg. SSGI Bhilai, C.G.India

More information

Personal Authentication Using Palm Print Features

Personal Authentication Using Palm Print Features ACCV2002: The 5th Asian Conference on Computer Vision, 23 25 January 2002, Melbourne, Australia. 1 Personal Authentication Using Palm Print Features Chin-Chuan Han,Hsu-LiangCheng,andKuo-ChinFan Department

More information

An Approach for Real Time Moving Object Extraction based on Edge Region Determination

An Approach for Real Time Moving Object Extraction based on Edge Region Determination An Approach for Real Time Moving Object Extraction based on Edge Region Determination Sabrina Hoque Tuli Department of Computer Science and Engineering, Chittagong University of Engineering and Technology,

More information

A Full Analytical Review on Fingerprint Recognition using Neural Networks

A Full Analytical Review on Fingerprint Recognition using Neural Networks e t International Journal on Emerging Technologies (Special Issue on RTIESTM-2016) 7(1): 45-49(2016) ISSN No. (Print) : 0975-8364 ISSN No. (Online) : 2249-3255 A Full Analytical Review on Fingerprint Recognition

More information

SCALE INVARIANT TEMPLATE MATCHING

SCALE INVARIANT TEMPLATE MATCHING Volume 118 No. 5 2018, 499-505 ISSN: 1311-8080 (printed version); ISSN: 1314-3395 (on-line version) url: http://www.ijpam.eu ijpam.eu SCALE INVARIANT TEMPLATE MATCHING Badrinaathan.J Srm university Chennai,India

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

Dynamic Stroke Information Analysis for Video-Based Handwritten Chinese Character Recognition

Dynamic Stroke Information Analysis for Video-Based Handwritten Chinese Character Recognition Dynamic Stroke Information Analysis for Video-Based Handwritten Chinese Character Recognition Feng Lin and Xiaoou Tang Department of Information Engineering The Chinese University of Hong Kong Shatin,

More information

I. INTRODUCTION. Figure-1 Basic block of text analysis

I. INTRODUCTION. Figure-1 Basic block of text analysis ISSN: 2349-7637 (Online) (RHIMRJ) Research Paper Available online at: www.rhimrj.com Detection and Localization of Texts from Natural Scene Images: A Hybrid Approach Priyanka Muchhadiya Post Graduate Fellow,

More information

A Framework for Efficient Fingerprint Identification using a Minutiae Tree

A Framework for Efficient Fingerprint Identification using a Minutiae Tree A Framework for Efficient Fingerprint Identification using a Minutiae Tree Praveer Mansukhani February 22, 2008 Problem Statement Developing a real-time scalable minutiae-based indexing system using a

More information

A Secondary Fingerprint Enhancement and Minutiae Extraction

A Secondary Fingerprint Enhancement and Minutiae Extraction A Secondary Fingerprint Enhancement and Minutiae Extraction Raju Rajkumar 1, K Hemachandran 2 Department of Computer Science Assam University, Silchar, India 1 rajurajkumar.phd@gmail.com, 2 khchandran@rediffmail.com

More information

SIGNIFICANT improvements in fingerprint recognition

SIGNIFICANT improvements in fingerprint recognition IEEE TRANSACTIONS ON IMAGE PROCESSING, VOL. 15, NO. 3, MARCH 2006 767 A New Algorithm for Distorted Fingerprints Matching Based on Normalized Fuzzy Similarity Measure Xinjian Chen, Jie Tian, Senior Member,

More information

Optimization of Observation Membership Function By Particle Swarm Method for Enhancing Performances of Speaker Identification

Optimization of Observation Membership Function By Particle Swarm Method for Enhancing Performances of Speaker Identification Proceedings of the 6th WSEAS International Conference on SIGNAL PROCESSING, Dallas, Texas, USA, March 22-24, 2007 52 Optimization of Observation Membership Function By Particle Swarm Method for Enhancing

More information

A Survey on Security in Palmprint Recognition: A Biometric Trait

A Survey on Security in Palmprint Recognition: A Biometric Trait A Survey on Security in Palmprint Recognition: A Biometric Trait Dhaneshwar Prasad Dewangan 1, Abhishek Pandey 2 Abstract Biometric based authentication and recognition, the science of using physical or

More information

Text Area Detection from Video Frames

Text Area Detection from Video Frames Text Area Detection from Video Frames 1 Text Area Detection from Video Frames Xiangrong Chen, Hongjiang Zhang Microsoft Research China chxr@yahoo.com, hjzhang@microsoft.com Abstract. Text area detection

More information

FPGA IMPLEMENTATION FOR REAL TIME SOBEL EDGE DETECTOR BLOCK USING 3-LINE BUFFERS

FPGA IMPLEMENTATION FOR REAL TIME SOBEL EDGE DETECTOR BLOCK USING 3-LINE BUFFERS FPGA IMPLEMENTATION FOR REAL TIME SOBEL EDGE DETECTOR BLOCK USING 3-LINE BUFFERS 1 RONNIE O. SERFA JUAN, 2 CHAN SU PARK, 3 HI SEOK KIM, 4 HYEONG WOO CHA 1,2,3,4 CheongJu University E-maul: 1 engr_serfs@yahoo.com,

More information

The combination of palm print and hand geometry for biometrics palm recognition

The combination of palm print and hand geometry for biometrics palm recognition International Journal of Video & Image Processing and Network Security IJVIPNS-IJENS Vol: 2 No: 0 The combination of palm print and hand geometry for biometrics palm recognition Dewi Yanti Liliana, Eries

More information

Rotation Invariant Finger Vein Recognition *

Rotation Invariant Finger Vein Recognition * Rotation Invariant Finger Vein Recognition * Shaohua Pang, Yilong Yin **, Gongping Yang, and Yanan Li School of Computer Science and Technology, Shandong University, Jinan, China pangshaohua11271987@126.com,

More information