Top Banner
Feature extraction: Corners and blobs
61

Feature extraction: Corners and blobslazebnik/spring09/lec07_corner_blob.pdf · • Many fewer features than image pixels • Locality • A feature occupies a relatively small area

Jul 28, 2020

Download

Documents

dariahiddleston
Welcome message from author
This document is posted to help you gain knowledge. Please leave a comment to let me know what you think about it! Share it to your friends and learn new things together.
Transcript
Page 1: Feature extraction: Corners and blobslazebnik/spring09/lec07_corner_blob.pdf · • Many fewer features than image pixels • Locality • A feature occupies a relatively small area

Feature extraction: Corners and blobs

Page 2: Feature extraction: Corners and blobslazebnik/spring09/lec07_corner_blob.pdf · • Many fewer features than image pixels • Locality • A feature occupies a relatively small area

Why extract features?• Motivation: panorama stitching

• We have two images – how do we combine them?

Page 3: Feature extraction: Corners and blobslazebnik/spring09/lec07_corner_blob.pdf · • Many fewer features than image pixels • Locality • A feature occupies a relatively small area

Why extract features?• Motivation: panorama stitching

• We have two images – how do we combine them?

Step 1: extract featuresStep 2: match features

Page 4: Feature extraction: Corners and blobslazebnik/spring09/lec07_corner_blob.pdf · • Many fewer features than image pixels • Locality • A feature occupies a relatively small area

Why extract features?• Motivation: panorama stitching

• We have two images – how do we combine them?

Step 1: extract featuresStep 2: match featuresStep 3: align images

Page 5: Feature extraction: Corners and blobslazebnik/spring09/lec07_corner_blob.pdf · • Many fewer features than image pixels • Locality • A feature occupies a relatively small area

Characteristics of good features

• Repeatability• The same feature can be found in several images despite geometric

and photometric transformations

• Saliency• Each feature has a distinctive description

• Compactness and efficiency• Many fewer features than image pixels

• Locality• A feature occupies a relatively small area of the image; robust to

clutter and occlusion

Page 6: Feature extraction: Corners and blobslazebnik/spring09/lec07_corner_blob.pdf · • Many fewer features than image pixels • Locality • A feature occupies a relatively small area

Applications Feature points are used for:

• Motion tracking• Image alignment • 3D reconstruction• Object recognition• Indexing and database retrieval• Robot navigation

Page 7: Feature extraction: Corners and blobslazebnik/spring09/lec07_corner_blob.pdf · • Many fewer features than image pixels • Locality • A feature occupies a relatively small area

Finding Corners

• Key property: in the region around a corner, image gradient has two or more dominant directions

• Corners are repeatable and distinctive

C.Harris and M.Stephens. "A Combined Corner and Edge Detector.“Proceedings of the 4th Alvey Vision Conference: pages 147--151.

Page 8: Feature extraction: Corners and blobslazebnik/spring09/lec07_corner_blob.pdf · • Many fewer features than image pixels • Locality • A feature occupies a relatively small area

The Basic Idea

• We should easily recognize the point by looking through a small window

• Shifting a window in any direction should give a large change in intensity

“edge”:no change along the edge direction

“corner”:significant change in all directions

“flat” region:no change in all directions

Source: A. Efros

Page 9: Feature extraction: Corners and blobslazebnik/spring09/lec07_corner_blob.pdf · • Many fewer features than image pixels • Locality • A feature occupies a relatively small area

Harris Detector: Mathematics

[ ]2

,( , ) ( , ) ( , ) ( , )

x yE u v w x y I x u y v I x y= + + −∑

Change in appearance for the shift [u,v]:

IntensityShifted intensity

Window function

orWindow function w(x,y) =

Gaussian1 in window, 0 outside

Source: R. Szeliski

Page 10: Feature extraction: Corners and blobslazebnik/spring09/lec07_corner_blob.pdf · • Many fewer features than image pixels • Locality • A feature occupies a relatively small area

Harris Detector: Mathematics

[ ]2

,( , ) ( , ) ( , ) ( , )

x yE u v w x y I x u y v I x y= + + −∑

Change in appearance for the shift [u,v]:

Second-order Taylor expansion of E(u,v) about (0,0)(bilinear approximation for small shifts):

⎥⎦

⎤⎢⎣

⎡⎥⎦

⎤⎢⎣

⎡+⎥

⎤⎢⎣

⎡+≈

vu

EEEE

vuEE

vuEvuEvvuv

uvuu

v

u

)0,0()0,0()0,0()0,0(

][21

)0,0()0,0(

][)0,0(),(

Page 11: Feature extraction: Corners and blobslazebnik/spring09/lec07_corner_blob.pdf · • Many fewer features than image pixels • Locality • A feature occupies a relatively small area

Harris Detector: MathematicsThe bilinear approximation simplifies to

2

2,

( , ) x x y

x y x y y

I I IM w x y

I I I⎡ ⎤

= ⎢ ⎥⎢ ⎥⎣ ⎦

where M is a 2×2 matrix computed from image derivatives:

⎥⎦

⎤⎢⎣

⎡≈

vu

MvuvuE ][),(

M

Page 12: Feature extraction: Corners and blobslazebnik/spring09/lec07_corner_blob.pdf · • Many fewer features than image pixels • Locality • A feature occupies a relatively small area

The surface E(u,v) is locally approximated by a quadratic form. Let’s try to understand its shape.

Interpreting the second moment matrix

⎥⎦

⎤⎢⎣

⎡≈

vu

MvuvuE ][),(

⎥⎥⎦

⎢⎢⎣

⎡=∑ 2

2

yyx

yxx

IIIIII

M

Page 13: Feature extraction: Corners and blobslazebnik/spring09/lec07_corner_blob.pdf · • Many fewer features than image pixels • Locality • A feature occupies a relatively small area

⎥⎦

⎤⎢⎣

⎡=

⎥⎥⎦

⎢⎢⎣

⎡=∑

2

12

2

00λ

λ

yyx

yxx

IIIIII

M

First, consider the axis-aligned case (gradients are either horizontal or vertical)

If either λ is close to 0, then this is not a corner, so look for locations where both are large.

Interpreting the second moment matrix

Page 14: Feature extraction: Corners and blobslazebnik/spring09/lec07_corner_blob.pdf · • Many fewer features than image pixels • Locality • A feature occupies a relatively small area

General Case

Since M is symmetric, we have RRM ⎥⎦

⎤⎢⎣

⎡= −

2

11

00λ

λ

We can visualize M as an ellipse with axis lengths determined by the eigenvalues and orientation determined by R

direction of the slowest change

direction of the fastest change

(λmax)-1/2

(λmin)-1/2const][ =⎥

⎤⎢⎣

⎡vu

Mvu

Ellipse equation:

Page 15: Feature extraction: Corners and blobslazebnik/spring09/lec07_corner_blob.pdf · • Many fewer features than image pixels • Locality • A feature occupies a relatively small area

Visualization of second moment matrices

Page 16: Feature extraction: Corners and blobslazebnik/spring09/lec07_corner_blob.pdf · • Many fewer features than image pixels • Locality • A feature occupies a relatively small area

Visualization of second moment matrices

Page 17: Feature extraction: Corners and blobslazebnik/spring09/lec07_corner_blob.pdf · • Many fewer features than image pixels • Locality • A feature occupies a relatively small area

Interpreting the eigenvalues

λ1

λ2

“Corner”λ1 and λ2 are large,λ1 ~ λ2;E increases in all directions

λ1 and λ2 are small;E is almost constant in all directions

“Edge” λ1 >> λ2

“Edge” λ2 >> λ1

“Flat” region

Classification of image points using eigenvalues of M:

Page 18: Feature extraction: Corners and blobslazebnik/spring09/lec07_corner_blob.pdf · • Many fewer features than image pixels • Locality • A feature occupies a relatively small area

Corner response function

“Corner”R > 0

“Edge” R < 0

“Edge” R < 0

“Flat” region

|R| small

22121

2 )()(trace)det( λλαλλα +−=−= MMR

α: constant (0.04 to 0.06)

Page 19: Feature extraction: Corners and blobslazebnik/spring09/lec07_corner_blob.pdf · • Many fewer features than image pixels • Locality • A feature occupies a relatively small area

Harris detector: Steps

1. Compute Gaussian derivatives at each pixel2. Compute second moment matrix M in a

Gaussian window around each pixel 3. Compute corner response function R4. Threshold R5. Find local maxima of response function

(nonmaximum suppression)

Page 20: Feature extraction: Corners and blobslazebnik/spring09/lec07_corner_blob.pdf · • Many fewer features than image pixels • Locality • A feature occupies a relatively small area

Harris Detector: Steps

Page 21: Feature extraction: Corners and blobslazebnik/spring09/lec07_corner_blob.pdf · • Many fewer features than image pixels • Locality • A feature occupies a relatively small area

Harris Detector: StepsCompute corner response R

Page 22: Feature extraction: Corners and blobslazebnik/spring09/lec07_corner_blob.pdf · • Many fewer features than image pixels • Locality • A feature occupies a relatively small area

Harris Detector: StepsFind points with large corner response: R>threshold

Page 23: Feature extraction: Corners and blobslazebnik/spring09/lec07_corner_blob.pdf · • Many fewer features than image pixels • Locality • A feature occupies a relatively small area

Harris Detector: StepsTake only the points of local maxima of R

Page 24: Feature extraction: Corners and blobslazebnik/spring09/lec07_corner_blob.pdf · • Many fewer features than image pixels • Locality • A feature occupies a relatively small area

Harris Detector: Steps

Page 25: Feature extraction: Corners and blobslazebnik/spring09/lec07_corner_blob.pdf · • Many fewer features than image pixels • Locality • A feature occupies a relatively small area

Invariance• We want features to be detected despite

geometric or photometric changes in the image: if we have two transformed versions of the same image, features should be detected in corresponding locations

Page 26: Feature extraction: Corners and blobslazebnik/spring09/lec07_corner_blob.pdf · • Many fewer features than image pixels • Locality • A feature occupies a relatively small area

Models of Image Change

Geometric• Rotation

• Scale

• Affinevalid for: orthographic camera, locally planar object

Photometric• Affine intensity change (I → a I + b)

Page 27: Feature extraction: Corners and blobslazebnik/spring09/lec07_corner_blob.pdf · • Many fewer features than image pixels • Locality • A feature occupies a relatively small area

Harris Detector: Invariance PropertiesRotation

Ellipse rotates but its shape (i.e. eigenvalues) remains the same

Corner response R is invariant to image rotation

Page 28: Feature extraction: Corners and blobslazebnik/spring09/lec07_corner_blob.pdf · • Many fewer features than image pixels • Locality • A feature occupies a relatively small area

Harris Detector: Invariance PropertiesAffine intensity change

Only derivatives are used => invariance to intensity shift I → I + b

Intensity scale: I → a I

R

x (image coordinate)

threshold

R

x (image coordinate)

Partially invariant to affine intensity change

Page 29: Feature extraction: Corners and blobslazebnik/spring09/lec07_corner_blob.pdf · • Many fewer features than image pixels • Locality • A feature occupies a relatively small area

Harris Detector: Invariance Properties

Scaling

All points will be classified as edges

Corner

Not invariant to scaling

Page 30: Feature extraction: Corners and blobslazebnik/spring09/lec07_corner_blob.pdf · • Many fewer features than image pixels • Locality • A feature occupies a relatively small area

Scale-invariant feature detection• Goal: independently detect corresponding

regions in scaled versions of the same image• Need scale selection mechanism for finding

characteristic region size that is covariant with the image transformation

Page 31: Feature extraction: Corners and blobslazebnik/spring09/lec07_corner_blob.pdf · • Many fewer features than image pixels • Locality • A feature occupies a relatively small area

Scale-invariant features: Blobs

Page 32: Feature extraction: Corners and blobslazebnik/spring09/lec07_corner_blob.pdf · • Many fewer features than image pixels • Locality • A feature occupies a relatively small area

Recall: Edge detection

gdxdf ∗

f

gdxd

Source: S. Seitz

Edge

Derivativeof Gaussian

Edge = maximumof derivative

Page 33: Feature extraction: Corners and blobslazebnik/spring09/lec07_corner_blob.pdf · • Many fewer features than image pixels • Locality • A feature occupies a relatively small area

Edge detection, Take 2

gdxdf 2

2

f

gdxd

2

2

Edge

Second derivativeof Gaussian (Laplacian)

Edge = zero crossingof second derivative

Source: S. Seitz

Page 34: Feature extraction: Corners and blobslazebnik/spring09/lec07_corner_blob.pdf · • Many fewer features than image pixels • Locality • A feature occupies a relatively small area

From edges to blobs• Edge = ripple• Blob = superposition of two ripples

Spatial selection: the magnitude of the Laplacianresponse will achieve a maximum at the center ofthe blob, provided the scale of the Laplacian is“matched” to the scale of the blob

maximum

Page 35: Feature extraction: Corners and blobslazebnik/spring09/lec07_corner_blob.pdf · • Many fewer features than image pixels • Locality • A feature occupies a relatively small area

Scale selection• We want to find the characteristic scale of the

blob by convolving it with Laplacians at several scales and looking for the maximum response

• However, Laplacian response decays as scale increases:

Why does this happen?

increasing σoriginal signal(radius=8)

Page 36: Feature extraction: Corners and blobslazebnik/spring09/lec07_corner_blob.pdf · • Many fewer features than image pixels • Locality • A feature occupies a relatively small area

Scale normalization• The response of a derivative of Gaussian

filter to a perfect step edge decreases as σincreases

πσ 21

Page 37: Feature extraction: Corners and blobslazebnik/spring09/lec07_corner_blob.pdf · • Many fewer features than image pixels • Locality • A feature occupies a relatively small area

Scale normalization• The response of a derivative of Gaussian

filter to a perfect step edge decreases as σincreases

• To keep response the same (scale-invariant), must multiply Gaussian derivative by σ

• Laplacian is the second Gaussian derivative, so it must be multiplied by σ2

Page 38: Feature extraction: Corners and blobslazebnik/spring09/lec07_corner_blob.pdf · • Many fewer features than image pixels • Locality • A feature occupies a relatively small area

Effect of scale normalization

Scale-normalized Laplacian response

Unnormalized Laplacian responseOriginal signal

maximum

Page 39: Feature extraction: Corners and blobslazebnik/spring09/lec07_corner_blob.pdf · • Many fewer features than image pixels • Locality • A feature occupies a relatively small area

Blob detection in 2DLaplacian of Gaussian: Circularly symmetric

operator for blob detection in 2D

2

2

2

22

yg

xgg

∂∂

+∂∂

=∇

Page 40: Feature extraction: Corners and blobslazebnik/spring09/lec07_corner_blob.pdf · • Many fewer features than image pixels • Locality • A feature occupies a relatively small area

Blob detection in 2DLaplacian of Gaussian: Circularly symmetric

operator for blob detection in 2D

⎟⎟⎠

⎞⎜⎜⎝

⎛∂∂

+∂∂

=∇ 2

2

2

222

norm yg

xgg σScale-normalized:

Page 41: Feature extraction: Corners and blobslazebnik/spring09/lec07_corner_blob.pdf · • Many fewer features than image pixels • Locality • A feature occupies a relatively small area

Scale selection• At what scale does the Laplacian achieve a

maximum response for a binary circle of radius r?

r

image Laplacian

Page 42: Feature extraction: Corners and blobslazebnik/spring09/lec07_corner_blob.pdf · • Many fewer features than image pixels • Locality • A feature occupies a relatively small area

Scale selection• The 2D Laplacian is given by

• Therefore, for a binary circle of radius r, the Laplacian achieves a maximum at 2/r=σ

r

2/rimage

Lapl

acia

n re

spon

se

scale (σ)

222 2/)(222 )2( σσ yxeyx +−−+ (up to scale)

Page 43: Feature extraction: Corners and blobslazebnik/spring09/lec07_corner_blob.pdf · • Many fewer features than image pixels • Locality • A feature occupies a relatively small area

Characteristic scale• We define the characteristic scale as the

scale that produces peak of Laplacian response

characteristic scaleT. Lindeberg (1998). "Feature detection with automatic scale selection."International Journal of Computer Vision 30 (2): pp 77--116.

Page 44: Feature extraction: Corners and blobslazebnik/spring09/lec07_corner_blob.pdf · • Many fewer features than image pixels • Locality • A feature occupies a relatively small area

Scale-space blob detector1. Convolve image with scale-normalized

Laplacian at several scales2. Find maxima of squared Laplacian response

in scale-space

Page 45: Feature extraction: Corners and blobslazebnik/spring09/lec07_corner_blob.pdf · • Many fewer features than image pixels • Locality • A feature occupies a relatively small area

Scale-space blob detector: Example

Page 46: Feature extraction: Corners and blobslazebnik/spring09/lec07_corner_blob.pdf · • Many fewer features than image pixels • Locality • A feature occupies a relatively small area

Scale-space blob detector: Example

Page 47: Feature extraction: Corners and blobslazebnik/spring09/lec07_corner_blob.pdf · • Many fewer features than image pixels • Locality • A feature occupies a relatively small area

Scale-space blob detector: Example

Page 48: Feature extraction: Corners and blobslazebnik/spring09/lec07_corner_blob.pdf · • Many fewer features than image pixels • Locality • A feature occupies a relatively small area

Approximating the Laplacian with a difference of Gaussians:

( )2 ( , , ) ( , , )xx yyL G x y G x yσ σ σ= +

( , , ) ( , , )DoG G x y k G x yσ σ= −

(Laplacian)

(Difference of Gaussians)

Efficient implementation

Page 49: Feature extraction: Corners and blobslazebnik/spring09/lec07_corner_blob.pdf · • Many fewer features than image pixels • Locality • A feature occupies a relatively small area

Efficient implementation

David G. Lowe. "Distinctive image features from scale-invariant keypoints.” IJCV 60 (2), pp. 91-110, 2004.

Page 50: Feature extraction: Corners and blobslazebnik/spring09/lec07_corner_blob.pdf · • Many fewer features than image pixels • Locality • A feature occupies a relatively small area

From scale invariance to affine invariance

Page 51: Feature extraction: Corners and blobslazebnik/spring09/lec07_corner_blob.pdf · • Many fewer features than image pixels • Locality • A feature occupies a relatively small area

Affine adaptation

Recall: RRIIIIII

yxwMyyx

yxx

yx⎥⎦

⎤⎢⎣

⎡=

⎥⎥⎦

⎢⎢⎣

⎡= −∑

2

112

2

, 00

),(λ

λ

direction of the slowest change

direction of the fastest change

(λmax)-1/2

(λmin)-1/2

We can visualize M as an ellipse with axis lengths determined by the eigenvalues and orientation determined by R

const][ =⎥⎦

⎤⎢⎣

⎡vu

Mvu

Ellipse equation:

Page 52: Feature extraction: Corners and blobslazebnik/spring09/lec07_corner_blob.pdf · • Many fewer features than image pixels • Locality • A feature occupies a relatively small area

Affine adaptation example

Scale-invariant regions (blobs)

Page 53: Feature extraction: Corners and blobslazebnik/spring09/lec07_corner_blob.pdf · • Many fewer features than image pixels • Locality • A feature occupies a relatively small area

Affine adaptation example

Affine-adapted blobs

Page 54: Feature extraction: Corners and blobslazebnik/spring09/lec07_corner_blob.pdf · • Many fewer features than image pixels • Locality • A feature occupies a relatively small area

Affine normalization• The second moment ellipse can be viewed as

the “characteristic shape” of a region• We can normalize the region by transforming

the ellipse into a unit circle

Page 55: Feature extraction: Corners and blobslazebnik/spring09/lec07_corner_blob.pdf · • Many fewer features than image pixels • Locality • A feature occupies a relatively small area

Orientation ambiguity• There is no unique transformation from an

ellipse to a unit circle• We can rotate or flip a unit circle, and it still stays a unit circle

Page 56: Feature extraction: Corners and blobslazebnik/spring09/lec07_corner_blob.pdf · • Many fewer features than image pixels • Locality • A feature occupies a relatively small area

Orientation ambiguity• There is no unique transformation from an

ellipse to a unit circle• We can rotate or flip a unit circle, and it still stays a unit circle

• So, to assign a unique orientation to keypoints:• Create histogram of local gradient directions in the patch• Assign canonical orientation at peak of smoothed histogram

0 2 π

Page 57: Feature extraction: Corners and blobslazebnik/spring09/lec07_corner_blob.pdf · • Many fewer features than image pixels • Locality • A feature occupies a relatively small area

Affine adaptation• Problem: the second moment “window”

determined by weights w(x,y) must match the characteristic shape of the region

• Solution: iterative approach• Use a circular window to compute second moment matrix• Perform affine adaptation to find an ellipse-shaped window• Recompute second moment matrix using new window and

iterate

Page 58: Feature extraction: Corners and blobslazebnik/spring09/lec07_corner_blob.pdf · • Many fewer features than image pixels • Locality • A feature occupies a relatively small area

Iterative affine adaptation

K. Mikolajczyk and C. Schmid, Scale and Affine invariant interest point detectors, IJCV 60(1):63-86, 2004.

http://www.robots.ox.ac.uk/~vgg/research/affine/

Page 59: Feature extraction: Corners and blobslazebnik/spring09/lec07_corner_blob.pdf · • Many fewer features than image pixels • Locality • A feature occupies a relatively small area

Summary: Feature extraction

Extract affine regions Normalize regionsEliminate rotational

ambiguityCompute appearance

descriptors

SIFT (Lowe ’04)

Page 60: Feature extraction: Corners and blobslazebnik/spring09/lec07_corner_blob.pdf · • Many fewer features than image pixels • Locality • A feature occupies a relatively small area

Invariance vs. covarianceInvariance:

• features(transform(image)) = features(image)

Covariance:• features(transform(image)) = transform(features(image))

Covariant detection => invariant description

Page 61: Feature extraction: Corners and blobslazebnik/spring09/lec07_corner_blob.pdf · • Many fewer features than image pixels • Locality • A feature occupies a relatively small area

Next time: Fitting