Multiple Vehicles License Plate Tracking and Recognition via Isotropic Dilation

Size: px
Start display at page:

Download "Multiple Vehicles License Plate Tracking and Recognition via Isotropic Dilation"

Transcription

1 011 Third International Conference on Computational Intelligence, Communication Systems and Networks Multiple Vehicles License Plate Tracking and Recognition via Isotropic Dilation Lorita Angeline 1 Wei Leong Khong Farrah Wong Ismail Saad Kenneth Tze Kin Teo Modeling, Simulation and Computational Algorithm Laboratory School of Engineering and Information Technology Universiti Malaysia Sabah Kota Kinabalu, Malaysia angeline.lorita@gmail.com 1 ktkteo@ieee.org Abstract In this paper, a new algorithm for Automatic License Plate Localisation and Recognition (ALPR) is proposed on the basis of isotropic dilation that can be achieved using the binary image Euclidean distance transform. In a blob analysis problem, any two Region of Interest (RoIs) that is discontinuous are typically treated as separate blobs. However, the proposed algorithm combine with Connected Component Analysis (CCA) are coded to seek for RoI within a certain distance of other RoI to be treated as non-unique. This paper investigates the design and implementation of several preprocessing techniques and isotropic dilation algorithm to classify moving vehicles with different backgrounds and varying angles. A multi-layer feed-forward back-propagation Neural Network is used to train the segmented and refined characters. The results obtained can be used for implementation in the vehicle parking management system. Keywords - isotropic dilation; euclidean distance transform; license plate localisation; blob analysis; overlapping bounding boxes; connected component analysis; image processing I. INTRODUCTION Automatic license plate localisation and recognition (ALPR) is an essential subject of research due to its numerous fields of applications. Localisation and recognition of vehicle s license plate reported in existing research in general composed of several processing steps: extraction of license plate region, segmentation of characters, and recognition of each character [1]. The escalating numbers of vehicles draw a positive implication to provide a professional and efficient parking system. Hence, a license plate number recognition is needed to support the parking management system []. As each and every vehicle will carry a unique license plate and there are no external cards, tags or transmitter need to be recognised [3]. Therefore, image processing based algorithm is practicable to develop a vehicle parking management system. Thus, the aim of this project is to design a system to detect and recognise the license plate of a moving vehicle. The rest of the paper is prepared as follows. The next section makes up of a review of other related and similar researches that have been covered in the literature. An overview of image processing approach and algorithms is given in Section III. Experimental results, limitations and discussions will be delivered in Section IV to demonstrate feasibility of the system. Overall project and future extensions are concluded in Section V. II. REVIEW OF OTHER RELATED WORKS The main purpose of this section is to render a brief reference source for the researchers involved in license plate localisation, despite of any specific application fields (for instance, parking management system, traffic surveillance, optical character recognition (OCR) and etc.). Sobel operator and edge detector techniques are proposed in many literatures for vehicle s license plate detection and localisation. Edges in a mix image have been widely used as an important criterion to detect and locate a vehicle s license plate. A license plate with frame can be easily located by using this technique, but it cannot be implemented to a frameless license plate. Without a good frame of a license plate, the localised and flood-filled edges unable to form a proper rectangular to be processed in the next step. As a result, the coordinates of the license plate cannot be determined [4]. Some researchers utilised the smearing algorithm to overcome this restriction. This algorithm is used to detect and locate the license plate on a vehicle by detecting the spaces in between each character. A grey scale image is processed along a horizontal scan. Two threshold values need to be set beforehand. If the numbers of white pixels are less than a desired or greater than the second desired threshold, the white pixels will be converted to black. Reference [3] suggested the threshold values for both horizontal and vertical smearing are preferable to be set as 10 and 100. Then, image will be further processed in vertical scan. A novel texture descriptor is based on line-segment features for text detection in images and video sequences. Reference [5] suggested a descriptor based on Improved Connective Hough Transform (ICHT), which represents a perceptual characteristic of texture, in terms of directionality, regularity, similarity, alignment and connectivity. A dense vertical edges region (text-like) is extracted from the contrast enhanced gray-scale image. This is handled via fast linesegments based processing and a simple geometrical filter. Next, an invariant descriptor is used for training and verifying the correctness of the detected regions. Character segmentation is an important step in vehicle s license plate localisation and recognition system. It is a process that separates words to a single character for easy identification [6]. There are numbers of difficulties in this step, such as influence of image s noise, frame of the license /11 $ IEEE DOI /CICSyN

2 plate, rivet, space mark, vertical overlap, horizontal overlap ligature, two-connected characters and etc. Reference [7] proposed a new algorithm for character segmentation of a vehicle s license plate. The algorithm applied Hough Transformation approach and the prior knowledge in horizontal and vertical segmentation respectively to solve the difficulties mentioned previously. The information of intensity is used to avoid the abruption and conglutination of characters which are the primary drawbacks from a binary image. There is another approach where Hough Transformation is used to detect lines in an image [8]. A curve r, is obtained for each pixel in an image space. Suppose that there are n points exist in the image space, then n curves will be obtained in the parameter space. If any of these curves cross the same point, then the n points in the image space will be determined as on a line. Therefore, a line in a space can be found by searching the cross points in the parameter space. The algorithm suggested has several advantages. Firstly, Hough Transformation implementing a vote strategy, and the invalid subsection lines are set as the minority so that it can be eliminated. Second, this algorithm based on local projection technique, which the effect from the background, illumination variance and rotation of the license plate can be weaken. This approach also avoids the necessity to rotate the image for rectification. Reference [9] proposed another method for character segmentation using horizontal scan line and clustering approach. The segmentation involves a process where collection of filtered character is distinguished to a sequence of characters that will be used in the later processing stage. This step is very essential due to the overlapping characters that are formed in the license plate image. Clustering technique is applied to identify significant blobs. Initially, the mixed image is enhanced using simple image enhancement techniques such as Fixed Filter, Minimum Filter, Opening and dependent threshold. Then, the image will be further processed using horizontal scan line and clustering technique. Thoroughly each image will be transformed into blob objects. Information such as location, height, and width of the license plate are analyzed and used in cluster exercising and choosing the best cluster with winner blobs. Reference [10] proposed a novel character classification and recognition algorithm. The system comprises an interface between the PC and the real-time DSP based Video Image Processing System that is used for capturing car plate images. There are three primary steps in pre-processing of the captured car plate image. These primary steps are brightness correction, contrast correction and noise filtering. A database that provides information about each character is created by studying various combinations such as where the points are linked together and number of such points that exist. The advantage of this technique is that it can be implemented using the real-time digital signal processing and returns a real-time recognition result. Template matching has been one of the widely used tools for character recognition. This technique has the advantage for recognition of the single font, not rotated, not tilted, and fixed size characters. Although this approach preferably utilised with binary images, but a grey level images also can obtain pretty good results from a properly built templates. Template matching method must have character images as template stored in memory. The segmented character will be identified by calculating the correlation coefficient. The idea behind the implementation of a correlation based identification scheme is when two template pools, one consisting of all the possible values of letters, and of all values of the digits, are constructed. III. METHODOLOGY An overview of image processing techniques used in this paper is summarised as in Fig. 1. A. Motion Detection and Pre-Processing Pre-processing is the requisite step to be taken for any image analyzing program. Without a proper pre-processing phase, the later segmentation and recognition procedure could be very ineffectual. It is very crucial to perform image enhancement to highlight the desired region in the processed image. Therein, it will be the vehicle and its license plate. Fig. shows image frames fed to the system. Background subtraction is performed on the image frames and follows by essential image enhancement steps: thresholding and median filtering. The algorithm of the motion detection and tracking of a moving vehicle are based on the authors previous work [11]. B. Isotropic Dilation combine with Connected Component Analysis(CCA) In a blob analysis problem, any two RoIs that are discontinuous are typically treated as separate blobs as shown in Fig. 3 and 4. To overcome this limitation, an Figure 1. Overview of image processing techniques. 55

3 C. Distinguishing Overlapping Bounding Boxes The main issue in tracking and distinguishing two moving objects is when these two objects come too close to each other and cause false tracking and localisation. The proposed algorithm is further analysed to overcome this limitation. One method to go about this is to store the bounding box properties and its size to be used as reference in the next iteration. Thus a subroutine is added to the algorithm to check for overlapping of bounding boxes. For this solution, the bounding box need to be broke into some key components. A bounding box has a centre point and two significant radiuses. A radius from the centre point to the edge in the x- direction, and a radius from the centre point to the edge in the y-direction. Figure. Motion detection and pre-processing. analysis needs to be done on finding out which pixels are within a certain distance of the foreground in a binary image. A useful technique called isotropic dilation that can be achieved using the binary image Euclidean distance transform has been studied in this paper. This technique combine with Connected Component Analysis (CCA) are coded to search for RoI within a certain distance of other RoI to be treated as non-unique. This approach is the main core for two cases in this paper which the first one is to distinguish multiple moving vehicles, and the second case is to locate license plate region. After the image frame is processed using simple enhancement technique, Euclidean distance transform is computed for each pixel to its nearest foreground pixel. For each pixel in the image, the distance transform assigns a number that is the distance between that pixel ( x 1, y 1 ) and the nearest nonzero pixel ( x, y ) of the image as in (1). In case 1, the distance between the two pixels is set to 16 pixels, whereas in case, the distance is set as 4 pixels. This implies that for any two RoIs that discontinuous and having a distance of 16 pixels (case 1) will be treated as non-unique. Similarly, any two RoIs that discontinuous and having a distance of 4 pixels will be treated as non-unique (case ). Fig. 5 and 6 show the isotropic dilation result for case 1 and. ( x y (1) 1 x) + ( y1 ) Next CCA analysis is performed on the resulted images. However, the isotropic dilation step has caused the RoIs padded with too many pixels. Therefore, all the elements in the resulted image are set to 0 corresponding to the background pixel in the input image. Finally, area of labelled components are analysed to find the valid RoI. Fig. 7 shows Signature Analysis as in [11] is performed to locate the license plate. Table I presents the pseudocode of isotropic dilation combine with CCA. Referring to the diagram in Fig. 8(a), two equations can be derived to determine if the two bounding boxes are overlapped. The first condition (1) is that if the radius from Figure 3. A typical blob analysis for case 1. Figure 4. A typical blob analysis for case. Figure 5. Isotropic dilation for case 1. Figure 6. Isotropic dilation for case. 56

4 TABLE I. ISOTROPIC DILATION COMBINE WITH CCA PSEUDOCODE Input: image frame difference 1 perform isotropic dilation { if case 1: Distinguish multiple moving vehicles img= bwdist(img)<=8 if case : License plate region img= bwdist(img)<= } perform Connected Component labeling for i=1:last_component label the "fat-padded" components result will be grouped of RoIs treated as nonunique 3 eliminate unnecessary padded pixels 4 measure properties of image region 5 find area>50 pixels output: case 1: RoIs (distinguished vehicles) case : RoI (license plate region) Figure 7. Signature Analysis to locate license plate region. The centre of bounding box 1 to bounding box ( x ) is less than or equal to the sum of the radius of 1 in the x- direction ( r 1 x ) and the radius of in the x-direction ( r x ); then bounding boxes 1 and are coordinated such that they share common coordinates in the x-plane. Equation () is formulated by using the same derivation for the y-plane. r x r1 x + 1 () r1 y r1 y + (3) Next, the sizes of the bounding boxes in the previous iteration are compared with the sizes in the current iteration. An analysis is carried out to check for pixels contribution from one bounding boxes to the others. Fig. 8(b) shows sizes of the bounding boxes for two consecutive bounding boxes. The figure implies that some white pixels in bounding box are contributed to bounding box 1 due to overlapping of the two bounding boxes. D. Character Segmentation and Recognition Following the successful vehicle s license plate localisation in image frames, procedures such as character segmentation, thinning algorithm and determining of universe of discourse are performed. There are several widely used techniques such as vertical projection, feature r 1 (a) Overlapping edges Frame 40 th Frame 50 th (b) Searching for pixels contribution Figure 8. Distinguishing two overlapping bounding boxes. vector extraction, mask technique and CCA to perform character segmentation. To simplify the process of identifying the characters, it is preferable to split the extracted plate into several images. Therein, each character will be classified as a connected component calculating the standard deviation of columns and rows and finally normalisation of each. CCA is implemented in this project on account of its simplicity works on both binary and grey level image and different measures of connectivity are doable. After all the characters have been successfully segmented, it will be inverted so that the character is in black colour instead of white. This is due to the characters used for neural network training are in black colour. Next, thinning algorithm is performed on the segmented character before it is fed to the neural network for testing. This algorithm removes the pixels so that an object without holes shrinks to a minimally connected stroke, which a one pixel width skeleton. On the other hand, an object with holes shrinks to a connected ring halfway between each hole and the outer boundary. The result has several advantages; it preserves the Euler number, retains the topology of the original object, and forces the skeleton being in the middle of the segmented character. Besides, the thinning approach also preserves the shape of the image, thus makes it a significant feature desirable for object recognition or extracted the image for classification. In detecting and tracking a moving vehicle s license plate, angles and distance from the camera influenced the quality of the extracted license plate; as the width of the characters may be differ from one and another. Thinning algorithm can be very beneficial here as the different width of each character is not the main issue anymore. The size of the segmented-thinned characters is not fixed since they are exposed to noises such as illumination change, intensities, shadow and etc. These noises tend to affect the cropping process to be varied from one to another. This caused the input of the network become nonstandard and prevents the data from feeding through the network. Universe of discourse is defined as the shortest matrix that 57

5 (b) Thinned character (c) Universe of discourse (a) Segmented character (d) Noise-free characters (e) Samples of noisy license plate fits the entire character skeleton. The universe of discourse is performed on the segmented-thinned character in order to standardise it. The image pre-processing is then followed by image resize to meet the network input requirement before fed to the neural network for both training and recognition procedures. In this paper, a simple multi-layer feed-forward backpropagation Neural Network with 35 inputs neuron is used to recognize the segmented characters. Early pre-processing steps performed on the segmented characters play a crucial role in determining the feasibility of the recognition. The recognised characters from the license plate will be stored in the database. Fig. 9 shows the segmented-thinned characters and database for the Artificial Neural Network system. IV. EXPERIMENTALS RESULTS AND DISCUSSIONS The proposed system has been simulated using Matlab 7.10 and MySQL Community Server Version The architecture of this simulation test involves an Intel Core Duo CPU and GB of server memory. There is no specific limitation for the camera. The prototype system works well for a clear image video taken from a variety of camera resolutions (minima mega pixels). The dimension of the sample video is 640 x 480 pixels. The distance between the camera setup and the vehicle in motion varied from to 10 meters at a height of meters from the ground. The system was simulated with vehicles in motion with different backgrounds, under illumination changes and varying poses and angles. The major difficulty in tracking and localisation of moving vehicles is the low quality input during the acquisition stage. The environment of the acquisition stage such as illumination, insufficient of light level and incorrect auto focus of the camera are among the factors. Fig. 10 shows the process of localisation of moving vehicle under insufficient light level. In the first iteration, the moving vehicle is detected. However as the vehicle moving forward, Figure 9. Character segmentation and recognition procedures. the system failed to detect the whole vehicle due to insufficient of light to make it visible to the system. Besides, the direction of sunlight is constantly changing as the day progresses and those changes may lead to misdetection as shadows occur following the moving objects. Image taken from outdoor parking spaces and indoor parking spaces are influenced by the sunlight and fluorescent light. Fig. 11 illustrates the effect of shadow in an outdoor environment. The input is taken where a vehicle is going down a slope. From the first iteration until the fourth iteration, the system is unable to distinguish the shadow and the moving vehicles. Another issue in the license plate segmentation is the effect of intensities. The surrounding light intensities might cause reflection on the license plate and lead to distortion in the next processing stage. Figure 10. Insufficient of light level. (a) Input (b) 1 st Iteration (c) 4 th Iteration Figure 11. Shadow effect. 58

6 Fig. 1 shows the successful results in tracking and localisation of two moving vehicles and the results are stored in the database. For overlapping bounding boxes analysis, at frame 40 th, it is noticeable that the two vehicles still treated as separated blobs. As vehicle getting closer to vehicle1 (at frame 50 th ), some white pixels in vehicle enter the set Euclidean distance transform of vehicle1 and treated as nonunique. Three conditions need to be satisfied in order to identify if overlapping of objects is occurred. Once all the three conditions are satisfied; both (1) and () are true, and pixels contribution is occurred, it can be concluded that the two bounding boxes must be overlapped or share a common edge. At frame 90 th, parts of vehicle disappear behind the vehicle1. At this iteration, both vehicles still treated as separated. Information on bounding boxes properties and its size in the previous iteration is pulled out to calculate the actual blob s size of the two vehicles. At frame 115 th, vehicle is totally blocked by vehicle1. V. CONCLUSIONS The aim of this paper is to experiment the potential of designing a system for vehicle motion detection and license plate localisation under non-ideal environment such as the existence of other objects that leads to unsuccessful results. A new algorithm based on isotropic dilation technique combined with Connected Component Analysis is coded to look for RoI within a certain distance of other RoI to be treated as non-unique. The proposed algorithm is further refined to distinguish overlapping of bounding boxes. Next, the localised license plate region is segmented to isolate each of the character. Finally, the isolated character is thinned before it is fed to the Artificial Neural Network system for recognition purpose and stored in the database. Based on the experimental results and discussion, it can be observed that the proposed system needs to be improved to be more robust. The major concern in this study is the environmental factors such as the shadow effect and insufficient of light level. The system still needs to be enhanced in the future to overcome the mentioned restrictions. ACKNOWLEDGMENT The authors would like to acknowledge the funding assistance of the Universiti Malaysia Sabah under the postgraduate research grant, GPS0001-TK-1/009 and University Postgraduate Research Scholarship Scheme (PGD) by Ministry of Science, Technology and Innovation of Malaysia (MOSTI). REFERENCES [1] Xiaodan Jia, Xinnian Wang, Wenju Li, Haijiao Wang, A novel algorithm for character segmentation of degraded license plate based on prior knowledge, Proceedings of the IEEE International Conference on Automation and Logistics. p49-53, 007. [] Haris Al-Qodri Maarif and Sar Sardy, Plate number recognition by using neural network, University of AL-Azhar Indonesia. Prosiding Semiloka Teknologi Simulasi dan Komputasi serta Aplikasi 006. p176-18, 006. [3] Serkan Ozbay and Ergun Ercelebi, Automatic vehicle identification by plate recognition, World Academic of Science, Engineering and Technology, 005. [4] L.Angeline, K.T.K. Teo and Farrah Wong, Smearing algorithm for vehicle parking system, Proceeding of SEIT 009 [Kota Kinabalu, Malaysia], Proceedings of the nd Seminar on Engineering and Information Technology, July 009. pp [5] Chu Duc Nguyen, Mohsen Ardabilian and Liming Chen, Robust car license plate localization using a novel texture descriptor, 009 Advanced Video and Signal Based Surveillance. Proceedings. IEEE. pp [6] B. Al-Badr and S.A.Mahmoud, Survey and bibiliography of arabic optical test recognition, Signal Processing, [7] Yungang Zhang, Changsui Zhang, A new algorithm for character segmentation of license plate, Intelligent Vehicles Symposium, 003 Proceedings. IEEE. pp [8] Yuan Jie, Hu Zhengyi, Wang Yanping, Finding corners by using Hough transform, Wuhan University Journal of Natural Science, Jan [9] Siri Norul Huda Sheikh Abdullah, Marzuki Khalid and Rubiah Yusof, License plate recognition using multi-cluster and multilayer neural networks, 006, Proceedings, IEEE. pp [10] B. Lim, W. Yeo, K. Tan and C. Y. Teo, DSP based real time character classification and recognition for car plate dectection and recognition, IEEE Conference on In-Circuit Serial Programming (ICSP), pp , [11] L.Angeline, M.Y. Choong, Farrah Wong and K.T.K. Teo, Tracking and localisation of moving vehicle license plate via Signature Analysis, Proceeding of ICOM 011, 4th International Conference on Mechatronics, May 011. Figure 1. Successful results. 59

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

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

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

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

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

Siti Norul Huda Sheikh Abdullah

Siti Norul Huda Sheikh Abdullah Siti Norul Huda Sheikh Abdullah mimi@ftsm.ukm.my 90 % is 90 % is standard license plates 10% is in special format Definitions: Car plate recognition, plate number recognition, vision plate, automatic

More information

Human Motion Detection and Tracking for Video Surveillance

Human Motion Detection and Tracking for Video Surveillance Human Motion Detection and Tracking for Video Surveillance Prithviraj Banerjee and Somnath Sengupta Department of Electronics and Electrical Communication Engineering Indian Institute of Technology, Kharagpur,

More information

MULTI ORIENTATION PERFORMANCE OF FEATURE EXTRACTION FOR HUMAN HEAD RECOGNITION

MULTI ORIENTATION PERFORMANCE OF FEATURE EXTRACTION FOR HUMAN HEAD RECOGNITION MULTI ORIENTATION PERFORMANCE OF FEATURE EXTRACTION FOR HUMAN HEAD RECOGNITION Panca Mudjirahardjo, Rahmadwati, Nanang Sulistiyanto and R. Arief Setyawan Department of Electrical Engineering, Faculty of

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

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

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

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

Hand Writing Numbers detection using Artificial Neural Networks

Hand Writing Numbers detection using Artificial Neural Networks Ahmad Saeed Mohammad 1 Dr. Ahmed Khalaf Hamoudi 2 Yasmin Abdul Ghani Abdul Kareem 1 1 Computer & Software Eng., College of Engineering, Al- Mustansiriya Univ., Baghdad, Iraq 2 Control & System Engineering,

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

Cursive Handwriting Recognition System Using Feature Extraction and Artificial Neural Network

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

More information

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

Mobile Human Detection Systems based on Sliding Windows Approach-A Review

Mobile Human Detection Systems based on Sliding Windows Approach-A Review Mobile Human Detection Systems based on Sliding Windows Approach-A Review Seminar: Mobile Human detection systems Njieutcheu Tassi cedrique Rovile Department of Computer Engineering University of Heidelberg

More information

Research on Recognition and Classification of Moving Objects in Mixed Traffic Based on Video Detection

Research on Recognition and Classification of Moving Objects in Mixed Traffic Based on Video Detection Hu, Qu, Li and Wang 1 Research on Recognition and Classification of Moving Objects in Mixed Traffic Based on Video Detection Hongyu Hu (corresponding author) College of Transportation, Jilin University,

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

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

A Fast and Accurate Eyelids and Eyelashes Detection Approach for Iris Segmentation

A Fast and Accurate Eyelids and Eyelashes Detection Approach for Iris Segmentation A Fast and Accurate Eyelids and Eyelashes Detection Approach for Iris Segmentation Walid Aydi, Lotfi Kamoun, Nouri Masmoudi Department of Electrical National Engineering School of Sfax Sfax University

More information

Gesture based PTZ camera control

Gesture based PTZ camera control Gesture based PTZ camera control Report submitted in May 2014 to the department of Computer Science and Engineering of National Institute of Technology Rourkela in partial fulfillment of the requirements

More information

Simulation of Zhang Suen Algorithm using Feed- Forward Neural Networks

Simulation of Zhang Suen Algorithm using Feed- Forward Neural Networks Simulation of Zhang Suen Algorithm using Feed- Forward Neural Networks Ritika Luthra Research Scholar Chandigarh University Gulshan Goyal Associate Professor Chandigarh University ABSTRACT Image Skeletonization

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

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

Topic 6 Representation and Description

Topic 6 Representation and Description Topic 6 Representation and Description Background Segmentation divides the image into regions Each region should be represented and described in a form suitable for further processing/decision-making Representation

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

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

Chapter 3 Image Registration. Chapter 3 Image Registration

Chapter 3 Image Registration. Chapter 3 Image Registration Chapter 3 Image Registration Distributed Algorithms for Introduction (1) Definition: Image Registration Input: 2 images of the same scene but taken from different perspectives Goal: Identify transformation

More information

A Neural Network Based Bank Cheque Recognition system for Malaysian Cheques

A Neural Network Based Bank Cheque Recognition system for Malaysian Cheques A Neural Network Based Bank Cheque Recognition system for Malaysian Cheques Ahmad Ridhwan Wahap 1 Marzuki Khalid 1 Abd. Rahim Ahmad 3 Rubiyah Yusof 1 1 Centre for Artificial Intelligence and Robotics,

More information

Mingle Face Detection using Adaptive Thresholding and Hybrid Median Filter

Mingle Face Detection using Adaptive Thresholding and Hybrid Median Filter Mingle Face Detection using Adaptive Thresholding and Hybrid Median Filter Amandeep Kaur Department of Computer Science and Engg Guru Nanak Dev University Amritsar, India-143005 ABSTRACT Face detection

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

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

An indirect tire identification method based on a two-layered fuzzy scheme

An indirect tire identification method based on a two-layered fuzzy scheme Journal of Intelligent & Fuzzy Systems 29 (2015) 2795 2800 DOI:10.3233/IFS-151984 IOS Press 2795 An indirect tire identification method based on a two-layered fuzzy scheme Dailin Zhang, Dengming Zhang,

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

Classification of objects from Video Data (Group 30)

Classification of objects from Video Data (Group 30) Classification of objects from Video Data (Group 30) Sheallika Singh 12665 Vibhuti Mahajan 12792 Aahitagni Mukherjee 12001 M Arvind 12385 1 Motivation Video surveillance has been employed for a long time

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

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

Auto-Digitizer for Fast Graph-to-Data Conversion

Auto-Digitizer for Fast Graph-to-Data Conversion Auto-Digitizer for Fast Graph-to-Data Conversion EE 368 Final Project Report, Winter 2018 Deepti Sanjay Mahajan dmahaj@stanford.edu Sarah Pao Radzihovsky sradzi13@stanford.edu Ching-Hua (Fiona) Wang chwang9@stanford.edu

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

CHAPTER 6 DETECTION OF MASS USING NOVEL SEGMENTATION, GLCM AND NEURAL NETWORKS

CHAPTER 6 DETECTION OF MASS USING NOVEL SEGMENTATION, GLCM AND NEURAL NETWORKS 130 CHAPTER 6 DETECTION OF MASS USING NOVEL SEGMENTATION, GLCM AND NEURAL NETWORKS A mass is defined as a space-occupying lesion seen in more than one projection and it is described by its shapes and margin

More information

Solving Word Jumbles

Solving Word Jumbles Solving Word Jumbles Debabrata Sengupta, Abhishek Sharma Department of Electrical Engineering, Stanford University { dsgupta, abhisheksharma }@stanford.edu Abstract In this report we propose an algorithm

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

Carmen Alonso Montes 23rd-27th November 2015

Carmen Alonso Montes 23rd-27th November 2015 Practical Computer Vision: Theory & Applications 23rd-27th November 2015 Wrap up Today, we are here 2 Learned concepts Hough Transform Distance mapping Watershed Active contours 3 Contents Wrap up Object

More information

A New Approach to Detect and Extract Characters from Off-Line Printed Images and Text

A New Approach to Detect and Extract Characters from Off-Line Printed Images and Text Available online at www.sciencedirect.com Procedia Computer Science 17 (2013 ) 434 440 Information Technology and Quantitative Management (ITQM2013) A New Approach to Detect and Extract Characters from

More information

A Method of weld Edge Extraction in the X-ray Linear Diode Arrays. Real-time imaging

A Method of weld Edge Extraction in the X-ray Linear Diode Arrays. Real-time imaging 17th World Conference on Nondestructive Testing, 25-28 Oct 2008, Shanghai, China A Method of weld Edge Extraction in the X-ray Linear Diode Arrays Real-time imaging Guang CHEN, Keqin DING, Lihong LIANG

More information

Signature Recognition by Pixel Variance Analysis Using Multiple Morphological Dilations

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

More information

Chapter 9 Object Tracking an Overview

Chapter 9 Object Tracking an Overview Chapter 9 Object Tracking an Overview The output of the background subtraction algorithm, described in the previous chapter, is a classification (segmentation) of pixels into foreground pixels (those belonging

More information

Using Edge Detection in Machine Vision Gauging Applications

Using Edge Detection in Machine Vision Gauging Applications Application Note 125 Using Edge Detection in Machine Vision Gauging Applications John Hanks Introduction This application note introduces common edge-detection software strategies for applications such

More information

Motion Detection Algorithm

Motion Detection Algorithm Volume 1, No. 12, February 2013 ISSN 2278-1080 The International Journal of Computer Science & Applications (TIJCSA) RESEARCH PAPER Available Online at http://www.journalofcomputerscience.com/ Motion Detection

More information

An Efficient Character Segmentation Algorithm for Printed Chinese Documents

An Efficient Character Segmentation Algorithm for Printed Chinese Documents An Efficient Character Segmentation Algorithm for Printed Chinese Documents Yuan Mei 1,2, Xinhui Wang 1,2, Jin Wang 1,2 1 Jiangsu Engineering Center of Network Monitoring, Nanjing University of Information

More information

Lecture 6: Edge Detection

Lecture 6: Edge Detection #1 Lecture 6: Edge Detection Saad J Bedros sbedros@umn.edu Review From Last Lecture Options for Image Representation Introduced the concept of different representation or transformation Fourier Transform

More information

Automatic License Plate Recognition ALPRfor Bangladeshi Vehicles

Automatic License Plate Recognition ALPRfor Bangladeshi Vehicles Global Journal of Computer Science and Technology Volume 11 Issue 21 Version 1.0 Type: Double Blind Peer Reviewed International Research Journal Publisher: Global Journals Inc. (USA) Online ISSN: 0975-4172

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

A MODULARIZED APPROACH FOR REAL TIME VEHICULAR SURVEILLANCE WITH A CUSTOM HOG BASED LPR SYSTEM. Vivek Joy 1, Kakkanad, Kochi, Kerala.

A MODULARIZED APPROACH FOR REAL TIME VEHICULAR SURVEILLANCE WITH A CUSTOM HOG BASED LPR SYSTEM. Vivek Joy 1, Kakkanad, Kochi, Kerala. Available online at http://euroasiapub.org/journals.php Vol. 7 Issue 6, June-2017, pp. 15~27 Thomson Reuters Researcher ID: L-5236-2015 A MODULARIZED APPROACH FOR REAL TIME VEHICULAR SURVEILLANCE WITH

More information

Seminar. Topic: Object and character Recognition

Seminar. Topic: Object and character Recognition Seminar Topic: Object and character Recognition Tse Ngang Akumawah Lehrstuhl für Praktische Informatik 3 Table of content What's OCR? Areas covered in OCR Procedure Where does clustering come in Neural

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

Region-based Segmentation

Region-based Segmentation Region-based Segmentation Image Segmentation Group similar components (such as, pixels in an image, image frames in a video) to obtain a compact representation. Applications: Finding tumors, veins, etc.

More information

In this assignment, we investigated the use of neural networks for supervised classification

In this assignment, we investigated the use of neural networks for supervised classification Paul Couchman Fabien Imbault Ronan Tigreat Gorka Urchegui Tellechea Classification assignment (group 6) Image processing MSc Embedded Systems March 2003 Classification includes a broad range of decision-theoric

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

Layout Segmentation of Scanned Newspaper Documents

Layout Segmentation of Scanned Newspaper Documents , pp-05-10 Layout Segmentation of Scanned Newspaper Documents A.Bandyopadhyay, A. Ganguly and U.Pal CVPR Unit, Indian Statistical Institute 203 B T Road, Kolkata, India. Abstract: Layout segmentation algorithms

More information

An Efficient Iris Recognition Using Correlation Method

An Efficient Iris Recognition Using Correlation Method , pp. 31-40 An Efficient Iris Recognition Using Correlation Method S.S. Kulkarni 1, G.H. Pandey 2, A.S.Pethkar 3, V.K. Soni 4, &P.Rathod 5 Department of Electronics and Telecommunication Engineering, Thakur

More information

Idle Object Detection in Video for Banking ATM Applications

Idle Object Detection in Video for Banking ATM Applications Research Journal of Applied Sciences, Engineering and Technology 4(24): 5350-5356, 2012 ISSN: 2040-7467 Maxwell Scientific Organization, 2012 Submitted: March 18, 2012 Accepted: April 06, 2012 Published:

More information

Detection of Edges Using Mathematical Morphological Operators

Detection of Edges Using Mathematical Morphological Operators OPEN TRANSACTIONS ON INFORMATION PROCESSING Volume 1, Number 1, MAY 2014 OPEN TRANSACTIONS ON INFORMATION PROCESSING Detection of Edges Using Mathematical Morphological Operators Suman Rani*, Deepti Bansal,

More information

ISSN: [Mukund* et al., 6(4): April, 2017] Impact Factor: 4.116

ISSN: [Mukund* et al., 6(4): April, 2017] Impact Factor: 4.116 IJESRT INTERNATIONAL JOURNAL OF ENGINEERING SCIENCES & RESEARCH TECHNOLOGY ENGLISH CURSIVE SCRIPT RECOGNITION Miss.Yewale Poonam Mukund*, Dr. M.S.Deshpande * Electronics and Telecommunication, TSSM's Bhivarabai

More information

A NOVEL BINARIZATION METHOD FOR QR-CODES UNDER ILL ILLUMINATED LIGHTINGS

A NOVEL BINARIZATION METHOD FOR QR-CODES UNDER ILL ILLUMINATED LIGHTINGS A NOVEL BINARIZATION METHOD FOR QR-CODES UNDER ILL ILLUMINATED LIGHTINGS N.POOMPAVAI 1 Dr. R. BALASUBRAMANIAN 2 1 Research Scholar, JJ College of Arts and Science, Bharathidasan University, Trichy. 2 Research

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

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

Graph-based Image Segmentation using K-Means Clustering and Normalised Cuts

Graph-based Image Segmentation using K-Means Clustering and Normalised Cuts 0 Fourth International Conference on Computational Intelligence, Communication Systems and Networks Graph-based Image Segmentation using K-Means Clustering and Normalised Cuts Mei Yeen Choong, Wei Leong

More information

Toward Part-based Document Image Decoding

Toward Part-based Document Image Decoding 2012 10th IAPR International Workshop on Document Analysis Systems Toward Part-based Document Image Decoding Wang Song, Seiichi Uchida Kyushu University, Fukuoka, Japan wangsong@human.ait.kyushu-u.ac.jp,

More information

Calibration of a Different Field-of-view Stereo Camera System using an Embedded Checkerboard Pattern

Calibration of a Different Field-of-view Stereo Camera System using an Embedded Checkerboard Pattern Calibration of a Different Field-of-view Stereo Camera System using an Embedded Checkerboard Pattern Pathum Rathnayaka, Seung-Hae Baek and Soon-Yong Park School of Computer Science and Engineering, Kyungpook

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

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

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

More information

INTELLIGENT transportation systems have a significant

INTELLIGENT transportation systems have a significant INTL JOURNAL OF ELECTRONICS AND TELECOMMUNICATIONS, 205, VOL. 6, NO. 4, PP. 35 356 Manuscript received October 4, 205; revised November, 205. DOI: 0.55/eletel-205-0046 Efficient Two-Step Approach for Automatic

More information

CHAPTER-4 LOCALIZATION AND CONTOUR DETECTION OF OPTIC DISK

CHAPTER-4 LOCALIZATION AND CONTOUR DETECTION OF OPTIC DISK CHAPTER-4 LOCALIZATION AND CONTOUR DETECTION OF OPTIC DISK Ocular fundus images can provide information about ophthalmic, retinal and even systemic diseases such as hypertension, diabetes, macular degeneration

More information

International Journal of Advance Research in Engineering, Science & Technology

International Journal of Advance Research in Engineering, Science & Technology Impact Factor (SJIF): 3.632 International Journal of Advance Research in Engineering, Science & Technology e-issn: 2393-9877, p-issn: 2394-2444 (Special Issue for ITECE 2016) Analysis and Implementation

More information

An Edge Detection Algorithm for Online Image Analysis

An Edge Detection Algorithm for Online Image Analysis An Edge Detection Algorithm for Online Image Analysis Azzam Sleit, Abdel latif Abu Dalhoum, Ibraheem Al-Dhamari, Afaf Tareef Department of Computer Science, King Abdulla II School for Information Technology

More information

Short Survey on Static Hand Gesture Recognition

Short Survey on Static Hand Gesture Recognition Short Survey on Static Hand Gesture Recognition Huu-Hung Huynh University of Science and Technology The University of Danang, Vietnam Duc-Hoang Vo University of Science and Technology The University of

More information

The Application of Image Processing to Solve Occlusion Issue in Object Tracking

The Application of Image Processing to Solve Occlusion Issue in Object Tracking The Application of Image Processing to Solve Occlusion Issue in Object Tracking Yun Zhe Cheong 1 and Wei Jen Chew 1* 1 School of Engineering, Taylor s University, 47500 Subang Jaya, Selangor, Malaysia.

More information

Critique: Efficient Iris Recognition by Characterizing Key Local Variations

Critique: Efficient Iris Recognition by Characterizing Key Local Variations Critique: Efficient Iris Recognition by Characterizing Key Local Variations Authors: L. Ma, T. Tan, Y. Wang, D. Zhang Published: IEEE Transactions on Image Processing, Vol. 13, No. 6 Critique By: Christopher

More information

International Journal of Modern Engineering and Research Technology

International Journal of Modern Engineering and Research Technology Volume 4, Issue 3, July 2017 ISSN: 2348-8565 (Online) International Journal of Modern Engineering and Research Technology Website: http://www.ijmert.org Email: editor.ijmert@gmail.com A Novel Approach

More information

IRIS SEGMENTATION OF NON-IDEAL IMAGES

IRIS SEGMENTATION OF NON-IDEAL IMAGES IRIS SEGMENTATION OF NON-IDEAL IMAGES William S. Weld St. Lawrence University Computer Science Department Canton, NY 13617 Xiaojun Qi, Ph.D Utah State University Computer Science Department Logan, UT 84322

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

EE368 Project Report CD Cover Recognition Using Modified SIFT Algorithm

EE368 Project Report CD Cover Recognition Using Modified SIFT Algorithm EE368 Project Report CD Cover Recognition Using Modified SIFT Algorithm Group 1: Mina A. Makar Stanford University mamakar@stanford.edu Abstract In this report, we investigate the application of the Scale-Invariant

More information

Comparative Study of ROI Extraction of Palmprint

Comparative Study of ROI Extraction of Palmprint 251 Comparative Study of ROI Extraction of Palmprint 1 Milind E. Rane, 2 Umesh S Bhadade 1,2 SSBT COE&T, North Maharashtra University Jalgaon, India Abstract - The Palmprint region segmentation is an important

More information

AUTOMATIC RECOGNITION OF OBJECT DETECTION USING MATLAB

AUTOMATIC RECOGNITION OF OBJECT DETECTION USING MATLAB AUTOMATIC RECOGNITION OF OBJECT DETECTION USING MATLAB A.Anitha 1,J.Gayatri 2,Ashwini.k 3 Department of Electronics and Communication and Instrumentation,VTU University. R.Y.M.Engineering College, Bellary

More information

An algorithm of lips secondary positioning and feature extraction based on YCbCr color space SHEN Xian-geng 1, WU Wei 2

An algorithm of lips secondary positioning and feature extraction based on YCbCr color space SHEN Xian-geng 1, WU Wei 2 International Conference on Advances in Mechanical Engineering and Industrial Informatics (AMEII 015) An algorithm of lips secondary positioning and feature extraction based on YCbCr color space SHEN Xian-geng

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

A Study on Similarity Computations in Template Matching Technique for Identity Verification

A Study on Similarity Computations in Template Matching Technique for Identity Verification A Study on Similarity Computations in Template Matching Technique for Identity Verification Lam, S. K., Yeong, C. Y., Yew, C. T., Chai, W. S., Suandi, S. A. Intelligent Biometric Group, School of Electrical

More information

LPR Camera Installation Guidelines

LPR Camera Installation Guidelines LPR Camera Installation Guidelines Article ID: GV29-12-11-07-t Release Date: 11/07/2012 Camera Installation To increase the accuracy of license plate recognition, be sure to install the LPR cameras properly

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

Extract an Essential Skeleton of a Character as a Graph from a Character Image

Extract an Essential Skeleton of a Character as a Graph from a Character Image Extract an Essential Skeleton of a Character as a Graph from a Character Image Kazuhisa Fujita University of Electro-Communications 1-5-1 Chofugaoka, Chofu, Tokyo, 182-8585 Japan k-z@nerve.pc.uec.ac.jp

More information

An Approach to Detect Text and Caption in Video

An Approach to Detect Text and Caption in Video An Approach to Detect Text and Caption in Video Miss Megha Khokhra 1 M.E Student Electronics and Communication Department, Kalol Institute of Technology, Gujarat, India ABSTRACT The video image spitted

More information

Vehicle Detection Method using Haar-like Feature on Real Time System

Vehicle Detection Method using Haar-like Feature on Real Time System Vehicle Detection Method using Haar-like Feature on Real Time System Sungji Han, Youngjoon Han and Hernsoo Hahn Abstract This paper presents a robust vehicle detection approach using Haar-like feature.

More information

1. INTRODUCTION. AMS Subject Classification. 68U10 Image Processing

1. INTRODUCTION. AMS Subject Classification. 68U10 Image Processing ANALYSING THE NOISE SENSITIVITY OF SKELETONIZATION ALGORITHMS Attila Fazekas and András Hajdu Lajos Kossuth University 4010, Debrecen PO Box 12, Hungary Abstract. Many skeletonization algorithms have been

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

CS 231A Computer Vision (Winter 2014) Problem Set 3

CS 231A Computer Vision (Winter 2014) Problem Set 3 CS 231A Computer Vision (Winter 2014) Problem Set 3 Due: Feb. 18 th, 2015 (11:59pm) 1 Single Object Recognition Via SIFT (45 points) In his 2004 SIFT paper, David Lowe demonstrates impressive object recognition

More information

Evaluation of Moving Object Tracking Techniques for Video Surveillance Applications

Evaluation of Moving Object Tracking Techniques for Video Surveillance Applications International Journal of Current Engineering and Technology E-ISSN 2277 4106, P-ISSN 2347 5161 2015INPRESSCO, All Rights Reserved Available at http://inpressco.com/category/ijcet Research Article Evaluation

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

IJIRST International Journal for Innovative Research in Science & Technology Volume 1 Issue 10 March 2015 ISSN (online):

IJIRST International Journal for Innovative Research in Science & Technology Volume 1 Issue 10 March 2015 ISSN (online): IJIRST International Journal for Innovative Research in Science & Technology Volume 1 Issue 10 March 2015 ISSN (online): 2349-6010 Counting of Micro-Organisms for Medical Diagnosis using Image Processing

More information