prof. feng liuweb.cecs.pdx.edu/~fliu/courses/cs510/lectures/lecture9.pdf · 4/28/2020  · with...

55
Prof. Feng Liu Spring 2020 http://www.cs.pdx.edu/~fliu/courses/cs510/ 04/28/2020

Upload: others

Post on 16-Aug-2020

3 views

Category:

Documents


0 download

TRANSCRIPT

Page 1: Prof. Feng Liuweb.cecs.pdx.edu/~fliu/courses/cs510/lectures/Lecture9.pdf · 4/28/2020  · With slides by C. Dyer, Y. Chuang, R. Szeliski, S. Seitz, M. Brown and V. Hlavac ... Student

Prof. Feng Liu

Spring 2020

http://www.cs.pdx.edu/~fliu/courses/cs510/

04/28/2020

Page 2: Prof. Feng Liuweb.cecs.pdx.edu/~fliu/courses/cs510/lectures/Lecture9.pdf · 4/28/2020  · With slides by C. Dyer, Y. Chuang, R. Szeliski, S. Seitz, M. Brown and V. Hlavac ... Student

Last Time

Panorama

◼ Feature detection

2

Page 3: Prof. Feng Liuweb.cecs.pdx.edu/~fliu/courses/cs510/lectures/Lecture9.pdf · 4/28/2020  · With slides by C. Dyer, Y. Chuang, R. Szeliski, S. Seitz, M. Brown and V. Hlavac ... Student

Today

Panorama

◼ Feature matching

◼ Homography estimation

3

With slides by C. Dyer, Y. Chuang, R. Szeliski, S. Seitz, M. Brown and V. Hlavac

Page 4: Prof. Feng Liuweb.cecs.pdx.edu/~fliu/courses/cs510/lectures/Lecture9.pdf · 4/28/2020  · With slides by C. Dyer, Y. Chuang, R. Szeliski, S. Seitz, M. Brown and V. Hlavac ... Student

Stitching Recipe

Align pairs of images

◼ Feature Detection

◼ Feature Matching

◼ Homography Estimation

Align all to a common frame

Adjust (Global) & Blend

4

Page 5: Prof. Feng Liuweb.cecs.pdx.edu/~fliu/courses/cs510/lectures/Lecture9.pdf · 4/28/2020  · With slides by C. Dyer, Y. Chuang, R. Szeliski, S. Seitz, M. Brown and V. Hlavac ... Student

5

Invariant Local Features

Goal: Detect the same interest points

regardless of image changes due to

translation, rotation, scale, viewpoint

Page 6: Prof. Feng Liuweb.cecs.pdx.edu/~fliu/courses/cs510/lectures/Lecture9.pdf · 4/28/2020  · With slides by C. Dyer, Y. Chuang, R. Szeliski, S. Seitz, M. Brown and V. Hlavac ... Student

After detecting points (and patches) in each image,

Next question: How to match them?

?

Point descriptor should be:

1. Invariant

2. Distinctive

Feature Point Descriptors

All the following slides are used from Prof. C. Dyer’s relevant course, except those with explicit acknowledgement.

Page 7: Prof. Feng Liuweb.cecs.pdx.edu/~fliu/courses/cs510/lectures/Lecture9.pdf · 4/28/2020  · With slides by C. Dyer, Y. Chuang, R. Szeliski, S. Seitz, M. Brown and V. Hlavac ... Student

1. Detection: Identify the

interest points

2. Description: Extract feature

vector for each interest point

3. Matching: Determine

correspondence between

descriptors in two views

],,[ )1()1(

11 dxx =x

],,[ )2()2(

12 dxx =x

Local Features: Description

Page 8: Prof. Feng Liuweb.cecs.pdx.edu/~fliu/courses/cs510/lectures/Lecture9.pdf · 4/28/2020  · With slides by C. Dyer, Y. Chuang, R. Szeliski, S. Seitz, M. Brown and V. Hlavac ... Student

Geometric Transformations

e.g. scale, translation, rotation

Page 9: Prof. Feng Liuweb.cecs.pdx.edu/~fliu/courses/cs510/lectures/Lecture9.pdf · 4/28/2020  · With slides by C. Dyer, Y. Chuang, R. Szeliski, S. Seitz, M. Brown and V. Hlavac ... Student

Photometric Transformations

Figure from T. Tuytelaars ECCV 2006 tutorial

Page 10: Prof. Feng Liuweb.cecs.pdx.edu/~fliu/courses/cs510/lectures/Lecture9.pdf · 4/28/2020  · With slides by C. Dyer, Y. Chuang, R. Szeliski, S. Seitz, M. Brown and V. Hlavac ... Student

Raw Patches as Local Descriptors

The simplest way to describe the neighborhood around an interest point is to write down the list of intensities to form a feature vector

But this is very sensitive to even small shifts or rotations

Page 11: Prof. Feng Liuweb.cecs.pdx.edu/~fliu/courses/cs510/lectures/Lecture9.pdf · 4/28/2020  · With slides by C. Dyer, Y. Chuang, R. Szeliski, S. Seitz, M. Brown and V. Hlavac ... Student

▪ Find local orientation

Dominant direction of gradient:

▪ Compute description relative to this orientation

1 K.Mikolajczyk, C.Schmid. “Indexing Based on Scale Invariant Interest Points”. ICCV 20012 D.Lowe. “Distinctive Image Features from Scale-Invariant Keypoints”. Accepted to IJCV 2004

Making Descriptors Invariant to Rotation

Page 12: Prof. Feng Liuweb.cecs.pdx.edu/~fliu/courses/cs510/lectures/Lecture9.pdf · 4/28/2020  · With slides by C. Dyer, Y. Chuang, R. Szeliski, S. Seitz, M. Brown and V. Hlavac ... Student

For 2D function f(x,y), the partial derivative is:

For discrete data, we can approximate using finite differences:

To implement above as convolution, what would be the

associated filter?

),(),(lim

),(

0

yxfyxf

x

yxf −+=

1

),(),1(),( yxfyxf

x

yxf −+

Source: K. Grauman

Derivatives with convolution

Page 13: Prof. Feng Liuweb.cecs.pdx.edu/~fliu/courses/cs510/lectures/Lecture9.pdf · 4/28/2020  · With slides by C. Dyer, Y. Chuang, R. Szeliski, S. Seitz, M. Brown and V. Hlavac ... Student

Which shows changes with respect to x?

-1

1

1

-1or-1 1

x

yxf

),(

y

yxf

),(

Source: S. Lazebnik

Partial derivatives of an image

Page 14: Prof. Feng Liuweb.cecs.pdx.edu/~fliu/courses/cs510/lectures/Lecture9.pdf · 4/28/2020  · With slides by C. Dyer, Y. Chuang, R. Szeliski, S. Seitz, M. Brown and V. Hlavac ... Student

Finite difference filters

Other approximations of derivative filters exist:

Source: K. Grauman

Page 15: Prof. Feng Liuweb.cecs.pdx.edu/~fliu/courses/cs510/lectures/Lecture9.pdf · 4/28/2020  · With slides by C. Dyer, Y. Chuang, R. Szeliski, S. Seitz, M. Brown and V. Hlavac ... Student

The gradient points in the direction of most rapid increase in intensity

Image gradient

The gradient of an image:

The gradient direction is given by

Source: Steve Seitz

The edge strength is given by the gradient magnitude

• How does this direction relate to the direction of the edge?

Page 16: Prof. Feng Liuweb.cecs.pdx.edu/~fliu/courses/cs510/lectures/Lecture9.pdf · 4/28/2020  · With slides by C. Dyer, Y. Chuang, R. Szeliski, S. Seitz, M. Brown and V. Hlavac ... Student

Compute histogram of local gradient directions computed at selected scale in neighborhood of a feature point relative to dominant local orientation

Compute gradients within sub-patches, and compute histogram of orientations using discrete “bins”

Descriptor is rotation and scale invariant, and also has some illumination invariance (why?)

0 2

SIFT Descriptor: Select Major Orientation

Page 17: Prof. Feng Liuweb.cecs.pdx.edu/~fliu/courses/cs510/lectures/Lecture9.pdf · 4/28/2020  · With slides by C. Dyer, Y. Chuang, R. Szeliski, S. Seitz, M. Brown and V. Hlavac ... Student

Compute gradient orientation histograms on 4 x 4

neighborhoods over 16 x 16 array of locations in scale

space around each keypoint position, relative to the

keypoint orientation using thresholded image gradients

from Gaussian pyramid level at keypoint’s scale

Quantize orientations to 8 values

4 x 4 array of histograms

SIFT feature vector of length 4 x 4 x 8 = 128 values for

each keypoint

Normalize the descriptor to make it invariant to intensity

change

D.Lowe. “Distinctive Image Features from Scale-Invariant Keypoints,” IJCV 2004

SIFT Descriptor

Page 18: Prof. Feng Liuweb.cecs.pdx.edu/~fliu/courses/cs510/lectures/Lecture9.pdf · 4/28/2020  · With slides by C. Dyer, Y. Chuang, R. Szeliski, S. Seitz, M. Brown and V. Hlavac ... Student

D.Lowe. “Distinctive Image Features from Scale-Invariant Keypoints,” IJCV 2004

SIFT Descriptor

16

16

Page 19: Prof. Feng Liuweb.cecs.pdx.edu/~fliu/courses/cs510/lectures/Lecture9.pdf · 4/28/2020  · With slides by C. Dyer, Y. Chuang, R. Szeliski, S. Seitz, M. Brown and V. Hlavac ... Student

Stable (repeatable) feature points can

currently be detected that are invariant to

◼ Rotation, scale, and affine transformations, but

not to more general perspective and projective

transformations

Feature point descriptors can be computed,

but

◼ are noisy due to use of differential operators

◼ are not invariant to projective transformations

Feature Detection and Description Summary

Page 20: Prof. Feng Liuweb.cecs.pdx.edu/~fliu/courses/cs510/lectures/Lecture9.pdf · 4/28/2020  · With slides by C. Dyer, Y. Chuang, R. Szeliski, S. Seitz, M. Brown and V. Hlavac ... Student

Feature Matching

Page 21: Prof. Feng Liuweb.cecs.pdx.edu/~fliu/courses/cs510/lectures/Lecture9.pdf · 4/28/2020  · With slides by C. Dyer, Y. Chuang, R. Szeliski, S. Seitz, M. Brown and V. Hlavac ... Student

Wide-Baseline Feature Matching

Standard approach for pair-wise matching:

◼ For each feature point in image A

◼ Find the feature point with the closest descriptor in

image B

From Schaffalitzky and Zisserman ’02

Page 22: Prof. Feng Liuweb.cecs.pdx.edu/~fliu/courses/cs510/lectures/Lecture9.pdf · 4/28/2020  · With slides by C. Dyer, Y. Chuang, R. Szeliski, S. Seitz, M. Brown and V. Hlavac ... Student

Wide-Baseline Feature Matching

Compare the distance, d1, to the closest

feature, to the distance, d2, to the second

closest feature

Accept if d1/d2 < 0.6

◼ If the ratio of distances is less than a threshold,

keep the feature

Why the ratio test?

◼ Eliminates hard-to-match repeated features

◼ Distances in SIFT descriptor space seem to be

non-uniform

Page 23: Prof. Feng Liuweb.cecs.pdx.edu/~fliu/courses/cs510/lectures/Lecture9.pdf · 4/28/2020  · With slides by C. Dyer, Y. Chuang, R. Szeliski, S. Seitz, M. Brown and V. Hlavac ... Student

Feature Matching

Exhaustive search

◼ for each feature in one image, look at all the other

features in the other image(s)

Hashing

◼ compute a short descriptor from each feature

vector, or hash longer descriptors (randomly)

Nearest neighbor techniques

◼ k-trees and their variants

Page 24: Prof. Feng Liuweb.cecs.pdx.edu/~fliu/courses/cs510/lectures/Lecture9.pdf · 4/28/2020  · With slides by C. Dyer, Y. Chuang, R. Szeliski, S. Seitz, M. Brown and V. Hlavac ... Student

Wide-Baseline Feature Matching

Because of the high dimensionality of

features, approximate nearest neighbors are

necessary for efficient performance

See ANN package, Mount and Arya

http://www.cs.umd.edu/~mount/ANN/

Page 25: Prof. Feng Liuweb.cecs.pdx.edu/~fliu/courses/cs510/lectures/Lecture9.pdf · 4/28/2020  · With slides by C. Dyer, Y. Chuang, R. Szeliski, S. Seitz, M. Brown and V. Hlavac ... Student

Stitching Recipe

Align pairs of images

◼ Feature Detection

◼ Feature Matching

◼ Homography Estimation

Align all to a common frame

Adjust (Global) & Blend

25

Page 26: Prof. Feng Liuweb.cecs.pdx.edu/~fliu/courses/cs510/lectures/Lecture9.pdf · 4/28/2020  · With slides by C. Dyer, Y. Chuang, R. Szeliski, S. Seitz, M. Brown and V. Hlavac ... Student

What can be globally aligned?

In image stitching, we seek for a model to

globally warp one image into another. Are any

two images of the same scene can be aligned

this way?

◼ Images captured with the same center of

projection

◼ A planar scene or far-away scene

Credit: Y.Y. Chuang

Page 27: Prof. Feng Liuweb.cecs.pdx.edu/~fliu/courses/cs510/lectures/Lecture9.pdf · 4/28/2020  · With slides by C. Dyer, Y. Chuang, R. Szeliski, S. Seitz, M. Brown and V. Hlavac ... Student

A pencil of rays contains all views

realcamera

syntheticcamera

Can generate any synthetic camera viewas long as it has the same center of projection!

Credit: Y.Y. Chuang

Page 28: Prof. Feng Liuweb.cecs.pdx.edu/~fliu/courses/cs510/lectures/Lecture9.pdf · 4/28/2020  · With slides by C. Dyer, Y. Chuang, R. Szeliski, S. Seitz, M. Brown and V. Hlavac ... Student

Mosaic as an image reprojection

mosaic projection plane

The images are reprojected onto a common plane

The mosaic is formed on this plane

Mosaic is a synthetic wide-angle camera

Credit: Y.Y. Chuang

Page 29: Prof. Feng Liuweb.cecs.pdx.edu/~fliu/courses/cs510/lectures/Lecture9.pdf · 4/28/2020  · With slides by C. Dyer, Y. Chuang, R. Szeliski, S. Seitz, M. Brown and V. Hlavac ... Student

Changing camera center

Does it still work?PP1

PP2

Credit: Y.Y. Chuang

Page 30: Prof. Feng Liuweb.cecs.pdx.edu/~fliu/courses/cs510/lectures/Lecture9.pdf · 4/28/2020  · With slides by C. Dyer, Y. Chuang, R. Szeliski, S. Seitz, M. Brown and V. Hlavac ... Student

Planar scene (or a faraway one)

PP3 is a projection plane of both centers of projection, so we

are OK!

This is how big aerial photographs are made

PP1

PP3

PP2

Credit: Y.Y. Chuang

Page 31: Prof. Feng Liuweb.cecs.pdx.edu/~fliu/courses/cs510/lectures/Lecture9.pdf · 4/28/2020  · With slides by C. Dyer, Y. Chuang, R. Szeliski, S. Seitz, M. Brown and V. Hlavac ... Student

Motion models

Parametric models as the assumptions on the

relation between two images.

Credit: Y.Y. Chuang

Page 32: Prof. Feng Liuweb.cecs.pdx.edu/~fliu/courses/cs510/lectures/Lecture9.pdf · 4/28/2020  · With slides by C. Dyer, Y. Chuang, R. Szeliski, S. Seitz, M. Brown and V. Hlavac ... Student

2D Motion models

Credit: Y.Y. Chuang

Page 33: Prof. Feng Liuweb.cecs.pdx.edu/~fliu/courses/cs510/lectures/Lecture9.pdf · 4/28/2020  · With slides by C. Dyer, Y. Chuang, R. Szeliski, S. Seitz, M. Brown and V. Hlavac ... Student

Motion models

Translation

2 unknowns

Affine

6 unknowns

Perspective

8 unknowns

3D rotation

3 unknowns

Credit: Y.Y. Chuang

Page 34: Prof. Feng Liuweb.cecs.pdx.edu/~fliu/courses/cs510/lectures/Lecture9.pdf · 4/28/2020  · With slides by C. Dyer, Y. Chuang, R. Szeliski, S. Seitz, M. Brown and V. Hlavac ... Student

Determine pairwise alignment?

Feature-based methods: only use feature

points to estimate parameters

We will study the “Recognising panorama”

paper published in ICCV 2003

Run SIFT (or other feature algorithms) for

each image, find feature matches.

Credit: Y.Y. Chuang

Page 35: Prof. Feng Liuweb.cecs.pdx.edu/~fliu/courses/cs510/lectures/Lecture9.pdf · 4/28/2020  · With slides by C. Dyer, Y. Chuang, R. Szeliski, S. Seitz, M. Brown and V. Hlavac ... Student

Determine pairwise alignment

p’=Mp, where M is a transformation matrix, p

and p’ are feature matches

It is possible to use more complicated models

such as affine or perspective

For example, assume M is a 2x2 matrix

Find M with the least square error

( )=

−n

i

pMp1

2'

=

y

x

mm

mm

y

x

2221

1211

'

'

Credit: Y.Y. Chuang

Page 36: Prof. Feng Liuweb.cecs.pdx.edu/~fliu/courses/cs510/lectures/Lecture9.pdf · 4/28/2020  · With slides by C. Dyer, Y. Chuang, R. Szeliski, S. Seitz, M. Brown and V. Hlavac ... Student

Determine pairwise alignment

=

y

x

mm

mm

y

x

2221

1211

'

'

'

1221211

'

1121111

ymymx

xmymx

=+

=+

=

'

'

'

2

'

1

'

1

22

21

12

11

22

11

11

00

00

00

00

00

n

n

nn

nn

y

x

x

y

x

m

m

m

m

yx

yx

yx

yx

yx

Over-determined systemCredit: Y.Y. Chuang

Page 37: Prof. Feng Liuweb.cecs.pdx.edu/~fliu/courses/cs510/lectures/Lecture9.pdf · 4/28/2020  · With slides by C. Dyer, Y. Chuang, R. Szeliski, S. Seitz, M. Brown and V. Hlavac ... Student

Normal equation

Given an over-determined system

bAx =

bAAxATT =

the normal equation is that which minimizes the

sum of the square differences between left and

right sides

Why?

Credit: Y.Y. Chuang

Page 38: Prof. Feng Liuweb.cecs.pdx.edu/~fliu/courses/cs510/lectures/Lecture9.pdf · 4/28/2020  · With slides by C. Dyer, Y. Chuang, R. Szeliski, S. Seitz, M. Brown and V. Hlavac ... Student

Normal equation

( )

( ) ( )

( )( )( )

( )( )

( ) ( ) bbxbAxbAAxAx

bbbAxAxbAxAx

bAxbAx

bAxbAx

bAxbAx

bAx

TTTTTTT

TTTTTT

TTT

+−−=

+−−=

−−=

−−=

−−=

−=

TT

T

E2

bAAxAx

TT 22 −=

E

Credit: Y.Y. Chuang

Page 39: Prof. Feng Liuweb.cecs.pdx.edu/~fliu/courses/cs510/lectures/Lecture9.pdf · 4/28/2020  · With slides by C. Dyer, Y. Chuang, R. Szeliski, S. Seitz, M. Brown and V. Hlavac ... Student

Determine pairwise alignment

p’=Mp, where M is a transformation matrix, p and p’ are feature matches

For translation model, it is easier.

What if the match is false? Avoid impact of outliers.

( ) ( ) =

−++−+=n

i

iiii yymxxmE1

2'

2

2'

1

1

0m

E

=

Credit: Y.Y. Chuang

Page 40: Prof. Feng Liuweb.cecs.pdx.edu/~fliu/courses/cs510/lectures/Lecture9.pdf · 4/28/2020  · With slides by C. Dyer, Y. Chuang, R. Szeliski, S. Seitz, M. Brown and V. Hlavac ... Student

RANSAC [Fischler and Bolles 81]

RANSAC = Random Sample Consensus

An algorithm for robust fitting of models in the

presence of many data outliers

◼ Compare to robust statistics

Given N data points xi, assume that majority of

them are generated from a model with

parameters , try to recover .

M. A. Fischler and R. C. Bolles. "Random Sample Consensus: A Paradigm for Model Fitting with Applications to Image Analysis and Automated Cartography". Comm. of the ACM 24 (6): 381–395

Credit: Y.Y. Chuang

Page 41: Prof. Feng Liuweb.cecs.pdx.edu/~fliu/courses/cs510/lectures/Lecture9.pdf · 4/28/2020  · With slides by C. Dyer, Y. Chuang, R. Szeliski, S. Seitz, M. Brown and V. Hlavac ... Student

RANSAC algorithm

Run k times:

(1) draw n samples randomly

(2) fit parameters with these n samples

(3) for each of other N-n points, calculate

its distance to the fitted model, count the

number of inlier points, c

Output with the largest c

How many times?How big?

Smaller is better

How to define?

Depends on the problem.

Credit: Y.Y. Chuang

Page 42: Prof. Feng Liuweb.cecs.pdx.edu/~fliu/courses/cs510/lectures/Lecture9.pdf · 4/28/2020  · With slides by C. Dyer, Y. Chuang, R. Szeliski, S. Seitz, M. Brown and V. Hlavac ... Student

How to determine k

p: probability of real inliers

P: probability of success after k trials

knpP )1(1 −−=n samples are all inliers

a failure

failure after k trials

)1log(

)1log(np

Pk

−=

n p k

3 0.5 35

6 0.6 97

6 0.5 293for P=0.99

Credit: Y.Y. Chuang

Page 43: Prof. Feng Liuweb.cecs.pdx.edu/~fliu/courses/cs510/lectures/Lecture9.pdf · 4/28/2020  · With slides by C. Dyer, Y. Chuang, R. Szeliski, S. Seitz, M. Brown and V. Hlavac ... Student

Example: line fitting

Credit: Y.Y. Chuang

Page 44: Prof. Feng Liuweb.cecs.pdx.edu/~fliu/courses/cs510/lectures/Lecture9.pdf · 4/28/2020  · With slides by C. Dyer, Y. Chuang, R. Szeliski, S. Seitz, M. Brown and V. Hlavac ... Student

Example: line fitting

n=2

Credit: Y.Y. Chuang

Page 45: Prof. Feng Liuweb.cecs.pdx.edu/~fliu/courses/cs510/lectures/Lecture9.pdf · 4/28/2020  · With slides by C. Dyer, Y. Chuang, R. Szeliski, S. Seitz, M. Brown and V. Hlavac ... Student

Model fitting

Credit: Y.Y. Chuang

Page 46: Prof. Feng Liuweb.cecs.pdx.edu/~fliu/courses/cs510/lectures/Lecture9.pdf · 4/28/2020  · With slides by C. Dyer, Y. Chuang, R. Szeliski, S. Seitz, M. Brown and V. Hlavac ... Student

Measure distances

Credit: Y.Y. Chuang

Page 47: Prof. Feng Liuweb.cecs.pdx.edu/~fliu/courses/cs510/lectures/Lecture9.pdf · 4/28/2020  · With slides by C. Dyer, Y. Chuang, R. Szeliski, S. Seitz, M. Brown and V. Hlavac ... Student

Count inliers

c=3

Credit: Y.Y. Chuang

Page 48: Prof. Feng Liuweb.cecs.pdx.edu/~fliu/courses/cs510/lectures/Lecture9.pdf · 4/28/2020  · With slides by C. Dyer, Y. Chuang, R. Szeliski, S. Seitz, M. Brown and V. Hlavac ... Student

Another trial

c=3

Credit: Y.Y. Chuang

Page 49: Prof. Feng Liuweb.cecs.pdx.edu/~fliu/courses/cs510/lectures/Lecture9.pdf · 4/28/2020  · With slides by C. Dyer, Y. Chuang, R. Szeliski, S. Seitz, M. Brown and V. Hlavac ... Student

The best model

c=15

Credit: Y.Y. Chuang

Page 50: Prof. Feng Liuweb.cecs.pdx.edu/~fliu/courses/cs510/lectures/Lecture9.pdf · 4/28/2020  · With slides by C. Dyer, Y. Chuang, R. Szeliski, S. Seitz, M. Brown and V. Hlavac ... Student

RANSAC for Homography

Credit: Y.Y. Chuang

Page 51: Prof. Feng Liuweb.cecs.pdx.edu/~fliu/courses/cs510/lectures/Lecture9.pdf · 4/28/2020  · With slides by C. Dyer, Y. Chuang, R. Szeliski, S. Seitz, M. Brown and V. Hlavac ... Student

RANSAC for Homography

Credit: Y.Y. Chuang

Page 52: Prof. Feng Liuweb.cecs.pdx.edu/~fliu/courses/cs510/lectures/Lecture9.pdf · 4/28/2020  · With slides by C. Dyer, Y. Chuang, R. Szeliski, S. Seitz, M. Brown and V. Hlavac ... Student

RANSAC for Homography

Credit: Y.Y. Chuang

Page 53: Prof. Feng Liuweb.cecs.pdx.edu/~fliu/courses/cs510/lectures/Lecture9.pdf · 4/28/2020  · With slides by C. Dyer, Y. Chuang, R. Szeliski, S. Seitz, M. Brown and V. Hlavac ... Student

Student paper presentation

53

Color Conceptualization

X. Hou and L. Zhang

ACM Multimedia 2007

Presenter: Crocker, Orion

Page 54: Prof. Feng Liuweb.cecs.pdx.edu/~fliu/courses/cs510/lectures/Lecture9.pdf · 4/28/2020  · With slides by C. Dyer, Y. Chuang, R. Szeliski, S. Seitz, M. Brown and V. Hlavac ... Student

Student paper presentation

54

Colorization Using Optimization

A. Levin, D. Lischinski, Y. Weiss.

ACM SIGGRAPH 2004

Presenter: Dimaggio, Antonio

Page 55: Prof. Feng Liuweb.cecs.pdx.edu/~fliu/courses/cs510/lectures/Lecture9.pdf · 4/28/2020  · With slides by C. Dyer, Y. Chuang, R. Szeliski, S. Seitz, M. Brown and V. Hlavac ... Student

Next Time

Panorama◼ Blending

◼ Multi-perspective panoramas

Student paper presentations◼ 04/30: Everett, Riley

Photographic tone reproduction for digital images.

E. Reinhard, M. Stark, P. Shirley, and J. Ferwerda, SIGGRAPH 2012

◼ 04/30: Fan, Yubin Burst photography for high dynamic range and low-light imaging on mobile cameras. Samuel W.

Hasinoff, Dillon Sharlet, Ryan Geiss, Andrew Adams, Jonathan T. Barron, Florian Kainz, Jiawen Chen,

and Marc Levoy. SIGGRAPH Asia 2016

◼ 05/05: Gatehouse, Christopher Deep High Dynamic Range Imaging of Dynamic Scenes. N. K. Kalantari and R. Ramamoorthi,

SIGGRAPH 2017

◼ 05/05: Ghildyal, Abhijay Night Sight: Seeing in the Dark on Pixel Phones

◼ https://ai.googleblog.com/2018/11/night-sight-seeing-in-dark-on-pixel.html

https://www.blog.google/products/pixel/see-light-night-sight/

55