Android Test Apps documentation

Size: px
Start display at page:

Download "Android Test Apps documentation"

Transcription

1 Uncanny Vision Android Test Apps documentation Revised on: 6th Oct 2014

2

3 Contents Introduction Image Recognition Demo Introduction How the App works How to install Setting Reference Image How to test Which images work well UncannyCV Demo Introduction How to install How to test A short note about each demo Canny Edge detection - Pedestrian detection Vehicle detection - Detecting cars from the back side Face detection Optical Flow - Lucas Kanade Optical Flow. Semi-Dense Optical Flow Tamper Detection Kmeans - Sobel Lane Departure Fast Keypoints - FAST9 corner detection algorithm Limitations

4 1. Introduction This document explains in some detail about the following Uncanny Vision Android test Apps and it usage. Image Recognition UncannyCV Demo 2. Image Recognition Demo 1. Introduction This app uses a keypoint detection and matching algorithm to recognize 2D markers, based on a reference image(more details in next section on how to set the reference image) it has in its database. Would be useful in following 1. Augmented Reality applications for recognizing markers 2. In printers it could be used for recognizing special images(like watermarks) and then deciding whether the document should be allowed to be printed Please test this app on your Android phone(it should work on any Android, Ice Cream Sandwich or later, but we have tested only on Kitkat). Please remember it is only a demo app to demonstrate keypoint detection and matching to customers. The app by itself has a few small drawbacks. The algorithm itself can be improved too Both quality(increase the number of scales points etc that need to be detected) and speed(currently its single core; we can make it multi core and do other optimizations specific to your usecase perhaps) can be improved by playing around with the parameters. 2. How the App works The way it functions currently is as follows On opening the app and choosing the "camera demo" option, it will first look for the most recently modified file in your internal memory and tries to open it as an image file. It will then rescale this to VGA size(640x480) and then use this image as a reference image. It will then start comparing the camera preview data(which is usually at VGA again) with the reference image using a keypoint detection and matching algorithm. When it finds sufficient matches and if its in the right order(locations this is done using homography) we declare a successful match and then draw a green rectangle(the position, scale and orientation of which indicates that of the detected window) on the screen.

5 3. How to install Please try one of the options below 1. Mail Send the app as attachment in your . Set the account on your phone. And open the and click on the attachment(imagerecognition.apk). The app will first download and then install. 2. Copy the apk to phones internal memory or external sdcard. Use an Android File explorer to open the app using the phone. Now double click on the app. The app will see your permission to install itself. Other points to note 1. To install on phone, for the very first time, you may have to go to settings~security and check the box for allowing installation of apps from unknown sources. 2. While installing this app for the first time on an Android phone, you may be prompted to install OpenCV apk from the playstore. If yes please install OpenCV from the Google playstore. OpenCV is used for reading jpeg files and decoding them into YUV pixel format. 3. If you were to re install the app for some reason you will have to first uninstall the same app and then install again. 4. Setting Reference Image 1. Using Camera 1. Open your phones camera app. 1. Go to settings >resolution and make sure you choose a resolution whose aspect ratio is 4:3(same as 640x480). Example 2048x Go to settings and change the storage to internal memory(since the image recognition app searches for the latest image in the internal memory). If the app does not support this option, you may have to manually copy the image to the internal folder after taking a photo. 2. Take a picture with your phone in landscape mode. 3. All the above limitations are due to a limitations of the app, which can be fixed and has got nothing to do with the algorithm itself. 2. Setting Image directly Connect phone to PC and transfer the jpeg file(whose resolution is having aspect ratio of 4:3) into the DCIM folder of the internal memory(usually in the path /storage/sdcard0/dcim) of the Android phone. Beware The app always takes the latest file in the internal memory and assumes its an image gile. So if you first transfer an image from PC, for use as a reference image; but then take a picture using your camera app, the UncannyCV Image Recognition app will now start taking the camera image as the reference since thats the latest file in the internal memory. Example image We use the following image cropped to 4:3 ratio for our testing. However any image that has 4:3 ratio should work. Neverending Dreamer

6 5. How to test 1. Open the UncannyCV app. 2. Chose option camera demo(press Start button under option Camera Demo) 3. Point your camera at the 2D marker which you have provided as reference to the app. Its always best to first test with a known usecase, example image given in previous section. So first printout the same image and then point the camera at the printout.

7 The green rectangle in the above picture indicates that the image has been detected and also shows the scale and alignment(if you point the phone at the image from the side, while running our app, the rectangle will be skewed. Similarly when you move the camera away from the screen, the rectangle would grow smaller ) has been detected correctly. 4. To verify if the correct reference image has been chosen, please do the following. On starting the app it will create a rescaled bmp of the camera image and store it as grayimage.bmp in internal memory root folder. Please check if this file has been created, and also open the image to verify if the app has chosen the correct reference image. 6. Which images work well It works best when the reference image is sharp, taken without shake or reflections. Its also ideal if the image is a natural image(contains more unique real world keypoints), and not a graphics images(may contain keypoints that have identical signatures/descriptors). It may not work very well in the following cases

8 1. Image that contains lots of text. The keypoint matching will start to fail because the image will contain many instances of the same letter(or character). Or will contain nearly identical corners even in different characters. Images that contains grid like stuff. Same problem as above. The grid points will be detected as corners, but there will be several that look alike. 2. Blurry images 3. Images that contains reflections from screens, windows etc the accuracy goes down a bit. 3. UncannyCV Demo 1. Introduction UncannyCV demo 1. Edge detection Canny edge detection 2. Pedestrian detection 3. Vehicle detection Detecting cars from the back side 4. Face detection 5. Optical Flow Lucas Kanade Optical Flow 6. Semi Dense Optical Flow 7. Tamper Detection 8. Kmeans 9. Sobel 10. Lane Departure 11. Fast Keypoints FAST9 corner detection algorithm 2. How to install Please try one of the options below 1. Mail Send the app as attachment to your . Set the account on your phone. And open the and click on the attachment(imagerecognition.apk). The app will first download and then install. 2. Copy the apk to phones internal memory or external sdcard. Use an Android File explorer to open the app using the phone. Now double click on the app. The app will see your permission to install itself. Other points to note 1. To install on phone, for the very first time, you may have to go to settings~security and check the box for allowing installation of apps from unknown sources. 2. If you were to re install the app for some reason you will have to first uninstall the same app and then install again.

9 3. How to test 1. Open the UncannyCV app. 2. Chose option camera demo(press Start button under option Camera Demo) 3. Point phone at object of interest in landscape mode. 4. Press the Demo options drop down menu to see other demo options(shown in figure below). 5. The Processing time can be observed on the top left corner(shown in figure below)

10 4. A short note about each demo 1. Canny Edge detection Operates on input frame of size 640x480. Single threaded, hence it uses only a single core Based on Canny edge detection. The time required for processing a frame depends on the amount of edges. For an input frame with very few edges the processing time will be minimal. 2. Pedestrian detection Can detect pedestrians who are completely contained inside the image(head to toe). Minimum sized pedestrian that can be detected is a person whose height is approximately 50% of height of input image. Based on HOG(Histogram of Oriented Gradients) algorithm. The time required for processing a frame is almost independent of the number of pedestrians present in the frame. 3. Vehicle detection Detecting cars from the back side Operates on input frame of size 640x480. But uses 3 ROIs(Region of Interest). The 3 green rectangles indicate the 3 ROIs. The red rectangle indicates detected cars. The smallest ROI can detect small cars. The medium sized ROI can detect the medium sized car and so on. The small cars have to be inside the small green rectangle to be detected. Any car which is larger than the small green rectangle, but smaller than the medium sized rectangle, has to be then present in medium green rectangle. How to demo Run a video sequence of a car moving through a street or on highway(example video provided here). Test image Please test with this image to confirm its working Face detection Detects frontal faces(looking into camera). Based on LBP(Local Binary Pattern) based Adaboost Cascade detector. Minimum sized face that can be detected is a face whose width and height is approximately 10% of height of input image. Point camera at a face. The subject should be looking directly at camera. Perhaps due to lack of images of people wearing spectacles in the original training database, the algorithm has a slightly lower detection rate when the subject is wearing spectacles. Detection rate can be improved significantly by using tracking. 5. Optical Flow Lucas Kanade Optical Flow. Operates on input frame of size 640x480. Good features to track followed by LK Optical flow. Tracks 750 points(15x15 sized kernels) in each frame across 5 scales and 20 iterations(it has early exit condition, so every point may not execute 20

11 iterations). How to demo Move camera lightly from from left to right or top to bottom in front of object of interest. Or move the object of interest in front of camera. The green lines indicate the motion flow direction and magnitude. The good features to track algorithm looks for corner points. If the camera is out of focus(example object is too close to camera), then the image will be blurred and the good features to track algorithm will not detect good points. 6. Semi Dense Optical Flow LK Optical flow for each 16x16 block in the image. 7. Tamper Detection This algorithm is useful in video surveillance applications to detect if someone is trying to tamper with the camera by covering it with a cloth/paper or some other material. How to test Keep phone still on a table, leaning on a stand or something, with the camera pointed at some scene of interest. Switch on the app, and chose the Tamper detection option. The display will turn blue indicating that the algorithm is learning the scene. Once the scene learning is complete the display will turn normal. Now if you try to cover the camera with your hand or with some other material, the display will turn red indicating that the algorithm has detected someone trying to tamper the camera. 8. Kmeans Image segmentation using the 3 RGB channels as features. Uses Kmeans clustering for segmenting the image. Always segments to 3 segments. 9. Sobel Sobel edge detection. 10. Lane Departure How to test similar to the vehicle detection algorithm. There are 2 while horizontal lines on display. The road directly in front of the car should be between these 2 lanes. Please refer to this video on how to test and how to hold camera This algorithm is sensitive to where the camera is kept in the car. The current assumption is that it has been kept inside the car on the dash. Currently the warning flashing on the screen when the car crosses a lane has been disabled, instead we will replace this with a warning based on colour of lanes. However this has not been implemented yet in the app. Test image Please test with this image to confirm its working Fast Keypoints FAST9 corner detection algorithm

12 4. Limitations

Transportation Informatics Group, ALPEN-ADRIA University of Klagenfurt. Transportation Informatics Group University of Klagenfurt 3/10/2009 1

Transportation Informatics Group, ALPEN-ADRIA University of Klagenfurt. Transportation Informatics Group University of Klagenfurt 3/10/2009 1 Machine Vision Transportation Informatics Group University of Klagenfurt Alireza Fasih, 2009 3/10/2009 1 Address: L4.2.02, Lakeside Park, Haus B04, Ebene 2, Klagenfurt-Austria Index Driver Fatigue Detection

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

Real-Time Face Detection and Tracking for High Resolution Smart Camera System

Real-Time Face Detection and Tracking for High Resolution Smart Camera System Digital Image Computing Techniques and Applications Real-Time Face Detection and Tracking for High Resolution Smart Camera System Y. M. Mustafah a,b, T. Shan a, A. W. Azman a,b, A. Bigdeli a, B. C. Lovell

More information

Making PHP See. Confoo Michael Maclean

Making PHP See. Confoo Michael Maclean Making PHP See Confoo 2011 Michael Maclean mgdm@php.net http://mgdm.net You want to do what? PHP has many ways to create graphics Cairo, ImageMagick, GraphicsMagick, GD... You want to do what? There aren't

More information

ThermaViz. Operating Manual. The Innovative Two-Wavelength Imaging Pyrometer

ThermaViz. Operating Manual. The Innovative Two-Wavelength Imaging Pyrometer ThermaViz The Innovative Two-Wavelength Imaging Pyrometer Operating Manual The integration of advanced optical diagnostics and intelligent materials processing for temperature measurement and process control.

More information

Point Calibration. July 3, 2012

Point Calibration. July 3, 2012 Point Calibration July 3, 2012 The purpose of the Point Calibration process is to generate a map of voltages (for galvos) or motor positions of the pointing device to the voltages or pixels of the reference

More information

Lane Detection in Automotive

Lane Detection in Automotive Lane Detection in Automotive Contents Introduction... 2 Image Processing... 2 Reading an image... 3 RGB to Gray... 3 Mean and Gaussian filtering... 5 Defining our Region of Interest... 6 BirdsEyeView Transformation...

More information

The ideal K-12 science microscope solution. User Guide. for use with the Nova5000

The ideal K-12 science microscope solution. User Guide. for use with the Nova5000 The ideal K-12 science microscope solution User Guide for use with the Nova5000 NovaScope User Guide Information in this document is subject to change without notice. 2009 Fourier Systems Ltd. All rights

More information

Eyedentify MMR SDK. Technical sheet. Version Eyedea Recognition, s.r.o.

Eyedentify MMR SDK. Technical sheet. Version Eyedea Recognition, s.r.o. Eyedentify MMR SDK Technical sheet Version 2.3.1 010001010111100101100101011001000110010101100001001000000 101001001100101011000110110111101100111011011100110100101 110100011010010110111101101110010001010111100101100101011

More information

Applying mathematics to digital image processing using a spreadsheet

Applying mathematics to digital image processing using a spreadsheet Jeff Waldock Applying mathematics to digital image processing using a spreadsheet Jeff Waldock Department of Engineering and Mathematics Sheffield Hallam University j.waldock@shu.ac.uk Introduction When

More information

Version 2 Image Clarification Tool for Avid Editing Systems. Part of the dtective suite of forensic video analysis tools from Ocean Systems

Version 2 Image Clarification Tool for Avid Editing Systems. Part of the dtective suite of forensic video analysis tools from Ocean Systems By Version 2 Image Clarification Tool for Avid Editing Systems Part of the dtective suite of forensic video analysis tools from Ocean Systems User Guide www.oceansystems.com www.dtectivesystem.com Page

More information

Cropping and Scaling for High Resolution Prints

Cropping and Scaling for High Resolution Prints Cropping and Scaling for High Resolution Prints Step 1 Often when we capture an image, we don't have the luxury of time, angle, lens etc., to frame the scene just the way we would like to. So generally,

More information

Resizing Images for Competition Entry

Resizing Images for Competition Entry Resizing Images for Competition Entry Dr Roy Killen, EFIAP, GMPSA, APSEM TABLE OF CONTENTS Some Basic Principles 1 An Simple Way to Resize and Save Files in Photoshop 5 An Alternative way to Resize Images

More information

Digital Projection Entry Instructions

Digital Projection Entry Instructions The image must be a jpg file. Raw, Photoshop PSD, Tiff, bmp and all other file types cannot be used. There are file size limitations for competition. 1) The Height dimension can be no more than 1080 pixels.

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

Adobe Photoshop CS5 Tutorial

Adobe Photoshop CS5 Tutorial Adobe Photoshop CS5 Tutorial GETTING STARTED Adobe Photoshop CS5 is a popular image editing software that provides a work environment consistent with Adobe Illustrator, Adobe InDesign, Adobe Photoshop

More information

inphoto ID Canon camera control software Automatic ID photography User Guide

inphoto ID Canon camera control software Automatic ID photography User Guide inphoto ID Canon camera control software Automatic ID photography User Guide 2008 Akond company 197342, Russia, St.-Petersburg, Serdobolskaya, 65A Phone/fax: +7(812)600-6918 Cell: +7(921)757-8319 e-mail:

More information

LPR SETUP AND FIELD INSTALLATION GUIDE

LPR SETUP AND FIELD INSTALLATION GUIDE LPR SETUP AND FIELD INSTALLATION GUIDE Updated: May 1, 2010 This document was created to benchmark the settings and tools needed to successfully deploy LPR with the ipconfigure s ESM 5.1 (and subsequent

More information

Digital Projection Entry Instructions

Digital Projection Entry Instructions The image must be a jpg file. Raw, Photoshop PSD, Tiff, bmp and all other file types cannot be used. There are file size limitations for competition. 1) The Height dimension can be no more than 1080 pixels.

More information

Stitching panorama photographs with Hugin software Dirk Pons, New Zealand

Stitching panorama photographs with Hugin software Dirk Pons, New Zealand Stitching panorama photographs with Hugin software Dirk Pons, New Zealand March 2018. This work is made available under the Creative Commons license Attribution-NonCommercial 4.0 International (CC BY-NC

More information

Copyright EUKON Digital, Inc All rights reserved. EKPrint Studio. Apparel Printing Software. User Manual

Copyright EUKON Digital, Inc All rights reserved. EKPrint Studio. Apparel Printing Software. User Manual EKPrint Studio Apparel Printing Software User Manual 6.0 www.eukondigital.com Copyright EUKON Digital, Inc. 2010-2012. All rights reserved. Page 1 1. Overview... 4 2. Installation... 4 2. 1 EKPrint Studio

More information

IMAGE PROCESSING PROJECT REPORT NUCLEUS CLASIFICATION

IMAGE PROCESSING PROJECT REPORT NUCLEUS CLASIFICATION ABSTRACT : The Main agenda of this project is to segment and analyze the a stack of image, where it contains nucleus, nucleolus and heterochromatin. Find the volume, Density, Area and circularity of the

More information

Basic image edits with GIMP: Getting photos ready for competition requirements Dirk Pons, New Zealand

Basic image edits with GIMP: Getting photos ready for competition requirements Dirk Pons, New Zealand Basic image edits with GIMP: Getting photos ready for competition requirements Dirk Pons, New Zealand March 2018. This work is made available under the Creative Commons license Attribution-NonCommercial

More information

Uploading Images for CdCC Competitions

Uploading Images for CdCC Competitions Cranbury digital Camera Club Uploading Images for CdCC Competitions There are two consideration for uploading images for CdCC competitions. The first is correctly sizing and saving images on your hard

More information

Book Cover Recognition Project

Book Cover Recognition Project Book Cover Recognition Project Carolina Galleguillos Department of Computer Science University of California San Diego La Jolla, CA 92093-0404 cgallegu@cs.ucsd.edu Abstract The purpose of this project

More information

Basic Camera Craft. Roy Killen, GMAPS, EFIAP, MPSA. (c) 2016 Roy Killen Basic Camera Craft, Page 1

Basic Camera Craft. Roy Killen, GMAPS, EFIAP, MPSA. (c) 2016 Roy Killen Basic Camera Craft, Page 1 Basic Camera Craft Roy Killen, GMAPS, EFIAP, MPSA (c) 2016 Roy Killen Basic Camera Craft, Page 1 Basic Camera Craft Whether you use a camera that cost $100 or one that cost $10,000, you need to be able

More information

Multi-Resolution Estimation of Optical Flow on Vehicle Tracking under Unpredictable Environments

Multi-Resolution Estimation of Optical Flow on Vehicle Tracking under Unpredictable Environments , pp.32-36 http://dx.doi.org/10.14257/astl.2016.129.07 Multi-Resolution Estimation of Optical Flow on Vehicle Tracking under Unpredictable Environments Viet Dung Do 1 and Dong-Min Woo 1 1 Department of

More information

An Efficient Method for Vehicle License Plate Detection in Complex Scenes

An Efficient Method for Vehicle License Plate Detection in Complex Scenes Circuits and Systems, 011,, 30-35 doi:10.436/cs.011.4044 Published Online October 011 (http://.scirp.org/journal/cs) An Efficient Method for Vehicle License Plate Detection in Complex Scenes Abstract Mahmood

More information

25 Questions. All are multiple choice questions. 4 will require an additional written response explaining your answer.

25 Questions. All are multiple choice questions. 4 will require an additional written response explaining your answer. 9 th Grade Digital Photography Final Review- Written Portion of Exam EXAM STRUCTURE: 25 Questions. All are multiple choice questions. 4 will require an additional written response explaining your answer.

More information

Detection and Tracking of the Vanishing Point on a Horizon for Automotive Applications

Detection and Tracking of the Vanishing Point on a Horizon for Automotive Applications Detection and Tracking of the Vanishing Point on a Horizon for Automotive Applications Young-Woo Seo and Ragunathan (Raj) Rajkumar GM-CMU Autonomous Driving Collaborative Research Lab Carnegie Mellon University

More information

BOOK BUILDING. for beginners. Lightroom Tutorial by Mark Galer

BOOK BUILDING. for beginners. Lightroom Tutorial by Mark Galer BOOK BUILDING for beginners Lightroom Tutorial by Mark Galer Contents Part One: Preparing the Book Part Two: Page Layout Design Ideas Create a Collection Choose your Images Sequence your Images Title your

More information

Mirage 2.0. What's new in Mirage 2.0? din.a.x Digitale Bildbearbeitung GmbH Fuggerstrasse 9a D Neuss

Mirage 2.0. What's new in Mirage 2.0? din.a.x Digitale Bildbearbeitung GmbH Fuggerstrasse 9a D Neuss What's new in Mirage 2.0? 1. Adjust the quality of the preview image 2. New user-defined labels 3. Ink level display and printer status messages 4. New "Tiling" menu item 5. Split screen page preview 6.

More information

Quick Printable (And Online) Puzzles

Quick Printable (And Online) Puzzles Quick Printable (And Online) Puzzles While making an online puzzle, I stumbled onto a way to make a printable puzzle at the same time! You can even make versions of the same puzzle with varying numbers

More information

How to Resize Digital Images for Projection to 1600px by 1200px

How to Resize Digital Images for Projection to 1600px by 1200px How to Resize Digital Images for Projection to 1600px by 1200px How to resize an image using Photoshop Elements. (Other software will have similar ways to resize.) Start with an original file that is too

More information

Introduction to BioImage Analysis

Introduction to BioImage Analysis Introduction to BioImage Analysis Qi Gao CellNetworks Math-Clinic core facility 22-23.02.2018 MATH- CLINIC Math-Clinic core facility Data analysis services on bioimage analysis & bioinformatics: 1-to-1

More information

Image Processing Final Test

Image Processing Final Test Image Processing 048860 Final Test Time: 100 minutes. Allowed materials: A calculator and any written/printed materials are allowed. Answer 4-6 complete questions of the following 10 questions in order

More information

Eye-Gaze Tracking Using Inexpensive Video Cameras. Wajid Ahmed Greg Book Hardik Dave. University of Connecticut, May 2002

Eye-Gaze Tracking Using Inexpensive Video Cameras. Wajid Ahmed Greg Book Hardik Dave. University of Connecticut, May 2002 Eye-Gaze Tracking Using Inexpensive Video Cameras Wajid Ahmed Greg Book Hardik Dave University of Connecticut, May 2002 Statement of Problem To track eye movements based on pupil location. The location

More information

Spring 2005 Group 6 Final Report EZ Park

Spring 2005 Group 6 Final Report EZ Park 18-551 Spring 2005 Group 6 Final Report EZ Park Paul Li cpli@andrew.cmu.edu Ivan Ng civan@andrew.cmu.edu Victoria Chen vchen@andrew.cmu.edu -1- Table of Content INTRODUCTION... 3 PROBLEM... 3 SOLUTION...

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

JAM 2015 Screenshots of filling Online Application Form

JAM 2015 Screenshots of filling Online Application Form JAM 2015 Screenshots of filling Online Application Form STEP 1: Registration at JAPS STEP 2: Filling in the Application Form STEP 3: Payment of the Application Fee STEP 4: Downloading the Application Form

More information

Lane Detection in Automotive

Lane Detection in Automotive Lane Detection in Automotive Contents Introduction... 2 Image Processing... 2 Reading an image... 3 RGB to Gray... 3 Mean and Gaussian filtering... 6 Defining our Region of Interest... 10 BirdsEyeView

More information

Customized Foam for Tools

Customized Foam for Tools Table of contents Make sure that you have the latest version before using this document. o o o o o o o Overview of services offered and steps to follow (p.3) 1. Service : Cutting of foam for tools 2. Service

More information

A VIDEO CAMERA ROAD SIGN SYSTEM OF THE EARLY WARNING FROM COLLISION WITH THE WILD ANIMALS

A VIDEO CAMERA ROAD SIGN SYSTEM OF THE EARLY WARNING FROM COLLISION WITH THE WILD ANIMALS Vol. 12, Issue 1/2016, 42-46 DOI: 10.1515/cee-2016-0006 A VIDEO CAMERA ROAD SIGN SYSTEM OF THE EARLY WARNING FROM COLLISION WITH THE WILD ANIMALS Slavomir MATUSKA 1*, Robert HUDEC 2, Patrik KAMENCAY 3,

More information

MATLAB 및 Simulink 를이용한운전자지원시스템개발

MATLAB 및 Simulink 를이용한운전자지원시스템개발 MATLAB 및 Simulink 를이용한운전자지원시스템개발 김종헌차장 Senior Application Engineer MathWorks Korea 2015 The MathWorks, Inc. 1 Example : Sensor Fusion with Monocular Vision & Radar Configuration Monocular Vision installed

More information

How to combine images in Photoshop

How to combine images in Photoshop How to combine images in Photoshop In Photoshop, you can use multiple layers to combine images, but there are two other ways to create a single image from mulitple images. Create a panoramic image with

More information

Laser Damage Threshold System For Final Optics Testing

Laser Damage Threshold System For Final Optics Testing University of California, San Diego UCSD-LPLM-06-01 Laser Damage Threshold System For Final Optics Testing Lane Carlson June 5, 2006 Laser Plasma and Laser Matter Interactions Center for Energy Research

More information

Follower Robot Using Android Programming

Follower Robot Using Android Programming 545 Follower Robot Using Android Programming 1 Pratiksha C Dhande, 2 Prashant Bhople, 3 Tushar Dorage, 4 Nupur Patil, 5 Sarika Daundkar 1 Assistant Professor, Department of Computer Engg., Savitribai Phule

More information

You can easily print images using the Capture NX print function. Here we will explain the process for printing

You can easily print images using the Capture NX print function. Here we will explain the process for printing Printing - Print Size Request How do you print images to fit on particular paper sizes. Response You can easily print images using the Capture NX print function. Here we will explain the process for printing

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

Number Plate recognition System

Number Plate recognition System Number Plate recognition System Khomotso Jeffrey Tsiri Thesis presented in fulfilment of the requirements for the degree of Bsc(Hons) Computer Science at the University of the Western Cape Supervisor:

More information

RKSLAM Android Demo 1.0

RKSLAM Android Demo 1.0 RKSLAM Android Demo 1.0 USER MANUAL VISION GROUP, STATE KEY LAB OF CAD&CG, ZHEJIANG UNIVERSITY HTTP://WWW.ZJUCVG.NET TABLE OF CONTENTS 1 Introduction... 1-3 1.1 Product Specification...1-3 1.2 Feature

More information

Images and Graphics. 4. Images and Graphics - Copyright Denis Hamelin - Ryerson University

Images and Graphics. 4. Images and Graphics - Copyright Denis Hamelin - Ryerson University Images and Graphics Images and Graphics Graphics and images are non-textual information that can be displayed and printed. Graphics (vector graphics) are an assemblage of lines, curves or circles with

More information

2. Advanced Image Editing

2. Advanced Image Editing 2. Advanced Image Editing Aim: In this lesson, you will learn: The different options and tools to edit an image. The different ways to change and/or add attributes of an image. Jyoti: I want to prepare

More information

ivu Series TG Image Sensor

ivu Series TG Image Sensor Quick Start Guide Introduction The ivu Series Image Sensor is used to monitor labels, parts, and packaging for type, size, orientation, shape, and location. The sensor has an integrated color touch screen

More information

RECOGNITION OF EMERGENCY AND NON-EMERGENCY LIGHT USING MATROX AND VB6 MOHD NAZERI BIN MUHAMMAD

RECOGNITION OF EMERGENCY AND NON-EMERGENCY LIGHT USING MATROX AND VB6 MOHD NAZERI BIN MUHAMMAD RECOGNITION OF EMERGENCY AND NON-EMERGENCY LIGHT USING MATROX AND VB6 MOHD NAZERI BIN MUHAMMAD This thesis is submitted as partial fulfillment of the requirements for the award of the Bachelor of Electrical

More information

Nova Full-Screen Calibration System

Nova Full-Screen Calibration System Nova Full-Screen Calibration System Version: 5.0 1 Preparation Before the Calibration 1 Preparation Before the Calibration 1.1 Description of Operating Environments Full-screen calibration, which is used

More information

Picture Style Editor Ver Instruction Manual

Picture Style Editor Ver Instruction Manual ENGLISH Picture Style File Creating Software Picture Style Editor Ver. 1.18 Instruction Manual Content of this Instruction Manual PSE stands for Picture Style Editor. In this manual, the windows used in

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

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

Scanning: pictures and text

Scanning: pictures and text Scanning: pictures and text 2010 If you would like this document in an alternative format please ask staff for help. On request we can provide documents with a different size and style of font on a variety

More information

Adobe Photoshop CC 2018 Tutorial

Adobe Photoshop CC 2018 Tutorial Adobe Photoshop CC 2018 Tutorial GETTING STARTED Adobe Photoshop CC 2018 is a popular image editing software that provides a work environment consistent with Adobe Illustrator, Adobe InDesign, Adobe Photoshop,

More information

RGB Line Follower. 1. Basic knowledge of RGB line follower

RGB Line Follower. 1. Basic knowledge of RGB line follower RGB Line Follower 1. Basic knowledge of RGB line follower The RGB Line Follower module is designed for line patrol competitions. It contains 4 RGB fill lights and 4 photosensitive receiving tubes. The

More information

Annex IV - Stencyl Tutorial

Annex IV - Stencyl Tutorial Annex IV - Stencyl Tutorial This short, hands-on tutorial will walk you through the steps needed to create a simple platformer using premade content, so that you can become familiar with the main parts

More information

QS PRO & QS PRO 2 Set-up App Instructions For Bluetooth BLE (Android 4.4+)

QS PRO & QS PRO 2 Set-up App Instructions For Bluetooth BLE (Android 4.4+) QS PRO & QS PRO 2 Set-up App Instructions For Bluetooth BLE (Android 4.4+) All QS PRO s shipped since December 1, 2015 have the newest version Bluetooth BLE capability for entering and using the setup

More information

ParentZone. Your guide to accessing your child s account and their learning journey.

ParentZone. Your guide to accessing your child s account and their learning journey. ParentZone Your guide to accessing your child s account and their learning journey. Accessing ParentZone Shortly after your child has started, you will receive an email to one or both of your registered

More information

Creating Stitched Panoramas

Creating Stitched Panoramas Creating Stitched Panoramas Here are the topics that we ll cover 1. What is a stitched panorama? 2. What equipment will I need? 3. What settings & techniques do I use? 4. How do I stitch my images together

More information

fast blur removal for wearable QR code scanners

fast blur removal for wearable QR code scanners fast blur removal for wearable QR code scanners Gábor Sörös, Stephan Semmler, Luc Humair, Otmar Hilliges ISWC 2015, Osaka, Japan traditional barcode scanning next generation barcode scanning ubiquitous

More information

Sun City Summerlin Computer Club Seminar. Managing Your Photos. Tom Burt July 26, 2018

Sun City Summerlin Computer Club Seminar. Managing Your Photos. Tom Burt July 26, 2018 Sun City Summerlin Computer Club Seminar Managing Your Photos Tom Burt July 26, 2018 Where to Find the Materials Sun City Summer Computer Club Website: http://www.scscc.club/smnr Direct Hyperlink http://www.scscc.club/smnr/managingyourphotos.pdf

More information

Motic Live Imaging Module. Windows OS User Manual

Motic Live Imaging Module. Windows OS User Manual Motic Live Imaging Module Windows OS User Manual Motic Live Imaging Module Windows OS User Manual CONTENTS (Linked) Introduction 05 Menus, bars and tools 06 Title bar 06 Menu bar 06 Status bar 07 FPS 07

More information

P3PC ENZ2. Basic Operation Guide (Mac OS)

P3PC ENZ2. Basic Operation Guide (Mac OS) P3PC-4842-14ENZ2 Basic Operation Guide (Mac OS) Contents About This Manual... 5 Safety Information...6 Manuals...7 Trademarks...9 Manufacturer...10 Symbols Used in This Manual... 11 Arrow Symbols in This

More information

Intelligent Traffic Sign Detector: Adaptive Learning Based on Online Gathering of Training Samples

Intelligent Traffic Sign Detector: Adaptive Learning Based on Online Gathering of Training Samples 2011 IEEE Intelligent Vehicles Symposium (IV) Baden-Baden, Germany, June 5-9, 2011 Intelligent Traffic Sign Detector: Adaptive Learning Based on Online Gathering of Training Samples Daisuke Deguchi, Mitsunori

More information

Reikan FoCal Aperture Sharpness Test Report

Reikan FoCal Aperture Sharpness Test Report Focus Calibration and Analysis Software Test run on: 26/01/2016 17:02:00 with FoCal 2.0.6.2416W Report created on: 26/01/2016 17:03:39 with FoCal 2.0.6W Overview Test Information Property Description Data

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

ArbStudio Triggers. Using Both Input & Output Trigger With ArbStudio APPLICATION BRIEF LAB912

ArbStudio Triggers. Using Both Input & Output Trigger With ArbStudio APPLICATION BRIEF LAB912 ArbStudio Triggers Using Both Input & Output Trigger With ArbStudio APPLICATION BRIEF LAB912 January 26, 2012 Summary ArbStudio has provision for outputting triggers synchronous with the output waveforms

More information

A Novel Approach for Image Cropping and Automatic Contact Extraction from Images

A Novel Approach for Image Cropping and Automatic Contact Extraction from Images A Novel Approach for Image Cropping and Automatic Contact Extraction from Images Prof. Vaibhav Tumane *, {Dolly Chaurpagar, Ankita Somkuwar, Gauri Sonone, Sukanya Marbade } # Assistant Professor, Department

More information

An Efficient Color Image Segmentation using Edge Detection and Thresholding Methods

An Efficient Color Image Segmentation using Edge Detection and Thresholding Methods 19 An Efficient Color Image Segmentation using Edge Detection and Thresholding Methods T.Arunachalam* Post Graduate Student, P.G. Dept. of Computer Science, Govt Arts College, Melur - 625 106 Email-Arunac682@gmail.com

More information

Picture Style Editor Ver Instruction Manual

Picture Style Editor Ver Instruction Manual ENGLISH Picture Style File Creating Software Picture Style Editor Ver. 1.12 Instruction Manual Content of this Instruction Manual PSE is used for Picture Style Editor. In this manual, the windows used

More information

BASIC OPERATIONS IN IMAGE PROCESSING USING MATLAB

BASIC OPERATIONS IN IMAGE PROCESSING USING MATLAB BASIC OPERATIONS IN IMAGE PROCESSING USING MATLAB Er.Amritpal Kaur 1,Nirajpal Kaur 2 1,2 Assistant Professor,Guru Nanak Dev University, Regional Campus, Gurdaspur Abstract: - This paper aims at basic image

More information

By Washan Najat Nawi

By Washan Najat Nawi By Washan Najat Nawi how to get started how to use the interface how to modify images with basic editing skills Adobe Photoshop: is a popular image-editing software. Two general usage of Photoshop Creating

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

1 ImageBrowser Software User Guide 5.1

1 ImageBrowser Software User Guide 5.1 1 ImageBrowser Software User Guide 5.1 Table of Contents (1/2) Chapter 1 What is ImageBrowser? Chapter 2 What Can ImageBrowser Do?... 5 Guide to the ImageBrowser Windows... 6 Downloading and Printing Images

More information

Resize images for either 1400 or 1050 dpi for competitions.

Resize images for either 1400 or 1050 dpi for competitions. Resize images for either 1400 or 1050 dpi for competitions. 1. I suggest the first thing we do is provide a folder for the resized images, somewhere on your computer where you are going to keep all your

More information

Developing Multimedia Assets using Fireworks and Flash

Developing Multimedia Assets using Fireworks and Flash HO-2: IMAGE FORMATS Introduction As you will already have observed from browsing the web, it is possible to add a wide range of graphics to web pages, including: logos, animations, still photographs, roll-over

More information

Reikan FoCal Aperture Sharpness Test Report

Reikan FoCal Aperture Sharpness Test Report Focus Calibration and Analysis Software Reikan FoCal Sharpness Test Report Test run on: 26/01/2016 17:14:35 with FoCal 2.0.6.2416W Report created on: 26/01/2016 17:16:16 with FoCal 2.0.6W Overview Test

More information

Share your Live Photos with friends and family by printing, ordering prints from Snapfish (US only), and via Facebook or .

Share your Live Photos with friends and family by printing, ordering prints from Snapfish (US only), and via Facebook or  . HP Live Photo app - available on ios and Android devices Make your photos come to life with HP Live Photo! HP Live Photo is a free, fun, and easy app for ios and Android that lets you share your experiences

More information

DOCUMENT SCANNER INSTRUCTIONS. Space. Backup. Count Only. New File. Scanner. Feeding Option Manual Auto Semi-Auto

DOCUMENT SCANNER INSTRUCTIONS. Space. Backup. Count Only. New File. Scanner. Feeding Option Manual Auto Semi-Auto E FILM F Scanner A Space Count Only New File Feeding Option Manual Auto Semi-Auto Backup DOCUMENT SCANNER INSTRUCTIONS NOTICE q Copyright 2001 by CANON ELECTRONICS INC. All rights reserved. No part of

More information

PATTERN MAKING FOR THE INFINITY WAND

PATTERN MAKING FOR THE INFINITY WAND PATTERN MAKING FOR THE INFINITY WAND This tutorial will walk you through making patterns for the Infinity Wand and will explain how the wand interprets them. If you get confused, don t worry...keep reading,

More information

All files must be in the srgb colour space This will be the default for most programs. Elements, Photoshop & Lightroom info slides 71-73

All files must be in the srgb colour space This will be the default for most programs. Elements, Photoshop & Lightroom info slides 71-73 1 Resizing images for DPI Reflex Open Competitions Picasa slides 6-12 Lightroom slides 13-19 Elements slides 20-25 Photoshop slides 26-31 Gimp slides 32-41 PIXELR Editor slides 42-53 Smart Photo Editor

More information

Importing and processing gel images

Importing and processing gel images BioNumerics Tutorial: Importing and processing gel images 1 Aim Comprehensive tools for the processing of electrophoresis fingerprints, both from slab gels and capillary sequencers are incorporated into

More information

2. Advanced Image editing

2. Advanced Image editing Aim: In this lesson, you will learn: 2. Advanced Image editing Tejas: We have some pictures with us. We want to insert these pictures in a story that we are writing. Jyoti: Some of the pictures need modification

More information

Topic: Compositing. Introducing Live Backgrounds (Background Image Plates)

Topic: Compositing. Introducing Live Backgrounds (Background Image Plates) Introducing Live Backgrounds (Background Image Plates) FrameForge Version 4 Introduces Live Backgrounds which is a special compositing feature that lets you take an image of a location or set and make

More information

inphoto ID PS Automatic ID photography With Canon PowerShot camera User Guide

inphoto ID PS Automatic ID photography With Canon PowerShot camera User Guide inphoto ID PS Automatic ID photography With Canon PowerShot camera User Guide 2018 Akond company Phone/fax: +7(812)384-6430 Cell: +7(921)757-8319 e-mail: info@akond.net akondsales@gmail.com http://www.akond.net

More information

Adobe Photoshop CC update: May 2013

Adobe Photoshop CC update: May 2013 Adobe Photoshop CC update: May 2013 Welcome to the latest Adobe Photoshop CC bulletin update. This is provided free to ensure everyone can be kept upto-date with the latest changes that have taken place

More information

1 Overview Introduction Acronyms & abbreviations...2

1 Overview Introduction Acronyms & abbreviations...2 Revision A, January 2018 Antenna Sharing Configuration using CommScope RET Controller Systems Table of Contents 1 Overview...2 1.1 Introduction...2 1.2 Acronyms & abbreviations...2 2 Antenna Sharing Configuration

More information

Fake Impressionist Paintings for Images and Video

Fake Impressionist Paintings for Images and Video Fake Impressionist Paintings for Images and Video Patrick Gregory Callahan pgcallah@andrew.cmu.edu Department of Materials Science and Engineering Carnegie Mellon University May 7, 2010 1 Abstract A technique

More information

NEORSD. Cad Standards and Procedures Manual

NEORSD. Cad Standards and Procedures Manual NEORSD Cad Standards and Procedures Manual This Manual is being provided to you on loan from the NEOSRD and is the property of the NEOSRD. Periodic updates will be provided and you are responsible for

More information

Digital Image Processing. Lecture # 6 Corner Detection & Color Processing

Digital Image Processing. Lecture # 6 Corner Detection & Color Processing Digital Image Processing Lecture # 6 Corner Detection & Color Processing 1 Corners Corners (interest points) Unlike edges, corners (patches of pixels surrounding the corner) do not necessarily correspond

More information

Reikan FoCal Aperture Sharpness Test Report

Reikan FoCal Aperture Sharpness Test Report Focus Calibration and Analysis Software Reikan FoCal Sharpness Test Report Test run on: 10/02/2016 19:57:05 with FoCal 2.0.6.2416W Report created on: 10/02/2016 19:59:09 with FoCal 2.0.6W Overview Test

More information

Vehicle License Plate Recognition System Using LoG Operator for Edge Detection and Radon Transform for Slant Correction

Vehicle License Plate Recognition System Using LoG Operator for Edge Detection and Radon Transform for Slant Correction Vehicle License Plate Recognition System Using LoG Operator for Edge Detection and Radon Transform for Slant Correction Jaya Gupta, Prof. Supriya Agrawal Computer Engineering Department, SVKM s NMIMS University

More information

Optimizing Images for Digital Projection A few of our Camera Club members have been disappointed that their digital images just don t look the same

Optimizing Images for Digital Projection A few of our Camera Club members have been disappointed that their digital images just don t look the same Optimizing Images for Digital Projection A few of our Camera Club members have been disappointed that their digital images just don t look the same when projected during a digital critique or a slide show.

More information