Vehicle Registration Plate Recognition System Based on Edge Transition by Row and Column Profile on Still Image

Size: px
Start display at page:

Download "Vehicle Registration Plate Recognition System Based on Edge Transition by Row and Column Profile on Still Image"

Transcription

1

2 Vehicle Registration Plate Recognition System Based on Edge Transition by Row and Column Profile on Still Image Ankur Kr Aggarwal, Aman Kr Aggarwal Department of Computer Science Faculty of Management and Information Technology, Jamia Hamdard, New Delhi, India Abstract Vehicle Registration Plate Recognition System (VRPRS) has been intensively studied as it is an important part of the Intelligent Security and Traffic Management System. Registration plate recognition has been extensively applied in the Intellectual traffic system and public transit security system. In this paper, system is developed based on digital images and can be easily applied to commercial areas based on a smart and simple algorithm for vehicle s registration plate recognition system. The proposed algorithm consists of four major parts: Extraction of plate region, Segmentation of characters, cleaning of segmented information and Recognize characters on plate. Extraction of vehicle registration plate is performed by creating edge image based on row-column profile over the greyscale image. In Segmentation part, column profile is used based on character and background greyscale intensity variation. In cleaning phase, preprocessing of segmented character is done based on threshold value. And, finally row-column peaks and skeleton of character bitmap is used for recognition of plate characters. The performance of proposed algorithm has been tested on real images. Based on the experimental result of the proposed algorithm, we have shown the best performance in car registration plate recognition system for characters which are difficult to distinguish as they are very much alike, such as: B and 8, S and 5, V and Y, D and 0, G and C. 1. Introduction The Automatic Number Plate Recognition (ANPR) was invented in 1976 at the Police Scientific Development Branch in the UK. Vehicle Registration Plate Recognition System (VRPRS) is similar to ANPR. However, it gained much interest during the last decade along with the improvement of digital camera and increase in mathematical computational capacity of computers. As, different countries have different types of vehicle registration plate system, due to which Automatic Vehicle Identification (AVI) system based on number plate recognition system is different for each country. Vehicle Registration Plate Recognition System (VRPRS) has many applications in different security systems like lost vehicle identification, electronic toll collection, red light violation enforcement, custom and border checkpoints, etc. License plate recognition (LPR) is a form of automatic vehicle identification. It is an image processing technology used to identify vehicles by only their license plate. Since every vehicle carries a unique license plate, no external cards, tags or transmitters need to be recognizable, only license plate is enough. Real time LPR plays a major role in automatic monitoring of traffic rules and maintaining law enforcement on public roads [1]. The VRPRS system is performed in four major steps, first step is to extract vehicle registration plate which is performed by creating edge image based on row-column profile over the greyscale image. In second step, segmentation of characters is performed by column profile based on character and background greyscale intensity variation. In third step the cleaning phase, pre-processing (removing pixels such as the black bars above and below the characters, dirt spots, or nuts and bolts.) of segmented character is performed based on cross-over intensity values of rows and columns. And, finally rowcolumn peaks and skeleton of character bitmap is used for recognition of plate characters. 2. Related Work So many researches of car identification have been approached by car registration plate extracting and recognition, some of the related work is as follows: H.J. Kim, D.W. Kim, S.K. Kim, J.V. Lee, J.K. Lee [2] proposed a method of extracting plate region based on 1

3 color image segmentation by distributed genetic. Park et. al. [3] devised a method to extract Korean license plate depending on the color of the plate. Hontani et.al. [4] proposed a method for extracting characters without prior knowledge of their position and size in the image. Yoshimura and Etoh [5] used Gabor jets projection to form a feature vector for recognizing low resolution gray-scale character. Tavsanoglu and Saatci [6] proposed an approach to form orientation map as recognition feature using a Gabor filter for recognizing characters. S.K. Kim, D.W. Kim and H.J. Kim [7] used a genetic algorithm based segmentation to extract the plate region. E.R. Lee, P.K. Kim and H.J. Kim [8] used neural network for color extraction and a template matching to recognize characters. Kim [9] and Choi [10] proposed the method based on vertical edge using Hough transform (HT) for extracting the license plate. Venema and M.A.Westenberg [11] proposed fuzzy logic and neural networks for car LPR. This method used fuzzy logic for segmentation and discrete-time cellular neural networks (DTCNN S) for feature extraction. Fahmy [12] proposed bidirectional associative memories (BAM) neural network for number plate reading. It s appropriate for small numbers of patterns. Nijhuis, Ter Brugge, Helmholf J.P.W. Pluim, L. Spaanenburg, R.S. Johnson and Bird [13] proposed knowledge-guieded boundary following and template matching for automatic vehicle identification. Lotufo, Morgan and Johnson [14] proposed automatic number-plate recognition using optical character recognition techniques. The paper is organized as follows: Section III provides an overview of overall system. Extracting the plate region is explained in Section IV. Section V gives the segmentation of individual plate characters. Section VI deals with cleaning of segmented information. Section VII explains the recognition system for characters on registration plate. Section VIII discusses experimental results and the paper concludes with Section IX. 2.1 Difficulties while Extraction 3. In most cases, the detecting is performed without prior knowledge of the registration plate s location in the image. 4. Probability of facing some common drawbacks which could influence the efficiency of the extraction, such as, blurry image, uneven or low illumination, vehicle motion, low resolution of the image, distorted characters, dirty plate, shadows or reflection etc. In addition to the reasons above, the registration plate extraction becomes more difficult in real time systems, where the fast processing as well as accuracy is required. 3. Structure of VRPRS system The proposed system is designed for real-time registration plate extraction. Input to the system is an image which contains the registration plate, acquired from about 4-5 meters away by a digital camera of the front or rear of the vehicle; and its output is the extracted registration plate region. Figure 1 shows the structure of VPRS system. In this paper, the proposed algorithm is based on extraction of plate region, segmentation of plate characters and recognition of characters. Extraction of plate is a difficult task. Essentially, the difficulty can be due to the following reasons: 1. Registration plates normally, occupy a small portion of the whole image. 2. The difference of registration plates in formats, styles and colours from country to others. Figure 1. VRPRS overall system structure 2

4 4. Extraction of Plate Region In the extraction phase, we input the greyscale image (Figure 2 shows conversion of rgb to greyscale image) to the system and try to get the accurate location of the registration plate in output. The input image to the computer is just a matrix of values between 1 and 255 (representing grey scale). The features from image which have to be extracted (in this paper it is rectangle region as vehicle registration plate) was provided as input to algorithm. end end end end Figure 2. Car image conversion from rgb scale to greyscale for further feature extraction process The algorithm for the finding the accurate location of the registration plate is based on the following idea: a vehicle registration plate consists of alphabetic and numeric characters. Row pixels in the registration plate region are varied in intensity levels with characters as dark and background as light regions, respectively. So, the registration plate is categorized by rows of transitions from dark to light region. Greyscale image is converted to edge image for registration plate region extraction. The algorithm works over two consecutive pixels in row scan approach and check for high difference in grey level intensity. If difference is high we replaced the first pixel by an intensity of black pixel of the two consecutive pixels, otherwise by a white intensity pixel, the result of this process, as shown in Figure 3 (it is called as edge image for corresponding Figure 2). Algorithm: [x y] = size(image_gray); image = image_gray; for i = 1:x for j = 1:y if(j<y) diff = image(i,j)-image(i,j+1); if( diff>20 ) image(i,j)=1; else image(i,j)=255; Figure 3. Edge image generated based on high intensity difference In edge image we observed that there is high number of black pixels which defines the edges of vehicle registration plate. To extract the accurate registration plate region we decide on the region with high number of black pixels as edges of registration plate by using row profile over edge image. Row profile is the count of black pixels in each row of edge image and present this in graph. Graph shows peaks which represent position with high number of edges. The peak values of graph can be accustomed to determine all probabilities of horizontal position for the registration plate. Rows with high peak values are selected to crop edge image, as shown in Figure 4. 3

5 Figure 4. Row profile of Edge image (horizontal axis represents rows and vertical axis represents the number of black pixels in that row) and cropped edge image based on Row profile Cropped image is used by column profile for counting number of black pixel for the columns. Registration plate position in vertical direction is selected by taking likely peak values from column profile and truncated edge image is generated which have accurate location of registration plate, as shown in Figure 5. character data are of darker intensity as compare to background region. So, column profile of extracted image is used to segment character regions based on significant high intensity than their surroundings, as shown in Figure 7. Figure 5. Column profile of Edge image (horizontal axis represents rows and vertical axis represents the number of black pixels in that row) and Truncated edge image based on Column profile Figure 7. Column profile of cropped greyscale image (horizontal axis represents columns and vertical axis represents the number of pixels above threshold value) In column profile graph registration plate characters are cropped at the columns that are significantly higher in intensity than their surroundings. Threshold value is selected for this process based on that small image data set is obtained as character data, as shown in Figure Character Segmentation Figure 6 shows the extracted registration plate, location details from row and column profile graphs are used to truncate registration plate region from original greyscale image. Figure 6. Extracted registration plate image based on row and column pixels location from row-column profile. Segmentation of characters is directly performed on greyscale image based on the variation of intensity in characters and background region. Column with Figure 8. Character bitmaps as small image data set found as a result of the segmentation phase 6. Character Cleaning Before reorganization of characters we have to clean the character bitmaps by performing pre-processing. In cleaning phase we remove all dark pixels from the character bitmap that do not belong to the registration plate characters. In pre-processing we remove pixels such as the black bars above and below the characters, dirt spots, or nuts and bolts. Character bitmap image is converted into binary image. From binary character bitmap remove all rows and columns which have only black pixels, as they are black rectangle surrounding the registration plate. Next remove all small groups of pixels which are not connected to any other group, as these are no characters, either but dirt spots or bolts. Noise in 4

6 character bitmap is replaced by background pixels. Figure 9 shows the cleaned bitmap of the Figure 8. Figure 9. Character bitmaps as small image data set found as a result of the segmentation phase To extract junction and end-point feature, thinning operation is performed on character bitmap and find skeletonization of image. Junction feature is also known as branch point. It s a point where two points meet becomes Matlab command for junction/branch point extraction BWO = bwmorph(bwi, branchpoints ); 7. Recognize Characters Greyscale character bitmaps obtained in cleaning phase is input for recognizing character. Different methods are used for feature extraction for better generalization and low computation. Three character features: holes, junctions and end-points are considered, based on the number and position of these features we can classify characters. Decision table for character feature classification is given in Table 1. Table 1. Decision Table for Character Feature Classification ALPHABET HOLES END- JUNCTION POINT C L M N S U V W Z G J T Y F E K X H I O D P Q R A B End-point feature is a mark of termination or completion of line or curve of character. Every character has a number of end-points which plays a significant role to recognize a character becomes Matlab command used for end-point feature extraction BWO = bwmorph(bwi, endpoints ); But, these features are not adequate to recognize similar characters like 6 and 9, as they both have 1 hole, 1 junction and 1 end-point features. In this case, we can simply discriminate them just by looking at the position of the feature points. Divide the image into two equal parts upper half, and bottom half similarly left half and right half. If junction is at the right half and end-point at the bottom half, the character is recognized as 9 as shown in Figure 10. Hole feature is extracted by filling the holes of character bitmap image and taking logical difference with original image, shrink it and count the number of white pixels. Matlab command for hole feature extraction form BWI image BWO = imfill(bwi, holes ); Figure 10. Character bitmaps as small image data set found as a result of the segmentation phase With this classification method, the problem of recognizing characters that are very much alike is solved. 5

7 8. Experimental Result Experiments have been performed to test the proposal system and to measure the accuracy of the system. The system is designed in MATLAB R2009b for recognition of vehicle registration plates. The images for the input to the system are colored images with the size of 1200x1600. For improving the complexity and generality of the test database, the test images were taken under various illumination conditions (cloudy, sunny, and daytime). The result of the test cases is given in table 2. Table 2. Decision table for Character Feature Classification Units of VRPRS Number of Percentage of System Accuracy Accuracy Extraction of 107/ % Plate Region Segmentation 105/ % Recognition of 109/112 97% Characters It is shown that accuracy for the extraction of plate region is 95.5%, 94.6% for the segmentation of the characters and 97% is the percentage of accuracy of the recognition unit. 9. Conclusion In this paper, it proposes and designs the algorithm of the image processing and segmentation, based on the analysis of the variety of character features it is possible for algorithm to recognize similar characters based on features. Through experiments and improvements, the effect of the improvement is obvious and the character recognition rate increased substantially. Finally it shows accuracy of 95.5% for extraction of plate region, 94.6% accuracy for segmentation of characters for plate region and 97% accuracy for recognition of segmentation characters. This system can be extended for multiple car registration plate recognition system. 10. References [1] G. Bailey, D. Irecki, B.K. Lim and L. Yang Test bed for number plate recognition applications, Proceedings of First IEEE International Workshop on Electronic Design, Test and Applications ( DELTA 02 ), IEEE Computer Society, [2] H.J.Kim, D.W.Kim, S.K. Kim, J.V. Lee, J.K. Lee, 1997, Automatic Recognition of Car License Plates Using Color Image Processing, Engineering Design & Automation, 3(2), pp ,1997 [3] Park, S. H., Kim, K. I., Jung, K., and Kim, H. J., (1999), Locating car license plates using neural network, IEE Electronics Letters, vol.35, no. 17, pp [4] Hontani, H., and Koga, T., (2001), Character extraction method without prior knowledge on size and information, Proceedings of the IEEE International Vehicle Electronics Conference (IVEC 01), pp [5] Yoshimura H, Etoh M, Kondo K, Yokoya N. Gray-scale character recognition by Gabor jets projection, Proceedings 15th International Conference on Pattern Recognition, ICPR IEEE Comput. Soc. Part vol.2, 2000, pp vol.2, Los Alamitos, CA,USA. [6] Tavsanoglu V, Saatci E. Feature extraction for character recognition using Gabor-type filters implemented by cellular neural networks, Proceedings of the th IEEE International Workshop on Cellular Neural Networks and their Applications, IEEE. 2000, pp Piscataway,NJ,USA. [7] S.K. Kim, D.W. Kim, and H.J. Kim, 1996, A Recognition of Vehicle License Plate Using a Genetic Algorithm Based Segmentation, Proceedings of 3rd IEEE International Conference on Image Processing, V01.2., pp , 1996 [8] E.R. Lee, P.K. Kim, and H.J. Kim, 1994, Automatic Recognition of a Car License Plate Using Color Image Processing, Proceedings of the International Conference on Image Processing [9] H.S. Kim, et al., 1991, Recognition of a Car Number Plate by a Neural Network, Proceedings of the Korea Information Science Society Fall Conference, Vol. 18, pp , 1991 [10] H.J. Choi, 1987, A Study on the Extraction and Recognition of a Car Number Plate by Image Processing, Journal of the Korea Institute of Telematics and Electronics, Vo1.24, pp ,1987. [11] J.A.G. Nijhuis, M.H. Ter Brugge, K.A. Helmholt, J.P.W. Pluim, L. Spaanenburg, R.S. Venema, M.A. Westenberg, 1995, Car License Plate Recognition with Neural Networks and Fuzzy Logic, IEEE International Conference on Neural Networks,1995 [12] M.M.M. Fahmy, 1994, Automatic Number-plate Recognition : Neural Network Approach, Proceedings of VNIS 94 Vehicle Navigation and 6

8 Information System Conference, 3 1 Aug-2 Sept, 1994 [13] A.S. Johnson, B.M. Bird, 1990, NumberplateMatching for Automatic Vehicle Identification, IEE Colloquium on Electronic Image and Image Processing in Security and Forensic, Aprl, [14] R.A. Lotufo, A.D. Morgan, and AS. Johnson, 1990, Automatic Number-Plate Recognition, Proceedings of the IEE Colloquium on Image analysis for Transport Applications, V01.035, pp.6/1-6/6, February 16,

9 8

An Efficient way of Number Plate Alphabets and Numbers Extraction for Security Purpose

An Efficient way of Number Plate Alphabets and Numbers Extraction for Security Purpose IOSR Journal of Electrical and Electronics Engineering (IOSR-JEEE) e-issn: 2278-1676,p-ISSN: 2320-3331, Volume 9, Issue 2 Ver. V (Mar Apr. 2014), PP 63-67 An Efficient way of Number Plate Alphabets and

More information

Automatic License Plate Recognition System

Automatic License Plate Recognition System Automatic License Plate Recognition System G. Sudhakar Babu 1, Dr. K. Chandra Sekhara Reddy 2 Abstract: Automatic license plate recognition system (ALPR) is one of the most important of the intelligent

More information

Character Recognition of High Security Number Plates Using Morphological Operator

Character Recognition of High Security Number Plates Using Morphological Operator Character Recognition of High Security Number Plates Using Morphological Operator Kamaljit Kaur * Department of Computer Engineering, Baba Banda Singh Bahadur Polytechnic College Fatehgarh Sahib,Punjab,India

More information

DESIGNING A REAL TIME SYSTEM FOR CAR NUMBER DETECTION USING DISCRETE HOPFIELD NETWORK

DESIGNING A REAL TIME SYSTEM FOR CAR NUMBER DETECTION USING DISCRETE HOPFIELD NETWORK DESIGNING A REAL TIME SYSTEM FOR CAR NUMBER DETECTION USING DISCRETE HOPFIELD NETWORK A.BANERJEE 1, K.BASU 2 and A.KONAR 3 COMPUTER VISION AND ROBOTICS LAB ELECTRONICS AND TELECOMMUNICATION ENGG JADAVPUR

More information

Smart License Plate Recognition System based on Image Processing Jatin M. Patel 1 R. K. Somani 2 Pankaj Singh Parihar 3 1, 2, 3

Smart License Plate Recognition System based on Image Processing Jatin M. Patel 1 R. K. Somani 2 Pankaj Singh Parihar 3 1, 2, 3 IJSRD - International Journal for Scientific Research & Development Vol. 1, Issue 9, 2013 ISSN (online): 2321-0613 Smart License Plate Recognition System based on Image Processing Jatin M. Patel 1 R. K.

More information

MATHEMATICAL IMAGE PROCESSING FOR AUTOMATIC NUMBER PLATE RECOGNITION SYSTEM

MATHEMATICAL IMAGE PROCESSING FOR AUTOMATIC NUMBER PLATE RECOGNITION SYSTEM J. KSIAM Vol.14, No.1, 57 66, 2010 MATHEMATICAL IMAGE PROCESSING FOR AUTOMATIC NUMBER PLATE RECOGNITION SYSTEM SUNHEE KIM, SEUNGMI OH, AND MYUNGJOO KANG DEPARTMENT OF MATHEMATICAL SCIENCES, SEOUL NATIONAL

More information

AUTOMATIC RECOGNITION OF THE LICENSE-PLATE LOCATION BASED ON OPTICAL FLOW AND NEURAL NETWORKS FOR ARABIC AND FARSI CHARACTERS

AUTOMATIC RECOGNITION OF THE LICENSE-PLATE LOCATION BASED ON OPTICAL FLOW AND NEURAL NETWORKS FOR ARABIC AND FARSI CHARACTERS AUTOMATIC RECOGNITION OF THE LICENSE-PLATE LOCATION BASED ON OPTICAL FLOW AND NEURAL NETWORKS FOR ARABIC AND FARSI CHARACTERS Mohammad Rahimi, Amin Bahrami and Aboalfazl Chamanmotlagh Faculty of Electrical

More information

OCR For Handwritten Marathi Script

OCR For Handwritten Marathi Script International Journal of Scientific & Engineering Research Volume 3, Issue 8, August-2012 1 OCR For Handwritten Marathi Script Mrs.Vinaya. S. Tapkir 1, Mrs.Sushma.D.Shelke 2 1 Maharashtra Academy Of Engineering,

More information

Extraction and Recognition of Alphanumeric Characters from Vehicle Number Plate

Extraction and Recognition of Alphanumeric Characters from Vehicle Number Plate Extraction and Recognition of Alphanumeric Characters from Vehicle Number Plate Surekha.R.Gondkar 1, C.S Mala 2, Alina Susan George 3, Beauty Pandey 4, Megha H.V 5 Associate Professor, Department of Telecommunication

More information

HCR Using K-Means Clustering Algorithm

HCR Using K-Means Clustering Algorithm HCR Using K-Means Clustering Algorithm Meha Mathur 1, Anil Saroliya 2 Amity School of Engineering & Technology Amity University Rajasthan, India Abstract: Hindi is a national language of India, there are

More information

Automatic License Plate Recognition in Real Time Videos using Visual Surveillance Techniques

Automatic License Plate Recognition in Real Time Videos using Visual Surveillance Techniques Automatic License Plate Recognition in Real Time Videos using Visual Surveillance Techniques Lucky Kodwani, Sukadev Meher Department of Electronics & Communication National Institute of Technology Rourkela,

More information

CORRELATION BASED CAR NUMBER PLATE EXTRACTION SYSTEM

CORRELATION BASED CAR NUMBER PLATE EXTRACTION SYSTEM CORRELATION BASED CAR NUMBER PLATE EXTRACTION SYSTEM 1 PHYO THET KHIN, 2 LAI LAI WIN KYI 1,2 Department of Information Technology, Mandalay Technological University The Republic of the Union of Myanmar

More information

A New Algorithmic Approach for Detection and Identification of Vehicle Plate Numbers

A New Algorithmic Approach for Detection and Identification of Vehicle Plate Numbers J. Software Engineering & Applications, 2010, 3: 99-108 doi:10.4236/jsea.2010.32013 Published Online February 2010 (http://www.scirp.org/journal/jsea) 99 A New Algorithmic Approach for Detection and Identification

More information

Vehicle Logo Recognition using Image Matching and Textural Features

Vehicle Logo Recognition using Image Matching and Textural Features Vehicle Logo Recognition using Image Matching and Textural Features Nacer Farajzadeh Faculty of IT and Computer Engineering Azarbaijan Shahid Madani University Tabriz, Iran n.farajzadeh@azaruniv.edu Negin

More information

Mobile Application with Optical Character Recognition Using Neural Network

Mobile Application with Optical Character Recognition Using Neural Network 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. 1, January 2015,

More information

LICENSE PLATE RECOGNITION FOR TOLL PAYMENT APPLICATION

LICENSE PLATE RECOGNITION FOR TOLL PAYMENT APPLICATION LICENSE PLATE RECOGNITION FOR TOLL PAYMENT APPLICATION Saranya.K 1, AncyGloria.C 2 1 P.G Scholar, Electronics and Communication Engineering, B.S.Abdur Rahman University, Tamilnadu, India 2 Assistant Professor,

More information

American International Journal of Research in Science, Technology, Engineering & Mathematics

American International Journal of Research in Science, Technology, Engineering & Mathematics American International Journal of Research in Science, Technology, Engineering & Mathematics Available online at http://www.iasir.net ISSN (Print): 2328-3491, ISSN (Online): 2328-3580, ISSN (CD-ROM): 2328-3629

More information

License Plate Detection and Character Recognition

License Plate Detection and Character Recognition License Plate Detection and Character Recognition Fabio Caccia, Roberto Marmo, and Luca Lombardi Dip. Informatica e sistemistica, University of Pavia, Italy marmo@vision.unipv.it http://vision.unipv.it

More information

Automatic License Plate Recognition

Automatic License Plate Recognition Nijad Ashraf, Sajjad KM, Shehzad Abdulla, Saalim Jabir Dept. of CSE, MESCE Guide: Sajith N July 13, 2010 Outline 1 2 3 4 Design Licensing 5 Standardization Image Quality 6 Language Libraries Others 7 Otsu

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

LIBYAN VEHICLE PLATE RECOGNITION USING REGIONBASED FEATURES AND PROBABILISTIC NEURAL NETWORK

LIBYAN VEHICLE PLATE RECOGNITION USING REGIONBASED FEATURES AND PROBABILISTIC NEURAL NETWORK LIBYAN VEHICLE PLATE RECOGNITION USING REGIONBASED FEATURES AND PROBABILISTIC NEURAL NETWORK 1 KHADIJA AHMAD JABAR, 2 MOHAMMAD FAIDZUL NASRUDIN School Of Computer Science, Universiti Kebangsaan Malaysia,

More information

Handwritten Hindi Character Recognition System Using Edge detection & Neural Network

Handwritten Hindi Character Recognition System Using Edge detection & Neural Network Handwritten Hindi Character Recognition System Using Edge detection & Neural Network Tanuja K *, Usha Kumari V and Sushma T M Acharya Institute of Technology, Bangalore, India Abstract Handwritten recognition

More information

MOVING OBJECT DETECTION USING BACKGROUND SUBTRACTION ALGORITHM USING SIMULINK

MOVING OBJECT DETECTION USING BACKGROUND SUBTRACTION ALGORITHM USING SIMULINK MOVING OBJECT DETECTION USING BACKGROUND SUBTRACTION ALGORITHM USING SIMULINK Mahamuni P. D 1, R. P. Patil 2, H.S. Thakar 3 1 PG Student, E & TC Department, SKNCOE, Vadgaon Bk, Pune, India 2 Asst. Professor,

More information

Improving License Plate Recognition Rate using Hybrid Algorithms

Improving License Plate Recognition Rate using Hybrid Algorithms Improving License Plate Recognition Rate using Hybrid Algorithms 1 Anjli Varghese, 2 R Srikantaswamy 1,2 Dept. of Electronics and Communication Engineering, Siddaganga Institute of Technology, Tumakuru,

More information

Scene Text Detection Using Machine Learning Classifiers

Scene Text Detection Using Machine Learning Classifiers 601 Scene Text Detection Using Machine Learning Classifiers Nafla C.N. 1, Sneha K. 2, Divya K.P. 3 1 (Department of CSE, RCET, Akkikkvu, Thrissur) 2 (Department of CSE, RCET, Akkikkvu, Thrissur) 3 (Department

More information

Study on the Signboard Region Detection in Natural Image

Study on the Signboard Region Detection in Natural Image , pp.179-184 http://dx.doi.org/10.14257/astl.2016.140.34 Study on the Signboard Region Detection in Natural Image Daeyeong Lim 1, Youngbaik Kim 2, Incheol Park 1, Jihoon seung 1, Kilto Chong 1,* 1 1567

More information

Effects Of Shadow On Canny Edge Detection through a camera

Effects Of Shadow On Canny Edge Detection through a camera 1523 Effects Of Shadow On Canny Edge Detection through a camera Srajit Mehrotra Shadow causes errors in computer vision as it is difficult to detect objects that are under the influence of shadows. Shadow

More information

LANE DEPARTURE WARNING SYSTEM FOR VEHICLE SAFETY

LANE DEPARTURE WARNING SYSTEM FOR VEHICLE SAFETY LANE DEPARTURE WARNING SYSTEM FOR VEHICLE SAFETY 1 K. Sravanthi, 2 Mrs. Ch. Padmashree 1 P.G. Scholar, 2 Assistant Professor AL Ameer College of Engineering ABSTRACT In Malaysia, the rate of fatality due

More information

An adaptive container code character segmentation algorithm Yajie Zhu1, a, Chenglong Liang2, b

An adaptive container code character segmentation algorithm Yajie Zhu1, a, Chenglong Liang2, b 6th International Conference on Machinery, Materials, Environment, Biotechnology and Computer (MMEBC 2016) An adaptive container code character segmentation algorithm Yajie Zhu1, a, Chenglong Liang2, b

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

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

LOCALIZATION OF LICENSE PLATE NUMBER USING DYNAMIC IMAGE PROCESSING TECHNIQUES

LOCALIZATION OF LICENSE PLATE NUMBER USING DYNAMIC IMAGE PROCESSING TECHNIQUES LOCALIZATION OF LICENSE PLATE NUMBER USING DYNAMIC IMAGE PROCESSING TECHNIQUES Mr. Prasad Prakash Sutar 1, Prof. Pravin C. Latane 2, 1 P.G Student, Department of Electronics and Telecommunication Engineering,

More information

Rectification of distorted elemental image array using four markers in three-dimensional integral imaging

Rectification of distorted elemental image array using four markers in three-dimensional integral imaging Rectification of distorted elemental image array using four markers in three-dimensional integral imaging Hyeonah Jeong 1 and Hoon Yoo 2 * 1 Department of Computer Science, SangMyung University, Korea.

More information

Fabric Defect Detection Based on Computer Vision

Fabric Defect Detection Based on Computer Vision Fabric Defect Detection Based on Computer Vision Jing Sun and Zhiyu Zhou College of Information and Electronics, Zhejiang Sci-Tech University, Hangzhou, China {jings531,zhouzhiyu1993}@163.com Abstract.

More information

Automatic Privileged Vehicle Passing System using Image Processing

Automatic Privileged Vehicle Passing System using Image Processing RESEARCH ARTICLE OPEN ACCESS Automatic Privileged Vehicle Passing System using Image Processing Abhijeet Kumar, Abhijit Manwatkar, Ayush Sharma, Sumeet Patel Electronics and Telecommunication Yeshwantrao

More information

Hybrid Model with Super Resolution and Decision Boundary Feature Extraction and Rule based Classification of High Resolution Data

Hybrid Model with Super Resolution and Decision Boundary Feature Extraction and Rule based Classification of High Resolution Data Hybrid Model with Super Resolution and Decision Boundary Feature Extraction and Rule based Classification of High Resolution Data Navjeet Kaur M.Tech Research Scholar Sri Guru Granth Sahib World University

More information

Research on QR Code Image Pre-processing Algorithm under Complex Background

Research on QR Code Image Pre-processing Algorithm under Complex Background Scientific Journal of Information Engineering May 207, Volume 7, Issue, PP.-7 Research on QR Code Image Pre-processing Algorithm under Complex Background Lei Liu, Lin-li Zhou, Huifang Bao. Institute of

More information

Chapter 4. The Classification of Species and Colors of Finished Wooden Parts Using RBFNs

Chapter 4. The Classification of Species and Colors of Finished Wooden Parts Using RBFNs Chapter 4. The Classification of Species and Colors of Finished Wooden Parts Using RBFNs 4.1 Introduction In Chapter 1, an introduction was given to the species and color classification problem of kitchen

More information

Film Line scratch Detection using Neural Network and Morphological Filter

Film Line scratch Detection using Neural Network and Morphological Filter Film Line scratch Detection using Neural Network and Morphological Filter Kyung-tai Kim and Eun Yi Kim Dept. of advanced technology fusion, Konkuk Univ. Korea {kkt34, eykim}@konkuk.ac.kr Abstract This

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

Fast Vehicle Detection and Counting Using Background Subtraction Technique and Prewitt Edge Detection

Fast Vehicle Detection and Counting Using Background Subtraction Technique and Prewitt Edge Detection International Journal of Computer Science and Telecommunications [Volume 6, Issue 10, November 2015] 8 ISSN 2047-3338 Fast Vehicle Detection and Counting Using Background Subtraction Technique and Prewitt

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

On-road obstacle detection system for driver assistance

On-road obstacle detection system for driver assistance Asia Pacific Journal of Engineering Science and Technology 3 (1) (2017) 16-21 Asia Pacific Journal of Engineering Science and Technology journal homepage: www.apjest.com Full length article On-road obstacle

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

Real-time Detection of Illegally Parked Vehicles Using 1-D Transformation

Real-time Detection of Illegally Parked Vehicles Using 1-D Transformation Real-time Detection of Illegally Parked Vehicles Using 1-D Transformation Jong Taek Lee, M. S. Ryoo, Matthew Riley, and J. K. Aggarwal Computer & Vision Research Center Dept. of Electrical & Computer Engineering,

More information

DATA EMBEDDING IN TEXT FOR A COPIER SYSTEM

DATA EMBEDDING IN TEXT FOR A COPIER SYSTEM DATA EMBEDDING IN TEXT FOR A COPIER SYSTEM Anoop K. Bhattacharjya and Hakan Ancin Epson Palo Alto Laboratory 3145 Porter Drive, Suite 104 Palo Alto, CA 94304 e-mail: {anoop, ancin}@erd.epson.com Abstract

More information

Gesture Identification Based Remote Controlled Robot

Gesture Identification Based Remote Controlled Robot Gesture Identification Based Remote Controlled Robot Manjusha Dhabale 1 and Abhijit Kamune 2 Assistant Professor, Department of Computer Science and Engineering, Ramdeobaba College of Engineering, Nagpur,

More information

Defect Inspection of Liquid-Crystal-Display (LCD) Panels in Repetitive Pattern Images Using 2D Fourier Image Reconstruction

Defect Inspection of Liquid-Crystal-Display (LCD) Panels in Repetitive Pattern Images Using 2D Fourier Image Reconstruction Defect Inspection of Liquid-Crystal-Display (LCD) Panels in Repetitive Pattern Images Using D Fourier Image Reconstruction Du-Ming Tsai, and Yan-Hsin Tseng Department of Industrial Engineering and Management

More information

AN EXAMINING FACE RECOGNITION BY LOCAL DIRECTIONAL NUMBER PATTERN (Image Processing)

AN EXAMINING FACE RECOGNITION BY LOCAL DIRECTIONAL NUMBER PATTERN (Image Processing) AN EXAMINING FACE RECOGNITION BY LOCAL DIRECTIONAL NUMBER PATTERN (Image Processing) J.Nithya 1, P.Sathyasutha2 1,2 Assistant Professor,Gnanamani College of Engineering, Namakkal, Tamil Nadu, India ABSTRACT

More information

One type of these solutions is automatic license plate character recognition (ALPR).

One type of these solutions is automatic license plate character recognition (ALPR). 1.0 Introduction Modelling, Simulation & Computing Laboratory (msclab) A rapid technical growth in the area of computer image processing has increased the need for an efficient and affordable security,

More information

International Journal of Advance Research in Engineering, Science & Technology

International Journal of Advance Research in Engineering, Science & Technology Impact Factor (SJIF): 4.542 International Journal of Advance Research in Engineering, Science & Technology e-issn: 2393-9877, p-issn: 2394-2444 Volume 4, Issue 4, April-2017 A Simple Effective Algorithm

More information

Non-rigid body Object Tracking using Fuzzy Neural System based on Multiple ROIs and Adaptive Motion Frame Method

Non-rigid body Object Tracking using Fuzzy Neural System based on Multiple ROIs and Adaptive Motion Frame Method Proceedings of the 2009 IEEE International Conference on Systems, Man, and Cybernetics San Antonio, TX, USA - October 2009 Non-rigid body Object Tracking using Fuzzy Neural System based on Multiple ROIs

More information

Optimization of vehicle licence plate segmentation and symbol recognition

Optimization of vehicle licence plate segmentation and symbol recognition Optimization of vehicle licence plate segmentation and symbol recognition R.P. van Heerden and E.C. Botha Department of Electrical, Electronic and Computer engineering University of Pretoria, South Africa

More information

OPTIMIZING A VIDEO PREPROCESSOR FOR OCR. MR IBM Systems Dev Rochester, elopment Division Minnesota

OPTIMIZING A VIDEO PREPROCESSOR FOR OCR. MR IBM Systems Dev Rochester, elopment Division Minnesota OPTIMIZING A VIDEO PREPROCESSOR FOR OCR MR IBM Systems Dev Rochester, elopment Division Minnesota Summary This paper describes how optimal video preprocessor performance can be achieved using a software

More information

Classification of Printed Chinese Characters by Using Neural Network

Classification of Printed Chinese Characters by Using Neural Network Classification of Printed Chinese Characters by Using Neural Network ATTAULLAH KHAWAJA Ph.D. Student, Department of Electronics engineering, Beijing Institute of Technology, 100081 Beijing, P.R.CHINA ABDUL

More information

Abstract -Fingerprints are the most widely. Keywords:fingerprint; ridge pattern; biometric;

Abstract -Fingerprints are the most widely. Keywords:fingerprint; ridge pattern; biometric; Analysis Of Finger Print Detection Techniques Prof. Trupti K. Wable *1(Assistant professor of Department of Electronics & Telecommunication, SVIT Nasik, India) trupti.wable@pravara.in*1 Abstract -Fingerprints

More information

Lane Detection using Fuzzy C-Means Clustering

Lane Detection using Fuzzy C-Means Clustering Lane Detection using Fuzzy C-Means Clustering Kwang-Baek Kim, Doo Heon Song 2, Jae-Hyun Cho 3 Dept. of Computer Engineering, Silla University, Busan, Korea 2 Dept. of Computer Games, Yong-in SongDam University,

More information

Connected Component Analysis and Change Detection for Images

Connected Component Analysis and Change Detection for Images Connected Component Analysis and Change Detection for Images Prasad S.Halgaonkar Department of Computer Engg, MITCOE Pune University, India Abstract Detection of the region of change in images of a particular

More information

Segmentation of Isolated and Touching characters in Handwritten Gurumukhi Word using Clustering approach

Segmentation of Isolated and Touching characters in Handwritten Gurumukhi Word using Clustering approach Segmentation of Isolated and Touching characters in Handwritten Gurumukhi Word using Clustering approach Akashdeep Kaur Dr.Shaveta Rani Dr. Paramjeet Singh M.Tech Student (Associate Professor) (Associate

More information

N.Priya. Keywords Compass mask, Threshold, Morphological Operators, Statistical Measures, Text extraction

N.Priya. Keywords Compass mask, Threshold, Morphological Operators, Statistical Measures, Text extraction Volume, Issue 8, August ISSN: 77 8X International Journal of Advanced Research in Computer Science and Software Engineering Research Paper Available online at: www.ijarcsse.com A Combined Edge-Based Text

More information

COMPUTER AND ROBOT VISION

COMPUTER AND ROBOT VISION VOLUME COMPUTER AND ROBOT VISION Robert M. Haralick University of Washington Linda G. Shapiro University of Washington A^ ADDISON-WESLEY PUBLISHING COMPANY Reading, Massachusetts Menlo Park, California

More information

Implementation of Car License Plate Detection based on Vertical-Edge Method ALEKHYA NALLA 1, S.SRI VIDYA 2

Implementation of Car License Plate Detection based on Vertical-Edge Method ALEKHYA NALLA 1, S.SRI VIDYA 2 ISSN 2319-8885 Vol.03,Issue.33 October-2014, Pages:6623-6630 www.ijsetr.com Implementation of Car License Plate Detection based on Vertical-Edge Method ALEKHYA NALLA 1, S.SRI VIDYA 2 1 PG Scholar, Dept

More information

Comparison of Some Motion Detection Methods in cases of Single and Multiple Moving Objects

Comparison of Some Motion Detection Methods in cases of Single and Multiple Moving Objects Comparison of Some Motion Detection Methods in cases of Single and Multiple Moving Objects Shamir Alavi Electrical Engineering National Institute of Technology Silchar Silchar 788010 (Assam), India alavi1223@hotmail.com

More information

Time Stamp Detection and Recognition in Video Frames

Time Stamp Detection and Recognition in Video Frames Time Stamp Detection and Recognition in Video Frames Nongluk Covavisaruch and Chetsada Saengpanit Department of Computer Engineering, Chulalongkorn University, Bangkok 10330, Thailand E-mail: nongluk.c@chula.ac.th

More information

Neural Network Based Threshold Determination for Malaysia License Plate Character Recognition

Neural Network Based Threshold Determination for Malaysia License Plate Character Recognition Neural Network Based Threshold Determination for Malaysia License Plate Character Recognition M.Fukumi 1, Y.Takeuchi 1, H.Fukumoto 2, Y.Mitsukura 2, and M.Khalid 3 1 University of Tokushima, 2-1, Minami-Josanjima,

More information

Neuro-Fuzzy Shadow Filter

Neuro-Fuzzy Shadow Filter Neuro-Fuzzy Shadow Filter Benny P.L. Lo and Guang-Zhong Yang Department of Computing, Imperial College of Science, Technology and Medicine, 180 Queen s Gate, London SW7 2BZ, United Kingdom. {benny.lo,

More information

Journal of Industrial Engineering Research

Journal of Industrial Engineering Research IWNEST PUBLISHER Journal of Industrial Engineering Research (ISSN: 2077-4559) Journal home page: http://www.iwnest.com/aace/ Mammogram Image Segmentation Using voronoi Diagram Properties Dr. J. Subash

More information

HIKVISION. Automatic Number Plate Recognition Technology. A universal and efficient algorithm for global ANPR application

HIKVISION. Automatic Number Plate Recognition Technology. A universal and efficient algorithm for global ANPR application HIKVISION Automatic Number Plate Recognition Technology A universal and efficient algorithm for global ANPR application Table of Content 1. Background... 3 2. Key Technologies... 3 2.1. Plate Locating...

More information

DEVELOPMENT OF VISION-BASED HANDICAPPED LOGO REGONITION SYSTEM FOR DISABLED PARKING

DEVELOPMENT OF VISION-BASED HANDICAPPED LOGO REGONITION SYSTEM FOR DISABLED PARKING DEVELOPMENT OF VISION-BASED HANDICAPPED LOGO REGONITION SYSTEM FOR DISABLED PARKING Mohd Sahdan Bin Abd Ghani, Chee Kiang Lam and Kenneth Sundaraj School of Mechatronic Engineering, Universiti Malaysia

More information

Text Information Extraction And Analysis From Images Using Digital Image Processing Techniques

Text Information Extraction And Analysis From Images Using Digital Image Processing Techniques Text Information Extraction And Analysis From Images Using Digital Image Processing Techniques Partha Sarathi Giri Department of Electronics and Communication, M.E.M.S, Balasore, Odisha Abstract Text data

More information

An Efficient Character Segmentation Based on VNP Algorithm

An Efficient Character Segmentation Based on VNP Algorithm Research Journal of Applied Sciences, Engineering and Technology 4(24): 5438-5442, 2012 ISSN: 2040-7467 Maxwell Scientific organization, 2012 Submitted: March 18, 2012 Accepted: April 14, 2012 Published:

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

Reduced Image Noise on Shape Recognition Using Singular Value Decomposition for Pick and Place Robotic Systems

Reduced Image Noise on Shape Recognition Using Singular Value Decomposition for Pick and Place Robotic Systems Reduced Image Noise on Shape Recognition Using Singular Value Decomposition for Pick and Place Robotic Systems Angelo A. Beltran Jr. 1, Christian Deus T. Cayao 2, Jay-K V. Delicana 3, Benjamin B. Agraan

More information

Automatic License Plate Recognition

Automatic License Plate Recognition Interim Presentation Nijad Ashraf, Sajjad KM, Shehzad Abdulla, Saalim Jabir Dept. of CSE, MESCE Guide: Sajith N June 22, 2010 Outline 1 Outline 1 2 Outline 1 2 3 Outline 1 2 3 4 Design Licensing Outline

More information

Digital Image Processing

Digital Image Processing Digital Image Processing Traffic Congestion Analysis Dated: 28-11-2012 By: Romil Bansal (201207613) Ayush Datta (201203003) Rakesh Baddam (200930002) Abstract Traffic estimate from the static images is

More information

A Robust Automated Process for Vehicle Number Plate Recognition

A Robust Automated Process for Vehicle Number Plate Recognition A Robust Automated Process for Vehicle Number Plate Recognition Dr. Khalid Nazim S. A. #1, Mr. Adarsh N. #2 #1 Professor & Head, Department of CS&E, VVIET, Mysore, Karnataka, India. #2 Department of CS&E,

More information

An Improvement Study for Optical Character Recognition by using Inverse SVM in Image Processing Technique

An Improvement Study for Optical Character Recognition by using Inverse SVM in Image Processing Technique An Improvement Study for Optical Character Recognition by using Inverse SVM in Image Processing Technique I Dinesh KumarVerma, II Anjali Khatri I Assistant Professor (ECE) PDM College of Engineering, Bahadurgarh,

More information

CHAPTER 4 DETECTION OF DISEASES IN PLANT LEAF USING IMAGE SEGMENTATION

CHAPTER 4 DETECTION OF DISEASES IN PLANT LEAF USING IMAGE SEGMENTATION CHAPTER 4 DETECTION OF DISEASES IN PLANT LEAF USING IMAGE SEGMENTATION 4.1. Introduction Indian economy is highly dependent of agricultural productivity. Therefore, in field of agriculture, detection of

More information

Face Detection Using Color Based Segmentation and Morphological Processing A Case Study

Face Detection Using Color Based Segmentation and Morphological Processing A Case Study Face Detection Using Color Based Segmentation and Morphological Processing A Case Study Dr. Arti Khaparde*, Sowmya Reddy.Y Swetha Ravipudi *Professor of ECE, Bharath Institute of Science and Technology

More information

Detection and Classification of Vehicles

Detection and Classification of Vehicles Detection and Classification of Vehicles Gupte et al. 2002 Zeeshan Mohammad ECG 782 Dr. Brendan Morris. Introduction Previously, magnetic loop detectors were used to count vehicles passing over them. Advantages

More information

TEXT EXTRACTION FROM AN IMAGE BY USING DIGITAL IMAGE PROCESSING

TEXT EXTRACTION FROM AN IMAGE BY USING DIGITAL IMAGE PROCESSING TEXT EXTRACTION FROM AN IMAGE BY USING DIGITAL IMAGE PROCESSING Praveen Choudhary Assistant Professor, S.S. Jain Subodh P.G. College, Jaipur, India Prateeshvip79@gmail.com Dr. Vipin Kumar Jain Assistant

More information

A Document Image Analysis System on Parallel Processors

A Document Image Analysis System on Parallel Processors A Document Image Analysis System on Parallel Processors Shamik Sural, CMC Ltd. 28 Camac Street, Calcutta 700 016, India. P.K.Das, Dept. of CSE. Jadavpur University, Calcutta 700 032, India. Abstract This

More information

Real-Time Detection of Road Markings for Driving Assistance Applications

Real-Time Detection of Road Markings for Driving Assistance Applications Real-Time Detection of Road Markings for Driving Assistance Applications Ioana Maria Chira, Ancuta Chibulcutean Students, Faculty of Automation and Computer Science Technical University of Cluj-Napoca

More information

Character Recognition

Character Recognition Character Recognition 5.1 INTRODUCTION Recognition is one of the important steps in image processing. There are different methods such as Histogram method, Hough transformation, Neural computing approaches

More information

Haresh D. Chande #, Zankhana H. Shah *

Haresh D. Chande #, Zankhana H. Shah * Illumination Invariant Face Recognition System Haresh D. Chande #, Zankhana H. Shah * # Computer Engineering Department, Birla Vishvakarma Mahavidyalaya, Gujarat Technological University, India * Information

More information

International Journal of Advance Engineering and Research Development

International Journal of Advance Engineering and Research Development Scientific Journal of Impact Factor (SJIF): 4.72 International Journal of Advance Engineering and Research Development Volume 4, Issue 11, November -2017 e-issn (O): 2348-4470 p-issn (P): 2348-6406 Comparative

More information

CS231A Course Project Final Report Sign Language Recognition with Unsupervised Feature Learning

CS231A Course Project Final Report Sign Language Recognition with Unsupervised Feature Learning CS231A Course Project Final Report Sign Language Recognition with Unsupervised Feature Learning Justin Chen Stanford University justinkchen@stanford.edu Abstract This paper focuses on experimenting with

More information

Implementation of a Face Recognition System for Interactive TV Control System

Implementation of a Face Recognition System for Interactive TV Control System Implementation of a Face Recognition System for Interactive TV Control System Sang-Heon Lee 1, Myoung-Kyu Sohn 1, Dong-Ju Kim 1, Byungmin Kim 1, Hyunduk Kim 1, and Chul-Ho Won 2 1 Dept. IT convergence,

More information

Analysis of Image and Video Using Color, Texture and Shape Features for Object Identification

Analysis of Image and Video Using Color, Texture and Shape Features for Object Identification IOSR Journal of Computer Engineering (IOSR-JCE) e-issn: 2278-0661,p-ISSN: 2278-8727, Volume 16, Issue 6, Ver. VI (Nov Dec. 2014), PP 29-33 Analysis of Image and Video Using Color, Texture and Shape Features

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

Automatic License Plate Detection and Character Extraction with Adaptive Threshold and Projections

Automatic License Plate Detection and Character Extraction with Adaptive Threshold and Projections Automatic License Plate Detection and Character Extraction with Adaptive Threshold and Projections DANIEL GONZÁLEZ BALDERRAMA, OSSLAN OSIRIS VERGARA VILLEGAS, HUMBERTO DE JESÚS OCHOA DOMÍNGUEZ 2, VIANEY

More information

OBJECT SORTING IN MANUFACTURING INDUSTRIES USING IMAGE PROCESSING

OBJECT SORTING IN MANUFACTURING INDUSTRIES USING IMAGE PROCESSING OBJECT SORTING IN MANUFACTURING INDUSTRIES USING IMAGE PROCESSING Manoj Sabnis 1, Vinita Thakur 2, Rujuta Thorat 2, Gayatri Yeole 2, Chirag Tank 2 1 Assistant Professor, 2 Student, Department of Information

More information

Fingerprint Feature Extraction Based Discrete Cosine Transformation (DCT)

Fingerprint Feature Extraction Based Discrete Cosine Transformation (DCT) Fingerprint Feature Extraction Based Discrete Cosine Transformation (DCT) Abstract- Fingerprint identification and verification are one of the most significant and reliable identification methods. It is

More information

Vision-based Frontal Vehicle Detection and Tracking

Vision-based Frontal Vehicle Detection and Tracking Vision-based Frontal and Tracking King Hann LIM, Kah Phooi SENG, Li-Minn ANG and Siew Wen CHIN School of Electrical and Electronic Engineering The University of Nottingham Malaysia campus, Jalan Broga,

More information

New Edge-Enhanced Error Diffusion Algorithm Based on the Error Sum Criterion

New Edge-Enhanced Error Diffusion Algorithm Based on the Error Sum Criterion New Edge-Enhanced Error Diffusion Algorithm Based on the Error Sum Criterion Jae Ho Kim* Tae Il Chung Hyung Soon Kim* Kyung Sik Son* Pusan National University Image and Communication Laboratory San 3,

More information

Preceding vehicle detection and distance estimation. lane change, warning system.

Preceding vehicle detection and distance estimation. lane change, warning system. Preceding vehicle detection and distance estimation for lane change warning system U. Iqbal, M.S. Sarfraz Computer Vision Research Group (COMVis) Department of Electrical Engineering, COMSATS Institute

More information

AUTOMATED THRESHOLD DETECTION FOR OBJECT SEGMENTATION IN COLOUR IMAGE

AUTOMATED THRESHOLD DETECTION FOR OBJECT SEGMENTATION IN COLOUR IMAGE AUTOMATED THRESHOLD DETECTION FOR OBJECT SEGMENTATION IN COLOUR IMAGE Md. Akhtaruzzaman, Amir A. Shafie and Md. Raisuddin Khan Department of Mechatronics Engineering, Kulliyyah of Engineering, International

More information

Malaysian License Plate Recognition Artificial Neural Networks and Evolu Computation. The original publication is availabl

Malaysian License Plate Recognition Artificial Neural Networks and Evolu Computation. The original publication is availabl JAIST Reposi https://dspace.j Title Malaysian License Plate Recognition Artificial Neural Networks and Evolu Computation Stephen, Karungaru; Fukumi, Author(s) Minoru; Norio Citation Issue Date 2005-11

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

Mobile Robot Navigation Using Omnidirectional Vision

Mobile Robot Navigation Using Omnidirectional Vision Mobile Robot Navigation Using Omnidirectional Vision László Mornailla, Tamás Gábor Pekár, Csaba Gergő Solymosi, Zoltán Vámossy John von Neumann Faculty of Informatics, Budapest Tech Bécsi út 96/B, H-1034

More information