Chapter 1: Image processing and computer vision Introduction

Slides:



Advertisements
Similar presentations
DEVELOPMENT OF A COMPUTER PLATFORM FOR OBJECT 3D RECONSTRUCTION USING COMPUTER VISION TECHNIQUES Teresa C. S. Azevedo João Manuel R. S. Tavares Mário A.
Advertisements

Video Object Tracking and Replacement for Post TV Production LYU0303 Final Year Project Spring 2004.
OpenCV Introduction Hang Xiao Oct 26, History  1999 Jan : lanched by Intel, real time machine vision library for UI, optimized code for intel 
Page 1 SIXTH SENSE TECHNOLOGY Presented by: KIRTI AGGARWAL 2K7-MRCE-CS-035.
Image Processing IB Paper 8 – Part A Ognjen Arandjelović Ognjen Arandjelović
Image Segmentation Image segmentation (segmentace obrazu) –division or separation of the image into segments (connected regions) of similar properties.
Virtual Dart: An Augmented Reality Game on Mobile Device Supervisor: Professor Michael R. Lyu Prepared by: Lai Chung Sum Siu Ho Tung.
Skills: selecting colors, specifying colors in HTML Concepts: combining red, green and blue light to generate colors, combining light versus combining.
3D Computer Vision and Video Computing Review Midterm Review CSC I6716 Spring 2011 Prof. Zhigang Zhu
1 Comp300a: Introduction to Computer Vision L. QUAN.
Smart Traveller with Visual Translator. What is Smart Traveller? Mobile Device which is convenience for a traveller to carry Mobile Device which is convenience.
CSCE 641 Computer Graphics: Image-based Modeling (Cont.) Jinxiang Chai.
November 29, 2004AI: Chapter 24: Perception1 Artificial Intelligence Chapter 24: Perception Michael Scherger Department of Computer Science Kent State.
Knowledge Systems Lab JN 8/24/2015 A Method for Temporal Hand Gesture Recognition Joshua R. New Knowledge Systems Laboratory Jacksonville State University.
A Brief Overview of Computer Vision Jinxiang Chai.
Image Processing Lecture 2 - Gaurav Gupta - Shobhit Niranjan.
Image Formation. Input - Digital Images Intensity Images – encoding of light intensity Range Images – encoding of shape and distance They are both a 2-D.
Knowledge Systems Lab JN 9/10/2002 Computer Vision: Gesture Recognition from Images Joshua R. New Knowledge Systems Laboratory Jacksonville State University.
1 Mean shift and feature selection ECE 738 course project Zhaozheng Yin Spring 2005 Note: Figures and ideas are copyrighted by original authors.
Introduction to Computer Vision Olac Fuentes Computer Science Department University of Texas at El Paso El Paso, TX, U.S.A.
Presentation by: K.G.P.Srikanth. CONTENTS  Introduction  Components  Working  Applications.
Perception Introduction Pattern Recognition Image Formation
Submitted by:- Vinay kr. Gupta Computer Sci. & Engg. 4 th year.
CSCE 5013 Computer Vision Fall 2011 Prof. John Gauch
 Supervised by Prof. LYU Rung Tsong Michael Student: Chan Wai Yeung ( ) Lai Tai Shing ( )
Intelligent Vision Systems Image Geometry and Acquisition ENT 496 Ms. HEMA C.R. Lecture 2.
Cmput412 3D vision and sensing 3D modeling from images can be complex 90 horizon 3D measurements from images can be wrong.
Computer Graphics & Image Processing Lecture 1 Introduction.
Augmented Reality and 3D modelling By Stafford Joemat Supervised by Mr James Connan.
1 Artificial Intelligence: Vision Stages of analysis Low level vision Surfaces and distance Object Matching.
1 Research Question  Can a vision-based mobile robot  with limited computation and memory,  and rapidly varying camera positions,  operate autonomously.
Autonomous Robots Vision © Manfred Huber 2014.
Subject Name: Computer Graphics Subject Code: Textbook: “Computer Graphics”, C Version By Hearn and Baker Credits: 6 1.
Introduction to VRML for generating 3-D display
Chapter 1: Image processing and computer vision Introduction
Intelligent Vision Systems Image Geometry and Acquisition ENT 496 Ms. HEMA C.R. Lecture 2.
Suggested Machine Learning Class: – learning-supervised-learning--ud675
CSE 185 Introduction to Computer Vision
Over the recent years, computer vision has started to play a significant role in the Human Computer Interaction (HCI). With efficient object tracking.
Coin Recognition Using MATLAB - Emad Zaben - Bakir Hasanein - Mohammed Omar.
3D computer vision techniques
CMSC5711 Image processing and computer vision
Processing visual information for Computer Vision
Day 3: computer vision.
3D Computer Vision and Applications
Rendering Pipeline Fall, 2015.
Color Image Processing
Color Image Processing
Jun Shimamura, Naokazu Yokoya, Haruo Takemura and Kazumasa Yamazawa
The design of smart glasses for VR applications The CU-GLASSES
CS201 Lecture 02 Computer Vision: Image Formation and Basic Techniques
MSC projects for for CMSC5720(term1), CMSC5721(term2)
Color Image Processing
Augmented Reality By: Erica Baas.
1-Introduction (Computing the image histogram).
A language assistant system for smart glasses
Senior Capstone Project Gaze Tracking System
Introduction to VRML for generating 3-D display
To be supervised by Prof. KH Wong
CMSC5711 Image processing and computer vision
Color Image Processing
Unit 7 Light and Vision.
Multiple View Geometry for Robotics
Image processing and computer vision
Computer Graphics Module Overview
Midterm Exam Closed book, notes, computer Similar to test 1 in format:
Midterm Exam Closed book, notes, computer Similar to test 1 in format:
Filtering An image as a function Digital vs. continuous images
Presentation transcript:

Chapter 1: Image processing and computer vision Introduction by Prof. K.H. Wong, Computer Science and Engineering Dept. CUHK khwong@cse.cuhk.edu.hk introduction v8a

Content 1) Introduction 2) Camera model 3) edges detection 4) Feature extraction 5) Hough transform for line circle and shape detection 6) Histogram for color equalization 7) Meanshift for motion tracking 8) Stereo vision 9) Pose estimation and Structure From Motion SFM for virtual reality applications 10) Bundle adjustment for SFM 11) VRML display introduction v8a

Image processing and applications introduction v8a

Introduction Cameras Images Sensors Raw Jpeg CMOS CCD Column (c) Row (r) Pixel value I(c,r) or I(x,y)=(0->255) introduction v8a

2) Edge detection Features have many applications: recognition, tracking etc. The most common are Point edges Shape intensity change positions Boundary edges Shape intensity changing lines introduction v8a

Sobel Demo http://www.youtube.com/watch?v=z_a6e30aOXo introduction v8a

Face edges Demo http://www.youtube.com/watch?v=CDlLe-53a0w introduction v8a

Application of edges Lane detection http://www.youtube.com/watch?v=Al4DnNkZUeA&feature=related http://www.youtube.com/watch?v=9F3_6xL8hEY&feature=related introduction v8a

3) Shape detection (Hough Transform) Lines Circles Irregular shapes introduction v8a

Rectangular object detection in video Demos using the Hough Transform https://www.youtube.com/watch?v=6afjN1ranTw http://www.youtube.com/watch?v=jPEfoi9g0Lw&feature=related introduction v8a

Hough circle detection Using the opencv library http://www.youtube.com/watch?v=jVQL1DODyUE introduction v8a

4) Histogram equalization Input: The picture is poorly shot. Most pixel gray levels are located in a small range. Output: Use histogram transform to map the marks in ‘r’ domain to ‘S’ domain , so in ‘S’ domain, each S gray level has similar number of pixels. Input: Low contrast image r domain Output: High contrast image S domain introduction v8a 12

4) (continue) Color models Cartesian-coordinate representation RGB (Red , Green , Blue) cylindrical-coordinate representation HSV (Hue, saturation, value) HSL (Hue, saturation, Light) RGB HSV http://en.wikipedia.org/wiki/HSL_and_HSV#From_HSV introduction v8a 13

5) Mean shift (cam-shift) http://www.youtube.com/watch?v=iBOlbs8i7Og http://www.youtube.com/watch?v=zjteYlhjm-s&feature=related introduction v8a

Mean shift application Track human movement http://www.youtube.com/watch?v=I53-SZ1o_c0&feature=related introduction v8a

6) Face detection (optional) introduction v8a From Viola-Jones, IJCV 2005 16

Face detection and tracking Face tracking http://www.youtube.com/watch?v=V7UdYzCMKvw&feature=related introduction v8a

Face tracking applications Face change http://www.youtube.com/watch?v=i_bZNVmhJ2o introduction v8a

Topics in 3D computer vision by Prof. K.H. Wong, Computer Science and Engineering Dept. CUHK khwong@cse.cuhk.edu.hk introduction v8a

Motivation Study the 3D vision problems Study how to obtain 3D information from 2D images Study various applications introduction v8a

Applications 3D models from images Game development Robot navigation 3G Mobil phone applications, Location systems User input introduction v8a

Demo1: 3D reconstruction (see also http://www. cse. cuhk. edu Demo1: 3D reconstruction (see also http://www.cse.cuhk.edu.hk/khwong/demo/index.html) (Click picture to see movie) Grand Canyon Demo Flask Robot http://www.youtube.com/watch?v=2KLFRILlOjc http://www.youtube.com/watch?v=xgCnV--wf2k http://www.youtube.com/watch?v=ONx4cyYYyrI http://www.youtube.com/watch?v=4h1pN2DIs6g introduction v8a

Demo2: augmented reality (Click picture to see movie) Augmented reality demo http://www.youtube.com/watch?v=gnnQ_OEtj-Y http://www.youtube.com/watch?v=zPbgw-ydB9Y introduction v8a

Demo3 Projector camera system (PROCAM) Click pictures to see movies CVPR 09 A Projector-based Movable Hand-held Display System VRCAI09:A Hand-held 3D Display System that facilities direct manipulation of 3D virtual objects http://www.youtube.com/watch?v=YHhQSglmuqY&feature=channel_page introduction v8a http://www.youtube.com/watch?v=vVW9QXuKfoQ

Demo 4 Flexible projected surface http://www.youtube.com/watch?v=isqg8O9a4LE introduction v8a

Demo 5 3-D display without the use of spectacles. http://www.youtube.com/watch?v=oyxR_RT4NNc introduction v8a

Demo 6 Spherical projected surface for 3D viewing without spectacles. http://www.youtube.com/watch?v=yVDFcZZ8gDo introduction v8a

Demo 7 A KEYSTONE-FREE HAND-HELD MOBILE PROJECTION http://www.youtube.com/watch?v=mbl-BpTnbeA introduction v8a

A quick tour of 3D computer vision Image capturing Feature extraction Model reconstruction or pose estimation Application of model and pose obtained introduction v8a

Camera structure Object CCD 1024x768 Focal length= f Y y f Z introduction v8a Z

Application 1: Model reconstruction see http://www. cs. cuhk From a sequence of images Of an object 3D Model found introduction v8a

Application 2: Motion tracking X2 X3 Camera X1 Body pose and motion tracking --By tracking Images of white dots and compute the 3D motion introduction v8a www.cybercollege.com/tvp026-2.htm

New computer vision products Orcam (http://www.orcam.com/) Demos: https://www.youtube.com/watch?v=24yIl8tPvfU https://www.youtube.com/watch?v=j8lScHO2mM0 Google glass (http://www.google.com/glass/start/) Demo: introduction v8a

CU-GLASS at CUHK Be able to overlay images or text to our normal view Glass frame(no lens) Be able to overlay images or text to our normal view Simple, low cost and easy to build Can duplicate for the 2nd eye Close up Lens See through glass CCD display For text or graphics The CU-GLASSES introduction v8a

The idea Top down view Eye Reflective , see through glass CCD display Close up Lens introduction v8a

Tests Video link https://youtu.be/i2lpo0DHaWA introduction v8a

Computer vision (3D) The mathematics introduction v8a

3D vision processing Projection geometry: Perspective Geometry Edge detection stereo correspondence introduction v8a

Basic Perspective Geometry Old position Model M at t=1 image v-axis P=(x,y,z) Y-axis P’=(x’,y’,z’) Z-axis () New position () c (Image center) Ow (World center) u-axis () f=focal length introduction v8a X-axis

Motion of camera from world to camera coordinates Camera motion (rotation=Rc, translation=Tc) will cause change of pixel position (x,y), See p156[1] Yc Camera center Rc,Tc Xc Yw Zw Zc an_y an_z Xw World center Cameras v.3d introduction v8a an_x

3D to 2D projection Perspective model u=F*X/z v=F*Y/z World center Y v Virtual Screen or CCD sensor World center Y v v F Z F Real Screen Or CCD sensor Thin lens or a pin hole introduction v8a

Summary Image processing and computer vision are useful in many applications Becoming more and more popular since every one is carrying cameras in their mobile devices. We will study the mathematics and algorithms of image processing and vision programming introduction v8a