What I learned in the first 2 weeks

Slides:



Advertisements
Similar presentations
CSE 473/573 Computer Vision and Image Processing (CVIP)
Advertisements

Interest points CSE P 576 Ali Farhadi Many slides from Steve Seitz, Larry Zitnick.
Computer Vision Optical Flow
Feature extraction: Corners 9300 Harris Corners Pkwy, Charlotte, NC.
Lecture 6: Feature matching CS4670: Computer Vision Noah Snavely.
Targil 2 Image enhancement and edge detection. For both we will use image derivatives.
Announcements Quiz Thursday Quiz Review Tomorrow: AV Williams 4424, 4pm. Practice Quiz handout.
Announcements Project1 artifact reminder counts towards your grade Demos this Thursday, 12-2:30 sign up! Extra office hours this week David (T 12-1, W/F.
Automatic Image Alignment (feature-based) : Computational Photography Alexei Efros, CMU, Fall 2005 with a lot of slides stolen from Steve Seitz and.
Feature extraction: Corners and blobs
Announcements Project 1 test the turn-in procedure this week (make sure your folder’s there) grading session next Thursday 2:30-5pm –10 minute slot to.
Detecting Patterns So far Specific patterns (eyes) Generally useful patterns (edges) Also (new) “Interesting” distinctive patterns ( No specific pattern:
Motion Estimation Today’s Readings Trucco & Verri, 8.3 – 8.4 (skip 8.3.3, read only top half of p. 199) Numerical Recipes (Newton-Raphson), 9.4 (first.
Matching Compare region of image to region of image. –We talked about this for stereo. –Important for motion. Epipolar constraint unknown. But motion small.
CS4670: Computer Vision Kavita Bala Lecture 7: Harris Corner Detection.
MASKS © 2004 Invitation to 3D vision Lecture 3 Image Primitives andCorrespondence.
Computer vision.
Advanced Computer Vision Chapter 4 Feature Detection and Matching Presented by: 傅楸善 & 許承偉
Feature and object tracking algorithms for video tracking Student: Oren Shevach Instructor: Arie nakhmani.
Lecture 06 06/12/2011 Shai Avidan הבהרה: החומר המחייב הוא החומר הנלמד בכיתה ולא זה המופיע / לא מופיע במצגת.
UCF Computer Vision REU 2012 Week 1 Presentation Paul Finkel 5/21/12.
UCF REU: Weeks 1 & 2. Gradient Code Gradient Direction of the Gradient: Calculating theta.
KRISTIN LAM REU WEEKS 1 & 2. MATERIAL COVERED MATLAB basics Edge Detection Harris Corner Detector Adaboost Face Detection Optical Flow Lucas-Kanade Method.
Feature extraction: Corners 9300 Harris Corners Pkwy, Charlotte, NC.
Pyramidal Implementation of Lucas Kanade Feature Tracker Jia Huang Xiaoyan Liu Han Xin Yizhen Tan.
Notes on the Harris Detector
Edge Detection and Geometric Primitive Extraction Jinxiang Chai.
Kylie Gorman WEEK 1-2 REVIEW. CONVERTING AN IMAGE FROM RGB TO HSV AND DISPLAY CHANNELS.
Joint Tracking of Features and Edges STAN BIRCHFIELD AND SHRINIVAS PUNDLIK CLEMSON UNIVERSITY ABSTRACT LUCAS-KANADE AND HORN-SCHUNCK JOINT TRACKING OF.
Edges.
Learning to Detect Faces A Large-Scale Application of Machine Learning (This material is not in the text: for further information see the paper by P.
Features, Feature descriptors, Matching Jana Kosecka George Mason University.
PRESENTATION REU IN COMPUTER VISION 2014 AMARI LEWIS CRCV UNIVERSITY OF CENTRAL FLORIDA.
Lecture 10: Lines from Edges, Interest Points, Binary Operations CAP 5415: Computer Vision Fall 2006.
Lecture 9 Feature Extraction and Motion Estimation Slides by: Michael Black Clark F. Olson Jean Ponce.
CS654: Digital Image Analysis
Motion Estimation Today’s Readings Trucco & Verri, 8.3 – 8.4 (skip 8.3.3, read only top half of p. 199) Newton's method Wikpedia page
Dr. J. Shanbehzadeh M.HosseinKord Science and Research Branch of Islamic Azad University Machine Vision 1/49 slides.
MASKS © 2004 Invitation to 3D vision Lecture 3 Image Primitives andCorrespondence.
REU Week 1 Presented by Christina Peterson. Edge Detection Sobel ◦ Convolve image with derivative masks:  x:  y: ◦ Calculate gradient magnitude ◦ Apply.
Lecture 10: Harris Corner Detector CS4670/5670: Computer Vision Kavita Bala.
Motion tracking TEAM D, Project 11: Laura Gui - Timisoara Calin Garboni - Timisoara Peter Horvath - Szeged Peter Kovacs - Debrecen.
Visual homing using PCA-SIFT
- photometric aspects of image formation gray level images
Interest Points EE/CSE 576 Linda Shapiro.
Distinctive Image Features from Scale-Invariant Keypoints
Horn-Schunk Optical Flow
CS 4501: Introduction to Computer Vision Sparse Feature Detectors: Harris Corner, Difference of Gaussian Connelly Barnes Slides from Jason Lawrence, Fei.
3D Vision Interest Points.
Motion and Optical Flow
CSE 577 Image and Video Analysis
SURF: Speeded-Up Robust Features
Image Primitives and Correspondence
Corners and Interest Points
EE 596 Machine Vision HW 6 Assigned: Nov 20, 2013
Optical Flow For Vision-Aided Navigation
Levi Smith REU Week 1.
Dr. Chang Shu COMP 4900C Winter 2008
REU Week 1 Ivette Carreras UCF.
Announcements more panorama slots available now
Local features and image matching
Announcements Questions on the project? New turn-in info online
Week 1 Alan Wright - UCF.
Coupled Horn-Schunck and Lukas-Kanade for image processing
Edge detection f(x,y) viewed as a smooth function
Announcements more panorama slots available now
Lucas-Kanade Registration Algorithm
Lecture 5: Feature invariance
Presentation transcript:

What I learned in the first 2 weeks Wesna LaLanne

Edge Detector Find the gradient Get a image in gray scale. Get the derivative of the kernel in the x and y direction Convolve the derivatives of the kernel in the x and y direction with the picture Take both convulsions, square them, and add them. Then take the square root of all that Boom. Gradient. Pick an appropriate threshold that will show the right amount of details (not too much) so you can can get an accurate representation of the edges.

My own edge Detector!

Seagull Example Finding the gradient Gradient + Threshold = Edge Detector

Other things I did with Mr. Seagull Gradient Direction Laplacian

Other things I did with Mr. Seagull Original Picture - Gradient Picture =

Pyramids

Pyramid Edges

Harris Corner Detection We use corners because they’re easily identifiable when you look at an image through a small window When using corners, shifting said window in any direction, you would see a large change in intensity.

Harris Corner Detection - What’s it doing? Goes through every pixel in the picture to Calculate ‘R’ which is the the measure of corner response. R = detM - k(traceM)^2, where M is a 2x2 matrix computed from image derivatives and k is an empirical constant between 0.04-0.06 We find the points with large corner response, where R > threshold Take only the points of local maxima R

Box Corner Detection Original Corner Response R Where R > threshold

Lucas-Kanade (Optical Flow) Optical flow is a method that is used for estimating the motion of objects across a series of consecutive frames. Optical flow has two components: normal flow and parallel flow. Normal flow can be computed directly, but Parallel Flow can’t. Lucas-Kanade is one of several method used to solve the parallel flow issue.

SIFT/SVM Sift - is an algorithm in computer vision that detects local features in the images SVM (Support Vector Machine) - a learning algorithm that analyzes the data from the sift algorithm and recognized patterns.

SIFT in action

Bag of Words The algorithm will treat certain features as words and will group the “words” together.