EE368/CS232 Digital Image Processing Winter Homework #3 Released: Monday, January 22 Due: Wednesday, January 31, 1:30pm

Size: px
Start display at page:

Download "EE368/CS232 Digital Image Processing Winter Homework #3 Released: Monday, January 22 Due: Wednesday, January 31, 1:30pm"

Transcription

1 EE368/CS232 Digital Image Processing Winter Lecture Review and Quizzes (Due: Wednesday, January 31, 1:30pm) Please review what you have learned in class and then complete the online quiz questions for the following sections on OpenEdX 1 : (a) Morphological Image Processing Homework #3 Released: Monday, January 22 Due: Wednesday, January 31, 1:30pm 1. License Plate Recognition (Total of 13 points) In this problem, we study how to recognize the characters on a license plate using morphological image processing. Please download the two images hw3_license_plate_clean.png and hw3_license_plate_noisy.png from the handouts webpage. Please also download the file hw3_character_templates.zip, which contains 36 separate images of the alphanumeric characters ABC XYZ in the same font as the EIBLT8H written on the license plate. hw3_license_plate_clean.png hw3_license_plate_noisy.png (a) Binarize the clean license plate image, the noisy license plate image, and the template images, so that the large characters in the middle of the plate appear as white and the background appears as black. Choose the threshold by applying Otsu s method on the clean license plate image, and use the same threshold for all binarization operations in this problem. Submit the binarized clean and noisy license plate images and the binarized template images. (2 points) 1 1

2 (b) Perform character detection by erosion in the binarized clean license (MATLAB function: imerode). To eliminate the effects of slight mismatches along the character boundaries, compute a slightly eroded template which is erode(template, 3x3 square), and then use the eroded template as the SE in the erosion detector. For each template that generates a nonzero detection result, dilate the eroded license plate image (MATLAB function: imdilate) by the template for visualization purposes and submit the dilation result, like shown in the following example for the template B. Which characters are detected by this approach? Are there any false positive detections, and if so, why? (3 points) (c) Repeat Part B, except use a hit-miss filter in place of erosion for the detector (MATLAB function: bwhitmiss). Use the same SE as in Part B for the foreground SE. For the background SE, use the difference dilate(template, 5x5 square) dilate(template, 3x3 square) which extracts a thin outline around the character. Comment on the advantages of the hitmiss detector compared to the erosion detector. (3 points) (d) Repeat Part C, except replace the clean license plate image by the noisy license plate image. Comment on how the noise affects the hit-miss detector s accuracy. (2 points) (e) Repeat Part C, except replace the clean license plate image by the noisy license plate image and replace the hit-miss filter by the minimum of two rank filters: rank-filter(binary image, p1, SE1) and rank-filter(not[binary image], p2, SE2). Here, SE1 and SE2 are the same foreground and background SEs used in Part C, and p1 and p2 indicate the two ranks. Note that if p1 = p2 = 1, then the minimum of the two rank filters is the same as the hit-miss filter. Choose and report the ranks p1 and p2 that enable correct detection of the characters in the noisy license plate without false positives. The MATLAB function for rank filtering is ordfilt2. (3 points) Note: Please attach relevant MATLAB code. 2

3 2. Plant Leaf Classification (Total of 8 points) Applications such as LeafSnap 2 use plant leaf classification algorithms to identify different plant species in nature. Please download the images hw3_leaf_training_{1,2,3,4,5}.jpg and hw3_leaf_testing_1.jpg from the handouts webpage. hw3_leaf_training_{1,2,3,4,5}.jpg hw3_leaf_testing_1.jpg Design and implement an image processing algorithm to automatically determine which of the 5 training images is most similar to the testing image. Clearly describe the steps of your algorithm, including intermediate results if they help to explain the process. Your algorithm should generate a numerical similarity score, or alternatively a distance score, between a pair of leaf images, e.g., similarity(training image #1, testing image) = 0.8, similarity(training image #2, testing image) = 0.6, etc. Report the similarity score or distance score between every training image and the testing image, i.e., 5 numbers. Does your algorithm assign the highest similarity score, or equivalently lowest distance score, to the correct training leaf? Creative solutions are welcome. (8 points) Note: Please attach relevant MATLAB code

4 3. Sharpness Enhancement by Dilation and Erosion (Total of 7 points) In this problem, we use an iterative grayscale morphological image processing algorithm to enhance the sharpness of structures in a blurry image. (a) Please download the image hw3_road_sign_school_blurry.jpg from the handouts webpage. This image shows a school crossing road sign taken by an out-of-focus camera. Apply 10 iterations of the following algorithm. Design and report your structuring element. Submit the resulting image after 10 iterations. Comment on which features in the image have been made sharper. (MATLAB functions: imdilate, imerode, strel). Im := Input Image For Iteration = 1:NumIterations Im_d = dilate(im, W) % Note that this is grayscale dilation Im_e = erode(im, W) % or erosion with structuring element W Im_h = 0.5(Im_d + Im_e) End % Perform the following test for each pixel If Im > Im_h Im := Im_d Else Im := Im_e End (b) Submit plots of the intensity profile in row 338 after iterations 1, 2,, 6. For example, the following is a plot of the intensity profile in row 338 in the original image. Comment on how the algorithm iteratively changes the intensity profile. (3 points) Intensity Profile in Row 338 for Original Image x Note: Please attach relevant MATLAB code. 4

5 4. Noise Reduction by Median Filtering (Total of 8 points) In this problem, we study how to use different types of median filtering to reduce salt-and-pepper noise in vintage photographs. (a) Please download the images hw3_building.jpg and hw3_train.jpg from the handouts webpage. Apply median filtering with a 3x3 window and a 5x5 window (MATLAB function: medfilt2). Display and submit the resulting images. For each window size, comment on how effectively the noise is reduced while sharp edges and features in the image are preserved. (b) Given a set of input values f 1, f 2,!, f and weights w N 1,w 2,,w N, weighted median filtering repeats the value fi by wi times and then computes the median of all the repeated values: Apply your weighted median filter to each image. Display and submit the resulting image. Compare to the results from part (a) in terms of how effectively noise is reduced while sharp edges and features are preserved. Note: Please attach relevant MATLAB code. g = median( w 1 f 1,w 2 f 2,,w N f N ) w f = f, f,, f Implement a weighted median filter with the following 5x5 window of weights, where the brackets around 4 indicate the center of the sliding window: [ 4] w times 5

6 Bonus Problems You can get 100% of the credit on this homework without doing any of the bonus problems. You can get 4 extra points if you solve one of the two bonus problems. If you do so, please submit your solution for only one of them (otherwise only the first will be graded and we will ignore the second). Bonus #1: Android with OpenCV (Total of 4 points) Read Tutorial #2 (OpenCV for Android Setup) on the class Android webpage. Download and install all the necessary software as explained in Tutorial #2. Select one of the examples found on the class GitHub repository ( that uses OpenCV: (i) locally adaptive binarization (Tutorial2/AdaptiveBinarization) (ii) human face detection (Tutorial2/FaceDetection) (iii) local feature keypoint extraction (OtherSamples/FeatureKeypoints) (iv) edges/lines/circle detection (OtherSamples/EdgesLinesCircles) Run the example on an Android device and take a screenshot. The screenshot should clearly demonstrate a result of the underlying method or algorithm (e.g., local feature keypoints overlaid on an object). Submit your screenshot. 6

7 Bonus #2: OpenCV Library (Total of 4 points) This problem guides you through the process of setting up the OpenCV library on your computer. After the installation, you will be able to apply image processing functions implemented in OpenCV on images/videos you load into MATLAB. (a) Method 1: Mac OS X only Install the latest version of Xcode from the app store. Install Homebrew ( Install OpenCV using Homebrew package manager using the commands below. brew install opencv3 brew link opencv3 Method 2: Any platform Download and install OpenCV: Supported versions: OpenCV 2.4 through 3.3 For OpenCV versions 3.0 and up make sure to also install opencv_contrib ( **Important** opencv_contrib version MUST match OpenCV version! Windows: the libraries have already been pre-built and are available through DLL files. Mac/Linux: the libraries must be generated: (b) In MATLAB, please type mex setup and select one of the available compilers. For Windows users, you can download Visual C++ Express to obtain a suitable compiler: For Mac users, you can download XCode to obtain gcc as the compiler: (c) This mexopencv toolkit provides a MATLAB MEX interface to many OpenCV functions. If you are using OpenCV 3.3, please download and install the toolkit from: If you are using an older version of OpenCV, please install the version of the toolkit that matches your OpenCV version. For instance, if you have OpenCV 2.4, the appropriate toolkit version can be found at: 7

8 **Important** Mexopencv version MUST match OpenCV version Please unzip the mexopencv folder to a convenient location on your hard drive. Then, please read the README file contained inside the folder to get specific installation instructions for your operating system. For Mac users, pkg-config can be obtained either using Homebrew (brew install pkg-config) or as part of the MacPorts package: For Mac users, the following page may be useful for troubleshooting issues with mex: (d) Please complete one of the following tasks. (i) Download the images hw3_faces_1.jpg and hw3_faces_2.jpg from the handouts webpage. Detect faces in each image using the Viola-Jones face detector that is already implemented in OpenCV. Reference code exists on the mexopencv webpage and in the samples folder. Submit a version of each image where the bounding boxes of the detected faces are clearly overlaid on top of the image. (ii) Download the images hw3_cd_cover_1.jpg and hw3_cd_cover_2.jpg from the handouts webpage. Detect SURF keypoints in each image. Reference code exists in the mexopencv samples folder. Keep only the 150 SURF keypoints with the largest Hessian response values. Submit a version of each image where the SURF keypoints are clearly overlaid on top of the image, with each keypoints position, scale, and orientation clearly indicated (function: cv.drawkeypoints). (iii) Download the image hw3_paper.png from the handouts webpage. Apply locally adaptive thresholding (function: cv.adaptivethreshold) to binarize the image, 8

9 so that the text appears as black pixels and the blank space on the page appears as white pixels. Report the block size you select for locally adaptive thresholding. Submit the binarized image. 9

CS 484, Fall 2018 Homework Assignment 1: Binary Image Analysis

CS 484, Fall 2018 Homework Assignment 1: Binary Image Analysis CS 484, Fall 2018 Homework Assignment 1: Binary Image Analysis Due: October 31, 2018 The goal of this assignment is to find objects of interest in images using binary image analysis techniques. Question

More information

Carmen Alonso Montes 23rd-27th November 2015

Carmen Alonso Montes 23rd-27th November 2015 Practical Computer Vision: Theory & Applications calonso@bcamath.org 23rd-27th November 2015 Alternative Software Alternative software to matlab Octave Available for Linux, Mac and windows For Mac and

More information

MATLAB 6.5 Image Processing Toolbox Tutorial

MATLAB 6.5 Image Processing Toolbox Tutorial MATLAB 6.5 Image Processing Toolbox Tutorial The purpose of this tutorial is to gain familiarity with MATLAB s Image Processing Toolbox. This tutorial does not contain all of the functions available in

More information

More image filtering , , Computational Photography Fall 2017, Lecture 4

More image filtering , , Computational Photography Fall 2017, Lecture 4 More image filtering http://graphics.cs.cmu.edu/courses/15-463 15-463, 15-663, 15-862 Computational Photography Fall 2017, Lecture 4 Course announcements Any questions about Homework 1? - How many of you

More information

Finger print Recognization. By M R Rahul Raj K Muralidhar A Papi Reddy

Finger print Recognization. By M R Rahul Raj K Muralidhar A Papi Reddy Finger print Recognization By M R Rahul Raj K Muralidhar A Papi Reddy Introduction Finger print recognization system is under biometric application used to increase the user security. Generally the biometric

More information

Scrabble Board Automatic Detector for Third Party Applications

Scrabble Board Automatic Detector for Third Party Applications Scrabble Board Automatic Detector for Third Party Applications David Hirschberg Computer Science Department University of California, Irvine hirschbd@uci.edu Abstract Abstract Scrabble is a well-known

More information

Automatic Licenses Plate Recognition System

Automatic Licenses Plate Recognition System Automatic Licenses Plate Recognition System Garima R. Yadav Dept. of Electronics & Comm. Engineering Marathwada Institute of Technology, Aurangabad (Maharashtra), India yadavgarima08@gmail.com Prof. H.K.

More information

Lecture # 01. Introduction

Lecture # 01. Introduction Digital Image Processing Lecture # 01 Introduction Autumn 2012 Agenda Why image processing? Image processing examples Course plan History of imaging Fundamentals of image processing Components of image

More information

Keyword: Morphological operation, template matching, license plate localization, character recognition.

Keyword: Morphological operation, template matching, license plate localization, character recognition. Volume 4, Issue 11, November 2014 ISSN: 2277 128X International Journal of Advanced Research in Computer Science and Software Engineering Research Paper Available online at: www.ijarcsse.com Automatic

More information

An Evaluation of Automatic License Plate Recognition Vikas Kotagyale, Prof.S.D.Joshi

An Evaluation of Automatic License Plate Recognition Vikas Kotagyale, Prof.S.D.Joshi An Evaluation of Automatic License Plate Recognition Vikas Kotagyale, Prof.S.D.Joshi Department of E&TC Engineering,PVPIT,Bavdhan,Pune ABSTRACT: In the last decades vehicle license plate recognition systems

More information

A Review of Optical Character Recognition System for Recognition of Printed Text

A Review of Optical Character Recognition System for Recognition of Printed Text IOSR Journal of Computer Engineering (IOSR-JCE) e-issn: 2278-0661,p-ISSN: 2278-8727, Volume 17, Issue 3, Ver. II (May Jun. 2015), PP 28-33 www.iosrjournals.org A Review of Optical Character Recognition

More information

Automatics Vehicle License Plate Recognition using MATLAB

Automatics Vehicle License Plate Recognition using MATLAB Automatics Vehicle License Plate Recognition using MATLAB Alhamzawi Hussein Ali mezher Faculty of Informatics/University of Debrecen Kassai ut 26, 4028 Debrecen, Hungary. Abstract - The objective of this

More information

Preprocessing and Segregating Offline Gujarati Handwritten Datasheet for Character Recognition

Preprocessing and Segregating Offline Gujarati Handwritten Datasheet for Character Recognition Preprocessing and Segregating Offline Gujarati Handwritten Datasheet for Character Recognition Hetal R. Thaker Atmiya Institute of Technology & science, Kalawad Road, Rajkot Gujarat, India C. K. Kumbharana,

More information

6.098/6.882 Computational Photography 1. Problem Set 1. Assigned: Feb 9, 2006 Due: Feb 23, 2006

6.098/6.882 Computational Photography 1. Problem Set 1. Assigned: Feb 9, 2006 Due: Feb 23, 2006 6.098/6.882 Computational Photography 1 Problem Set 1 Assigned: Feb 9, 2006 Due: Feb 23, 2006 Note The problems marked with 6.882 only are for the students who register for 6.882. (Of course, students

More information

Vehicle Number Plate Recognition with Bilinear Interpolation and Plotting Horizontal and Vertical Edge Processing Histogram with Sound Signals

Vehicle Number Plate Recognition with Bilinear Interpolation and Plotting Horizontal and Vertical Edge Processing Histogram with Sound Signals Vehicle Number Plate Recognition with Bilinear Interpolation and Plotting Horizontal and Vertical Edge Processing Histogram with Sound Signals Aarti 1, Dr. Neetu Sharma 2 1 DEPArtment Of Computer Science

More information

MAV-ID card processing using camera images

MAV-ID card processing using camera images EE 5359 MULTIMEDIA PROCESSING SPRING 2013 PROJECT PROPOSAL MAV-ID card processing using camera images Under guidance of DR K R RAO DEPARTMENT OF ELECTRICAL ENGINEERING UNIVERSITY OF TEXAS AT ARLINGTON

More information

MatLab for biologists

MatLab for biologists MatLab for biologists Lecture 5 Péter Horváth Light Microscopy Centre ETH Zurich peter.horvath@lmc.biol.ethz.ch May 5, 2008 1 1 Reading and writing tables with MatLab (.xls,.csv, ASCII delimited) MatLab

More information

7. Morphological operations on binary images

7. Morphological operations on binary images Image Processing Laboratory 7: Morphological operations on binary images 1 7. Morphological operations on binary images 7.1. Introduction Morphological operations are affecting the form, structure or shape

More information

VEHICLE LICENSE PLATE DETECTION ALGORITHM BASED ON STATISTICAL CHARACTERISTICS IN HSI COLOR MODEL

VEHICLE LICENSE PLATE DETECTION ALGORITHM BASED ON STATISTICAL CHARACTERISTICS IN HSI COLOR MODEL VEHICLE LICENSE PLATE DETECTION ALGORITHM BASED ON STATISTICAL CHARACTERISTICS IN HSI COLOR MODEL Instructor : Dr. K. R. Rao Presented by: Prasanna Venkatesh Palani (1000660520) prasannaven.palani@mavs.uta.edu

More information

Spring 06 Assignment 2: Constraint Satisfaction Problems

Spring 06 Assignment 2: Constraint Satisfaction Problems 15-381 Spring 06 Assignment 2: Constraint Satisfaction Problems Questions to Vaibhav Mehta(vaibhav@cs.cmu.edu) Out: 2/07/06 Due: 2/21/06 Name: Andrew ID: Please turn in your answers on this assignment

More information

Image processing for gesture recognition: from theory to practice. Michela Goffredo University Roma TRE

Image processing for gesture recognition: from theory to practice. Michela Goffredo University Roma TRE Image processing for gesture recognition: from theory to practice 2 Michela Goffredo University Roma TRE goffredo@uniroma3.it Image processing At this point we have all of the basics at our disposal. We

More information

A NOVEL APPROACH FOR CHARACTER RECOGNITION OF VEHICLE NUMBER PLATES USING CLASSIFICATION

A NOVEL APPROACH FOR CHARACTER RECOGNITION OF VEHICLE NUMBER PLATES USING CLASSIFICATION A NOVEL APPROACH FOR CHARACTER RECOGNITION OF VEHICLE NUMBER PLATES USING CLASSIFICATION Nora Naik Assistant Professor, Dept. of Computer Engineering, Agnel Institute of Technology & Design, Goa, India

More information

Spring 06 Assignment 2: Constraint Satisfaction Problems

Spring 06 Assignment 2: Constraint Satisfaction Problems 15-381 Spring 06 Assignment 2: Constraint Satisfaction Problems Questions to Vaibhav Mehta(vaibhav@cs.cmu.edu) Out: 2/07/06 Due: 2/21/06 Name: Andrew ID: Please turn in your answers on this assignment

More information

Computing for Engineers in Python

Computing for Engineers in Python Computing for Engineers in Python Lecture 10: Signal (Image) Processing Autumn 2011-12 Some slides incorporated from Benny Chor s course 1 Lecture 9: Highlights Sorting, searching and time complexity Preprocessing

More information

Real Time Word to Picture Translation for Chinese Restaurant Menus

Real Time Word to Picture Translation for Chinese Restaurant Menus Real Time Word to Picture Translation for Chinese Restaurant Menus Michelle Jin, Ling Xiao Wang, Boyang Zhang Email: mzjin12, lx2wang, boyangz @stanford.edu EE268 Project Report, Spring 2014 Abstract--We

More information

L2. Image processing in MATLAB

L2. Image processing in MATLAB L2. Image processing in MATLAB 1. Introduction MATLAB environment offers an easy way to prototype applications that are based on complex mathematical computations. This annex presents some basic image

More information

AUTOMATIC IRAQI CARS NUMBER PLATES EXTRACTION

AUTOMATIC IRAQI CARS NUMBER PLATES EXTRACTION AUTOMATIC IRAQI CARS NUMBER PLATES EXTRACTION Safaa S. Omran 1 Jumana A. Jarallah 2 1 Electrical Engineering Technical College / Middle Technical University 2 Electrical Engineering Technical College /

More information

An Improved Bernsen Algorithm Approaches For License Plate Recognition

An Improved Bernsen Algorithm Approaches For License Plate Recognition IOSR Journal of Electronics and Communication Engineering (IOSR-JECE) ISSN: 78-834, ISBN: 78-8735. Volume 3, Issue 4 (Sep-Oct. 01), PP 01-05 An Improved Bernsen Algorithm Approaches For License Plate Recognition

More information

Typical Uses of Erosion

Typical Uses of Erosion Erosion: Erosion is used for shrinking of element A by using element B One of the simplest uses of erosion is for eliminating irrelevant details from a binary image. Erosion: Erosion Typical Uses of Erosion

More information

CS4670 / 5670: Computer Vision Noah Snavely

CS4670 / 5670: Computer Vision Noah Snavely CS4670 / 5670: Computer Vision Noah Snavely Lecture 29: Face Detection Revisited Announcements Project 4 due next Friday by 11:59pm 1 Remember eigenfaces? They don t work very well for detection Issues:

More information

Mobile SuDoKu Harvesting App

Mobile SuDoKu Harvesting App Mobile SuDoKu Harvesting App Benjamin Zwiener Department of Computer Science Doane University 1014 Boswell Ave, Crete, NE, 68333 benjamin.zwiener@doane.edu Abstract The purpose of this project was to create

More information

Malaysian Car Number Plate Detection System Based on Template Matching and Colour Information

Malaysian Car Number Plate Detection System Based on Template Matching and Colour Information Malaysian Car Number Plate Detection System Based on Template Matching and Colour Information Mohd Firdaus Zakaria, Shahrel A. Suandi Intelligent Biometric Group, School of Electrical and Electronics Engineering,

More information

Study and Analysis of various preprocessing approaches to enhance Offline Handwritten Gujarati Numerals for feature extraction

Study and Analysis of various preprocessing approaches to enhance Offline Handwritten Gujarati Numerals for feature extraction International Journal of Scientific and Research Publications, Volume 4, Issue 7, July 2014 1 Study and Analysis of various preprocessing approaches to enhance Offline Handwritten Gujarati Numerals for

More information

AUTOMATED MALARIA PARASITE DETECTION BASED ON IMAGE PROCESSING PROJECT REFERENCE NO.: 38S1511

AUTOMATED MALARIA PARASITE DETECTION BASED ON IMAGE PROCESSING PROJECT REFERENCE NO.: 38S1511 AUTOMATED MALARIA PARASITE DETECTION BASED ON IMAGE PROCESSING PROJECT REFERENCE NO.: 38S1511 COLLEGE : BANGALORE INSTITUTE OF TECHNOLOGY, BENGALURU BRANCH : COMPUTER SCIENCE AND ENGINEERING GUIDE : DR.

More information

INTERNATIONAL JOURNAL OF PURE AND APPLIED RESEARCH IN ENGINEERING AND TECHNOLOGY

INTERNATIONAL JOURNAL OF PURE AND APPLIED RESEARCH IN ENGINEERING AND TECHNOLOGY INTERNATIONAL JOURNAL OF PURE AND APPLIED RESEARCH IN ENGINEERING AND TECHNOLOGY A PATH FOR HORIZING YOUR INNOVATIVE WORK A NEW METHOD FOR DETECTION OF NOISE IN CORRUPTED IMAGE NIKHIL NALE 1, ANKIT MUNE

More information

Math Spring 2014 Proof Portfolio Instructions And Assessment

Math Spring 2014 Proof Portfolio Instructions And Assessment Math 310 - Spring 2014 Proof Portfolio Instructions And Assessment Portfolio Description: Very few people are innately good writers, and that s even more true if we consider writing mathematical proofs.

More information

Binary Opening and Closing

Binary Opening and Closing Chapter 2 Binary Opening and Closing Besides the two primary operations of erosion and dilation, there are two secondary operations that play key roles in morphological image processing, these being opening

More information

Using Image Processing to Enhance Vehicle Safety

Using Image Processing to Enhance Vehicle Safety Cedarville University DigitalCommons@Cedarville The Research and Scholarship Symposium The 2013 Symposium Apr 10th, 2:40 PM - 3:00 PM Using Image Processing to Enhance Vehicle Safety Malia Amling Cedarville

More information

Automated Number Plate Verification System based on Video Analytics

Automated Number Plate Verification System based on Video Analytics Automated Number Plate Verification System based on Video Analytics Kumar Abhishek Gaurav 1, Viveka 2, Dr. Rajesh T.M 3, Dr. Shaila S.G 4 1,2 M. Tech, Dept. of Computer Science and Engineering, 3 Assistant

More information

Segmentation of Liver CT Images

Segmentation of Liver CT Images Segmentation of Liver CT Images M.A.Alagdar 1, M.E.Morsy 2, M.M.Elzalabany 3 1,2,3 Electronics And Communications Department-.Faculty Of Engineering Mansoura University, Egypt. Abstract In this paper we

More information

Implementation of License Plate Recognition System in ARM Cortex A8 Board

Implementation of License Plate Recognition System in ARM Cortex A8 Board www..org 9 Implementation of License Plate Recognition System in ARM Cortex A8 Board S. Uma 1, M.Sharmila 2 1 Assistant Professor, 2 Research Scholar, Department of Electrical and Electronics Engg, College

More information

OMR Auto Grading System

OMR Auto Grading System OMR Auto Grading System Nithin T. nithint_11484@aitpune.edu.in Md Nasim mdnasim_11720@aitpune.edu.in T. Raj Shekhar t.rajshekhar_11684@aitpune.edu.in Omendra Singh Gautam omendrsinghgautam_11667@aitpune.edu.in

More information

CT336/CT404 Graphics & Image Processing. Section 9. Morphological Techniques

CT336/CT404 Graphics & Image Processing. Section 9. Morphological Techniques CT336/CT404 Graphics & Image Processing Section 9 Morphological Techniques Morphological Image Processing The term 'morphology' refers to shape Morphological image processing assumes that an image consists

More information

Digital Image Processing. Digital Image Fundamentals II 12 th June, 2017

Digital Image Processing. Digital Image Fundamentals II 12 th June, 2017 Digital Image Processing Digital Image Fundamentals II 12 th June, 2017 Image Enhancement Image Enhancement Types of Image Enhancement Operations Neighborhood Operations on Images Spatial Filtering Filtering

More information

Computer Graphics (CS/ECE 545) Lecture 7: Morphology (Part 2) & Regions in Binary Images (Part 1)

Computer Graphics (CS/ECE 545) Lecture 7: Morphology (Part 2) & Regions in Binary Images (Part 1) Computer Graphics (CS/ECE 545) Lecture 7: Morphology (Part 2) & Regions in Binary Images (Part 1) Prof Emmanuel Agu Computer Science Dept. Worcester Polytechnic Institute (WPI) Recall: Dilation Example

More information

Visual Media Processing Using MATLAB Beginner's Guide

Visual Media Processing Using MATLAB Beginner's Guide Visual Media Processing Using MATLAB Beginner's Guide Learn a range of techniques from enhancing and adding artistic effects to your photographs, to editing and processing your videos, all using MATLAB

More information

Upcoming Events: Floppy Cats Part 2 - Adding the Scrolling Pillars

Upcoming Events: Floppy Cats Part 2 - Adding the Scrolling Pillars GAME MAKER PROGRAMMING Topic: Floppy Cats Part 1 Scene Setup, Sprites, Backgrounds Objective: The students will begin designing and coding a new game. This type of game will be a parody of the flappy bird

More information

INDIAN VEHICLE LICENSE PLATE EXTRACTION AND SEGMENTATION

INDIAN VEHICLE LICENSE PLATE EXTRACTION AND SEGMENTATION International Journal of Computer Science and Communication Vol. 2, No. 2, July-December 2011, pp. 593-599 INDIAN VEHICLE LICENSE PLATE EXTRACTION AND SEGMENTATION Chetan Sharma 1 and Amandeep Kaur 2 1

More information

Traffic Sign Recognition Senior Project Final Report

Traffic Sign Recognition Senior Project Final Report Traffic Sign Recognition Senior Project Final Report Jacob Carlson and Sean St. Onge Advisor: Dr. Thomas L. Stewart Bradley University May 12th, 2008 Abstract - Image processing has a wide range of real-world

More information

Version 6. User Manual OBJECT

Version 6. User Manual OBJECT Version 6 User Manual OBJECT 2006 BRUKER OPTIK GmbH, Rudolf-Plank-Str. 27, D-76275 Ettlingen, www.brukeroptics.com All rights reserved. No part of this publication may be reproduced or transmitted in any

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 10, October -2017 e-issn (O): 2348-4470 p-issn (P): 2348-6406 REVIEW

More information

Number Plate Recognition Using Segmentation

Number Plate Recognition Using Segmentation Number Plate Recognition Using Segmentation Rupali Kate M.Tech. Electronics(VLSI) BVCOE. Pune 411043, Maharashtra, India. Dr. Chitode. J. S BVCOE. Pune 411043 Abstract Automatic Number Plate Recognition

More information

][ R G [ Q] Y =[ a b c. d e f. g h I

][ R G [ Q] Y =[ a b c. d e f. g h I Abstract Unsupervised Thresholding and Morphological Processing for Automatic Fin-outline Extraction in DARWIN (Digital Analysis and Recognition of Whale Images on a Network) Scott Hale Eckerd College

More information

Efficient 2-D Structuring Element for Noise Removal of Grayscale Images using Morphological Operations

Efficient 2-D Structuring Element for Noise Removal of Grayscale Images using Morphological Operations Efficient 2-D Structuring Element for Noise Removal of Grayscale Images using Morphological Operations Mangala A. G. Department of Master of Computer Application, N.M.A.M. Institute of Technology, Nitte.

More information

Automatic Morphological Segmentation and Region Growing Method of Diagnosing Medical Images

Automatic Morphological Segmentation and Region Growing Method of Diagnosing Medical Images International Journal of Information & Computation Technology. ISSN 0974-2239 Volume 2, Number 3 (2012), pp. 173-180 International Research Publications House http://www. irphouse.com Automatic Morphological

More information

CSE328:Fundamentals of Computer Graphics. OpenGL tutorial. Shuchu Han (Jerome) Department of Computer Science, SBU

CSE328:Fundamentals of Computer Graphics. OpenGL tutorial. Shuchu Han (Jerome) Department of Computer Science, SBU CSE328:Fundamentals of Computer Graphics OpenGL tutorial Shuchu Han (Jerome) Department of Computer Science, SBU shhan@cs.stonybrook.edu Department of Computer Science, Stony Brook University (SUNYSB)

More information

Vision Review: Image Processing. Course web page:

Vision Review: Image Processing. Course web page: Vision Review: Image Processing Course web page: www.cis.udel.edu/~cer/arv September 7, Announcements Homework and paper presentation guidelines are up on web page Readings for next Tuesday: Chapters 6,.,

More information

World Journal of Engineering Research and Technology WJERT

World Journal of Engineering Research and Technology WJERT wjert, 2017, Vol. 3, Issue 3, 357-366 Original Article ISSN 2454-695X Shagun et al. WJERT www.wjert.org SJIF Impact Factor: 4.326 NUMBER PLATE RECOGNITION USING MATLAB 1 *Ms. Shagun Chaudhary and 2 Miss

More information

PHASE PRESERVING DENOISING AND BINARIZATION OF ANCIENT DOCUMENT IMAGE

PHASE PRESERVING DENOISING AND BINARIZATION OF ANCIENT DOCUMENT IMAGE 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. 7, July 2015, pg.16

More information

CSE 166: Image Processing. Overview. What is an image? Representing an image. What is image processing? History. Today

CSE 166: Image Processing. Overview. What is an image? Representing an image. What is image processing? History. Today CSE 166: Image Processing Overview Image Processing CSE 166 Today Course overview Logistics Some mathematics Lectures will be boardwork and slides CSE 166, Fall 2016 2 What is an image? Representing an

More information

FPGA based Real-time Automatic Number Plate Recognition System for Modern License Plates in Sri Lanka

FPGA based Real-time Automatic Number Plate Recognition System for Modern License Plates in Sri Lanka RESEARCH ARTICLE OPEN ACCESS FPGA based Real-time Automatic Number Plate Recognition System for Modern License Plates in Sri Lanka Swapna Premasiri 1, Lahiru Wijesinghe 1, Randika Perera 1 1. Department

More information

8.2 IMAGE PROCESSING VERSUS IMAGE ANALYSIS Image processing: The collection of routines and

8.2 IMAGE PROCESSING VERSUS IMAGE ANALYSIS Image processing: The collection of routines and 8.1 INTRODUCTION In this chapter, we will study and discuss some fundamental techniques for image processing and image analysis, with a few examples of routines developed for certain purposes. 8.2 IMAGE

More information

Chapter 17. Shape-Based Operations

Chapter 17. Shape-Based Operations Chapter 17 Shape-Based Operations An shape-based operation identifies or acts on groups of pixels that belong to the same object or image component. We have already seen how components may be identified

More information

CSC C85 Embedded Systems Project # 1 Robot Localization

CSC C85 Embedded Systems Project # 1 Robot Localization 1 The goal of this project is to apply the ideas we have discussed in lecture to a real-world robot localization task. You will be working with Lego NXT robots, and you will have to find ways to work around

More information

Detection of License Plates of Vehicles

Detection of License Plates of Vehicles 13 W. K. I. L Wanniarachchi 1, D. U. J. Sonnadara 2 and M. K. Jayananda 2 1 Faculty of Science and Technology, Uva Wellassa University, Sri Lanka 2 Department of Physics, University of Colombo, Sri Lanka

More information

Embedded Systems CSEE W4840. Design Document. Hardware implementation of connected component labelling

Embedded Systems CSEE W4840. Design Document. Hardware implementation of connected component labelling Embedded Systems CSEE W4840 Design Document Hardware implementation of connected component labelling Avinash Nair ASN2129 Jerry Barona JAB2397 Manushree Gangwar MG3631 Spring 2016 Table of Contents TABLE

More information

AUTOMATIC LICENSE PLATE RECOGNITION USING PYTHON

AUTOMATIC LICENSE PLATE RECOGNITION USING PYTHON AUTOMATIC LICENSE PLATE RECOGNITION USING PYTHON Gopalkrishna Hegde Department of of MCA Gogte Institute of Technology Belagavi Abstract Automatic License Plate Recognition system is a real time embedded

More information

Chapter 6. [6]Preprocessing

Chapter 6. [6]Preprocessing Chapter 6 [6]Preprocessing As mentioned in chapter 4, the first stage in the HCR pipeline is preprocessing of the image. We have seen in earlier chapters why this is very important and at the same time

More information

DESIGNING AND DEVELOPMENT OF OFFLINE HANDWRITTEN ISOLATED ENGLISH CHARACTER RECOGNITION MODEL

DESIGNING AND DEVELOPMENT OF OFFLINE HANDWRITTEN ISOLATED ENGLISH CHARACTER RECOGNITION MODEL 4 DESIGNING AND DEVELOPMENT OF OFFLINE HANDWRITTEN ISOLATED ENGLISH CHARACTER RECOGNITION MODEL Introduction Designing of Offline Handwritten Isolated English Character Recognition Model Pseudo Code used

More information

Image analysis. CS/CME/BioE/Biophys/BMI 279 Oct. 31 and Nov. 2, 2017 Ron Dror

Image analysis. CS/CME/BioE/Biophys/BMI 279 Oct. 31 and Nov. 2, 2017 Ron Dror Image analysis CS/CME/BioE/Biophys/BMI 279 Oct. 31 and Nov. 2, 2017 Ron Dror 1 Outline Images in molecular and cellular biology Reducing image noise Mean and Gaussian filters Frequency domain interpretation

More information

Digital Image Processing 3/e

Digital Image Processing 3/e Laboratory Projects for Digital Image Processing 3/e by Gonzalez and Woods 2008 Prentice Hall Upper Saddle River, NJ 07458 USA www.imageprocessingplace.com The following sample laboratory projects are

More information

Digital Image Processing Labs DENOISING IMAGES

Digital Image Processing Labs DENOISING IMAGES Digital Image Processing Labs DENOISING IMAGES All electronic devices are subject to noise pixels that, for one reason or another, take on an incorrect color or intensity. This is partly due to the changes

More information

Live Hand Gesture Recognition using an Android Device

Live Hand Gesture Recognition using an Android Device Live Hand Gesture Recognition using an Android Device Mr. Yogesh B. Dongare Department of Computer Engineering. G.H.Raisoni College of Engineering and Management, Ahmednagar. Email- yogesh.dongare05@gmail.com

More information

2359 (i.e. 11:59:00 pm) on 4/16/18 via Blackboard

2359 (i.e. 11:59:00 pm) on 4/16/18 via Blackboard CS 109: Introduction to Computer Science Goodney Spring 2018 Homework Assignment 4 Assigned: 4/2/18 via Blackboard Due: 2359 (i.e. 11:59:00 pm) on 4/16/18 via Blackboard Notes: a. This is the fourth homework

More information

Automatic Number Plate Extraction: A Review

Automatic Number Plate Extraction: A Review Automatic Number Plate Extraction: A Review Harkamaljeet Kaur Department of Computer Engineering Punjabi University Patiala, India Dr. Lakhwinder Kaur Head of Department Department of Computer Engineering

More information

Smart License Plate Recognition Using Optical Character Recognition Based on the Multicopter

Smart License Plate Recognition Using Optical Character Recognition Based on the Multicopter Smart License Plate Recognition Using Optical Character Recognition Based on the Multicopter Sanjaa Bold Department of Computer Hardware and Networking. University of the humanities Ulaanbaatar, Mongolia

More information

MEM455/800 Robotics II/Advance Robotics Winter 2009

MEM455/800 Robotics II/Advance Robotics Winter 2009 Admin Stuff Course Website: http://robotics.mem.drexel.edu/mhsieh/courses/mem456/ MEM455/8 Robotics II/Advance Robotics Winter 9 Professor: Ani Hsieh Time: :-:pm Tues, Thurs Location: UG Lab, Classroom

More information

OCR QUALITY IMPROVEMENT USING IMAGE PREPROCESSING Vlad Badoiu 1 * Andrei-Constantin Ciobanu 2 Sergiu Craitoiu 3

OCR QUALITY IMPROVEMENT USING IMAGE PREPROCESSING Vlad Badoiu 1 * Andrei-Constantin Ciobanu 2 Sergiu Craitoiu 3 OCR QUALITY IMPROVEMENT USING IMAGE PREPROCESSING Vlad Badoiu 1 * Andrei-Constantin Ciobanu 2 Sergiu Craitoiu 3 ABSTRACT: Optical character recognition (OCR) remains a difficult problem for noisy documents

More information

Automated License Plate Recognition for Toll Booth Application

Automated License Plate Recognition for Toll Booth Application RESEARCH ARTICLE OPEN ACCESS Automated License Plate Recognition for Toll Booth Application Ketan S. Shevale (Department of Electronics and Telecommunication, SAOE, Pune University, Pune) ABSTRACT This

More information

An Artificial Intelligence System for Monitoring and Security for Vehicular Plate Number in Lyceum of the Philippines University Laguna

An Artificial Intelligence System for Monitoring and Security for Vehicular Plate Number in Lyceum of the Philippines University Laguna An Artificial Intelligence System for Monitoring and Security for Vehicular Plate Number in Lyceum of the Philippines University Laguna Joseph T. Seranilla 1*, Angelino P. Flores 1, Veryll John Sumague

More information

Table of contents. Vision industrielle 2002/2003. Local and semi-local smoothing. Linear noise filtering: example. Convolution: introduction

Table of contents. Vision industrielle 2002/2003. Local and semi-local smoothing. Linear noise filtering: example. Convolution: introduction Table of contents Vision industrielle 2002/2003 Session - Image Processing Département Génie Productique INSA de Lyon Christian Wolf wolf@rfv.insa-lyon.fr Introduction Motivation, human vision, history,

More information

Image analysis. CS/CME/BioE/Biophys/BMI 279 Oct. 31 and Nov. 2, 2017 Ron Dror

Image analysis. CS/CME/BioE/Biophys/BMI 279 Oct. 31 and Nov. 2, 2017 Ron Dror Image analysis CS/CME/BioE/Biophys/BMI 279 Oct. 31 and Nov. 2, 2017 Ron Dror 1 Outline Images in molecular and cellular biology Reducing image noise Mean and Gaussian filters Frequency domain interpretation

More information

6.02 Introduction to EECS II Spring Quiz 1

6.02 Introduction to EECS II Spring Quiz 1 M A S S A C H U S E T T S I N S T I T U T E O F T E C H N O L O G Y DEPARTMENT OF ELECTRICAL ENGINEERING AND COMPUTER SCIENCE 6.02 Introduction to EECS II Spring 2011 Quiz 1 Name SOLUTIONS Score Please

More information

Checkerboard Tracker for Camera Calibration. Andrew DeKelaita EE368

Checkerboard Tracker for Camera Calibration. Andrew DeKelaita EE368 Checkerboard Tracker for Camera Calibration Abstract Andrew DeKelaita EE368 The checkerboard extraction process is an important pre-preprocessing step in camera calibration. This project attempts to implement

More information

Project Documentation

Project Documentation Project Documentation Project Title:- Text Recognition Team Members:- Arpit Agarwal Jaskeerat Singh Vikrant Singh Piyush Singla Abstract:- We wanted to make a project capable of reading text from an image

More information

You Can Make a Difference! Due November 11/12 (Implementation plans due in class on 11/9)

You Can Make a Difference! Due November 11/12 (Implementation plans due in class on 11/9) You Can Make a Difference! Due November 11/12 (Implementation plans due in class on 11/9) In last week s lab, we introduced some of the basic mechanisms used to manipulate images in Java programs. In this

More information

CS 371M. Homework 2: Risk. All submissions should be done via git. Refer to the git setup, and submission documents for the correct procedure.

CS 371M. Homework 2: Risk. All submissions should be done via git. Refer to the git setup, and submission documents for the correct procedure. Homework 2: Risk Submission: All submissions should be done via git. Refer to the git setup, and submission documents for the correct procedure. The root directory of your repository should contain your

More information

Evolutionary Image Enhancement for Impulsive Noise Reduction

Evolutionary Image Enhancement for Impulsive Noise Reduction Evolutionary Image Enhancement for Impulsive Noise Reduction Ung-Keun Cho, Jin-Hyuk Hong, and Sung-Bae Cho Dept. of Computer Science, Yonsei University Biometrics Engineering Research Center 134 Sinchon-dong,

More information

COMPARATIVE PERFORMANCE ANALYSIS OF HAND GESTURE RECOGNITION TECHNIQUES

COMPARATIVE PERFORMANCE ANALYSIS OF HAND GESTURE RECOGNITION TECHNIQUES International Journal of Advanced Research in Engineering and Technology (IJARET) Volume 9, Issue 3, May - June 2018, pp. 177 185, Article ID: IJARET_09_03_023 Available online at http://www.iaeme.com/ijaret/issues.asp?jtype=ijaret&vtype=9&itype=3

More information

Princeton University COS429 Computer Vision Problem Set 1: Building a Camera

Princeton University COS429 Computer Vision Problem Set 1: Building a Camera Princeton University COS429 Computer Vision Problem Set 1: Building a Camera What to submit: You need to submit two files: one PDF file for the report that contains your name, Princeton NetID, all the

More information

Computer Graphics Si Lu Fall /25/2017

Computer Graphics Si Lu Fall /25/2017 Computer Graphics Si Lu Fall 2017 09/25/2017 Today Course overview and information Digital images Homework 1 due Oct. 4 in class No late homework will be accepted 2 Pre-Requisites C/C++ programming Linear

More information

THERMAL DETECTION OF WATER SATURATION SPOTS FOR LANDSLIDE PREDICTION

THERMAL DETECTION OF WATER SATURATION SPOTS FOR LANDSLIDE PREDICTION THERMAL DETECTION OF WATER SATURATION SPOTS FOR LANDSLIDE PREDICTION Aufa Zin, Kamarul Hawari and Norliana Khamisan Faculty of Electrical and Electronics Engineering, Universiti Malaysia Pahang, Pekan,

More information

Introduction to Computers and Engineering Problem Solving Spring 2012 Problem Set 10: Electrical Circuits Due: 12 noon, Friday May 11, 2012

Introduction to Computers and Engineering Problem Solving Spring 2012 Problem Set 10: Electrical Circuits Due: 12 noon, Friday May 11, 2012 Introduction to Computers and Engineering Problem Solving Spring 2012 Problem Set 10: Electrical Circuits Due: 12 noon, Friday May 11, 2012 I. Problem Statement Figure 1. Electric circuit The electric

More information

The Use of Non-Local Means to Reduce Image Noise

The Use of Non-Local Means to Reduce Image Noise The Use of Non-Local Means to Reduce Image Noise By Chimba Chundu, Danny Bin, and Jackelyn Ferman ABSTRACT Digital images, such as those produced from digital cameras, suffer from random noise that is

More information

Improved 1D and 2D barcode detection with morphological operations

Improved 1D and 2D barcode detection with morphological operations Improved 1D and 2D barcode detection with morphological operations Melinda Katona and László G. Nyúl Department of Image Processing and Computer Graphics University of Szeged Árpád tér 2, H-6720 Szeged,

More information

CIS581: Computer Vision and Computational Photography Homework: Cameras and Convolution Due: Sept. 14, 2017 at 3:00 pm

CIS581: Computer Vision and Computational Photography Homework: Cameras and Convolution Due: Sept. 14, 2017 at 3:00 pm CIS58: Computer Vision and Computational Photography Homework: Cameras and Convolution Due: Sept. 4, 207 at 3:00 pm Instructions This is an individual assignment. Individual means each student must hand

More information

CSC 320 H1S CSC320 Exam Study Guide (Last updated: April 2, 2015) Winter 2015

CSC 320 H1S CSC320 Exam Study Guide (Last updated: April 2, 2015) Winter 2015 Question 1. Suppose you have an image I that contains an image of a left eye (the image is detailed enough that it makes a difference that it s the left eye). Write pseudocode to find other left eyes in

More information

6.869 Advances in Computer Vision Spring 2010, A. Torralba

6.869 Advances in Computer Vision Spring 2010, A. Torralba 6.869 Advances in Computer Vision Spring 2010, A. Torralba Due date: Wednesday, Feb 17, 2010 Problem set 1 You need to submit a report with brief descriptions of what you did. The most important part is

More information

VARVE MEASUREMENT AND ANALYSIS PROGRAMS OPERATION INSTRUCTIONS. USING THE COUPLET MEASUREMENT UTILITY (Varve300.itm)

VARVE MEASUREMENT AND ANALYSIS PROGRAMS OPERATION INSTRUCTIONS. USING THE COUPLET MEASUREMENT UTILITY (Varve300.itm) VARVE MEASUREMENT AND ANALYSIS PROGRAMS OPERATION INSTRUCTIONS USING THE COUPLET MEASUREMENT UTILITY (Varve300.itm) 1. Starting Image Tool and Couplet Measurement Start Image Tool 3.0 by double clicking

More information

Intelligent agents (TME285) Lecture 4,

Intelligent agents (TME285) Lecture 4, Intelligent agents (TME285) Lecture 4, 20180124 Image processing for IPAs + Advanced C# programming Assignment, Stage 1 Note, again, that to complete Stage 1, you must have a discussion with us, based

More information