75
Morphological and Statistical Techniques for the Analysis of 3D Images Enric Meinhardt-Llopis 3–3–2011

Morphological and Statistical Techniques for the Analysis ...dev.ipol.im/~coco/website/docs/2011_tesi_slides.pdf · Data structures for images There are many data structures for storing

  • Upload
    others

  • View
    1

  • Download
    0

Embed Size (px)

Citation preview

Page 1: Morphological and Statistical Techniques for the Analysis ...dev.ipol.im/~coco/website/docs/2011_tesi_slides.pdf · Data structures for images There are many data structures for storing

Morphological and Statistical Techniquesfor the Analysis of 3D Images

Enric Meinhardt-Llopis

3–3–2011

Page 2: Morphological and Statistical Techniques for the Analysis ...dev.ipol.im/~coco/website/docs/2011_tesi_slides.pdf · Data structures for images There are many data structures for storing

Outline

Motivation: 2D/3D differences

The 3D tree of shapes

Applications of the tree of shapes

Finsler-Cheeger Sets and Affine Invariants

Conclusion

2 / 57

Page 3: Morphological and Statistical Techniques for the Analysis ...dev.ipol.im/~coco/website/docs/2011_tesi_slides.pdf · Data structures for images There are many data structures for storing

Outline

Motivation: 2D/3D differences

The 3D tree of shapes

Applications of the tree of shapes

Finsler-Cheeger Sets and Affine Invariants

Conclusion

3 / 57

Page 4: Morphological and Statistical Techniques for the Analysis ...dev.ipol.im/~coco/website/docs/2011_tesi_slides.pdf · Data structures for images There are many data structures for storing

Motivation: differences between 2D and 3D

A large part of this thesis is the extension of the tree of shapes to3D images, and its applications.

Differences 2D/3D: semantics, visualization, topology, statistics, noise

photo (x, y) tomography (x, y, z) video (x, y, t)

X-ray (x, y) RGB histogram (r, g, b) scale-space (x, y, s)

4 / 57

Page 5: Morphological and Statistical Techniques for the Analysis ...dev.ipol.im/~coco/website/docs/2011_tesi_slides.pdf · Data structures for images There are many data structures for storing

Different visualization of 2D and 3D images

The first difference is the need for visualization.

2D, trivial: simply look at them (array of pixels)

3D, tricky: slices, projections,isosurfaces, volume rendering

5 / 57

Page 6: Morphological and Statistical Techniques for the Analysis ...dev.ipol.im/~coco/website/docs/2011_tesi_slides.pdf · Data structures for images There are many data structures for storing

Topological differences between 2D and 3D

The second difference is topological behaviour.

2D: cavities and handles are the same thing

3D: cavities and handles are different things

Due to this fact, for example, the number of cavities can becomputed locally in 2D but not in 3D.

6 / 57

Page 7: Morphological and Statistical Techniques for the Analysis ...dev.ipol.im/~coco/website/docs/2011_tesi_slides.pdf · Data structures for images There are many data structures for storing

Statistical differences between 2D and 3DCritical levels for bound percolation:

2D grid: 0.5 3D grid: 0.2488

This affects, for example, the behaviour of level sets of white noise(at the mean value):

in 2D: many connected components in 3D: a single connected component

7 / 57

Page 8: Morphological and Statistical Techniques for the Analysis ...dev.ipol.im/~coco/website/docs/2011_tesi_slides.pdf · Data structures for images There are many data structures for storing

Different kinds of noise between 2D and 3D images

2D: noise from cameras is independent from pixel to pixel

3D: noise from CT has anisotropic artifacts

Slice of a tomography

8 / 57

Page 9: Morphological and Statistical Techniques for the Analysis ...dev.ipol.im/~coco/website/docs/2011_tesi_slides.pdf · Data structures for images There are many data structures for storing

Outline

Motivation: 2D/3D differences

The 3D tree of shapes

Applications of the tree of shapes

Finsler-Cheeger Sets and Affine Invariants

Conclusion

9 / 57

Page 10: Morphological and Statistical Techniques for the Analysis ...dev.ipol.im/~coco/website/docs/2011_tesi_slides.pdf · Data structures for images There are many data structures for storing

Data structures for images

There are many data structures for storing digital images:

Array of pixel values

Coefficients on a linear basis (e.g., Fourier representation)

Tree-like data structures: Quadtrees/octtrees [Samet’79, Meagher’82]

Region merging trees [Koepfler et al. ’94, Salembier et al. ’00]

Tree of (upper or lower) level sets [Cox et al. ’03, Carr et al. ’03]

Tree of shapes [Monasse et al. ’02]

Each representation favors some operations.

10 / 57

Page 11: Morphological and Statistical Techniques for the Analysis ...dev.ipol.im/~coco/website/docs/2011_tesi_slides.pdf · Data structures for images There are many data structures for storing

Mathematical definition of the tree of shapes

Intuition: Shapes = connected components of level surfaces= external boundaries of saturations

Notation:

Image f : Ω → R

[f ≥ λ] := x ∈ Ω : f (x) ≥ λ

cc(A, x) := connected component of A containing x

Sat(A, p∞) := Ω \ cc(Ω \ A, p∞)

A Sat(A)Trees of level sets:

ULT (f ) := cc([f (x) ≥ λ], x) : x ∈ Ω, λ ∈ R

LLT (f ) := cc([f (x) < λ], x) : x ∈ Ω, λ ∈ R

Tree of shapes:

T OS(f ) := Sat(r), r ∈ ULT (f ) ∪ LLT (f )

11 / 57

Page 12: Morphological and Statistical Techniques for the Analysis ...dev.ipol.im/~coco/website/docs/2011_tesi_slides.pdf · Data structures for images There are many data structures for storing

Tree of shapes as fusion of upper and lower trees

image LLT ULT

12 / 57

Page 13: Morphological and Statistical Techniques for the Analysis ...dev.ipol.im/~coco/website/docs/2011_tesi_slides.pdf · Data structures for images There are many data structures for storing

Tree of shapes as fusion of upper and lower trees

break branches glue branches T OS

29

58

87

116

145

174

203

232

inf0

232

203

174

145

116

87

58

29

29

58

29

58

87

116

145

174

203

232

inf0

232

203

174

145

116

87

58

29

29

58

232

203

174

145

116

87

58

58

29

0

29

13 / 57

Page 14: Morphological and Statistical Techniques for the Analysis ...dev.ipol.im/~coco/website/docs/2011_tesi_slides.pdf · Data structures for images There are many data structures for storing

Implementation

Discretization of the image domain, two choices:

semi-continuous interpolation graph-based

Algorithms:

Building the upper tree: pixel merging

Joining both trees: branch gluing

Where to glue: find the smallest “outer adjacent” region

14 / 57

Page 15: Morphological and Statistical Techniques for the Analysis ...dev.ipol.im/~coco/website/docs/2011_tesi_slides.pdf · Data structures for images There are many data structures for storing

Outline

Motivation: 2D/3D differences

The 3D tree of shapes

Applications of the tree of shapes

Finsler-Cheeger Sets and Affine Invariants

Conclusion

15 / 57

Page 16: Morphological and Statistical Techniques for the Analysis ...dev.ipol.im/~coco/website/docs/2011_tesi_slides.pdf · Data structures for images There are many data structures for storing

Applications of the 3D tree of shapes

Morphological operations (tree pruning)

Image visualization (tree navigation)

RGB histogram analysis

Video analysis

3D edge detection

16 / 57

Page 17: Morphological and Statistical Techniques for the Analysis ...dev.ipol.im/~coco/website/docs/2011_tesi_slides.pdf · Data structures for images There are many data structures for storing

Morphological filteringGrain filtering: removal of small leafs

original image opening closing grain filter

original image t=2 t=10 t=100018351 shapes 11173 (61%) 4924 (27%) 715 (4%)

17 / 57

Page 18: Morphological and Statistical Techniques for the Analysis ...dev.ipol.im/~coco/website/docs/2011_tesi_slides.pdf · Data structures for images There are many data structures for storing

Morphological filtering

Grain filtering: removal of small leafs

original image t=2 t=100 t=10000295937 shapes 141005 (47%) 2414 (0.8%) 124 (0.04%)

Observation: it does not seem to affect the texture.

18 / 57

Page 19: Morphological and Statistical Techniques for the Analysis ...dev.ipol.im/~coco/website/docs/2011_tesi_slides.pdf · Data structures for images There are many data structures for storing

Morphological filtering

Adaptive quantization: removal of nodes inside long branches

original grain filter quantization both

19 / 57

Page 20: Morphological and Statistical Techniques for the Analysis ...dev.ipol.im/~coco/website/docs/2011_tesi_slides.pdf · Data structures for images There are many data structures for storing

Image visualization

Navigating the tree (with keyboard or mouse):

½ » ·

20 / 57

Page 21: Morphological and Statistical Techniques for the Analysis ...dev.ipol.im/~coco/website/docs/2011_tesi_slides.pdf · Data structures for images There are many data structures for storing

RGB histogram analysisgray image its 1D histogram

0

500

1000

1500

2000

2500

3000

3500

4000

4500

5000

0 50 100 150 200 250

color image visualizations of its 3D histogram

0

200

400

600

800

1000

1200

0 50 100 150 200

21 / 57

Page 22: Morphological and Statistical Techniques for the Analysis ...dev.ipol.im/~coco/website/docs/2011_tesi_slides.pdf · Data structures for images There are many data structures for storing

RGB histogram analysis

22 / 57

Page 23: Morphological and Statistical Techniques for the Analysis ...dev.ipol.im/~coco/website/docs/2011_tesi_slides.pdf · Data structures for images There are many data structures for storing

RGB histogram analysis

23 / 57

Page 24: Morphological and Statistical Techniques for the Analysis ...dev.ipol.im/~coco/website/docs/2011_tesi_slides.pdf · Data structures for images There are many data structures for storing

Video analysis

1. Build the structure

Input: video & optical flow

Pre-processing: graph of optical flow connectivity

Structure: level sets of video data on the graph

2. Work with it:

Grain filtering: remove spots, small objects

Select a region: tracking

Automatic segmentation from scribbles

Monocular depth estimation

24 / 57

Page 25: Morphological and Statistical Techniques for the Analysis ...dev.ipol.im/~coco/website/docs/2011_tesi_slides.pdf · Data structures for images There are many data structures for storing

Video processing using the tree of shapesGrain filtering and branch simplification turn the video into a small set of “tubes”

input video simplified tree of shapes2s ≈ 6.7 · 106 voxels 617 shapes

25 / 57

Page 26: Morphological and Statistical Techniques for the Analysis ...dev.ipol.im/~coco/website/docs/2011_tesi_slides.pdf · Data structures for images There are many data structures for storing

Tracking using the tree of shapesTracking means querying the structure:

one shape of a video sequence

26 / 57

Page 27: Morphological and Statistical Techniques for the Analysis ...dev.ipol.im/~coco/website/docs/2011_tesi_slides.pdf · Data structures for images There are many data structures for storing

Monocular depth estimation

The discontinuities of the flow along occlusions are a monoculardepth cue.

inputsegmented flow& occlusions

output

⇒ ⇒

27 / 57

Page 28: Morphological and Statistical Techniques for the Analysis ...dev.ipol.im/~coco/website/docs/2011_tesi_slides.pdf · Data structures for images There are many data structures for storing

Monocular depth estimation

(monocular depth estimation video)

28 / 57

Page 29: Morphological and Statistical Techniques for the Analysis ...dev.ipol.im/~coco/website/docs/2011_tesi_slides.pdf · Data structures for images There are many data structures for storing

Monocular depth estimation

1/14

29 / 57

Page 30: Morphological and Statistical Techniques for the Analysis ...dev.ipol.im/~coco/website/docs/2011_tesi_slides.pdf · Data structures for images There are many data structures for storing

Monocular depth estimation

2/14

29 / 57

Page 31: Morphological and Statistical Techniques for the Analysis ...dev.ipol.im/~coco/website/docs/2011_tesi_slides.pdf · Data structures for images There are many data structures for storing

Monocular depth estimation

3/14

29 / 57

Page 32: Morphological and Statistical Techniques for the Analysis ...dev.ipol.im/~coco/website/docs/2011_tesi_slides.pdf · Data structures for images There are many data structures for storing

Monocular depth estimation

4/14

29 / 57

Page 33: Morphological and Statistical Techniques for the Analysis ...dev.ipol.im/~coco/website/docs/2011_tesi_slides.pdf · Data structures for images There are many data structures for storing

Monocular depth estimation

5/14

29 / 57

Page 34: Morphological and Statistical Techniques for the Analysis ...dev.ipol.im/~coco/website/docs/2011_tesi_slides.pdf · Data structures for images There are many data structures for storing

Monocular depth estimation

6/14

29 / 57

Page 35: Morphological and Statistical Techniques for the Analysis ...dev.ipol.im/~coco/website/docs/2011_tesi_slides.pdf · Data structures for images There are many data structures for storing

Monocular depth estimation

7/14

29 / 57

Page 36: Morphological and Statistical Techniques for the Analysis ...dev.ipol.im/~coco/website/docs/2011_tesi_slides.pdf · Data structures for images There are many data structures for storing

Monocular depth estimation

8/14

29 / 57

Page 37: Morphological and Statistical Techniques for the Analysis ...dev.ipol.im/~coco/website/docs/2011_tesi_slides.pdf · Data structures for images There are many data structures for storing

Monocular depth estimation

9/14

29 / 57

Page 38: Morphological and Statistical Techniques for the Analysis ...dev.ipol.im/~coco/website/docs/2011_tesi_slides.pdf · Data structures for images There are many data structures for storing

Monocular depth estimation

10/14

29 / 57

Page 39: Morphological and Statistical Techniques for the Analysis ...dev.ipol.im/~coco/website/docs/2011_tesi_slides.pdf · Data structures for images There are many data structures for storing

Monocular depth estimation

11/14

29 / 57

Page 40: Morphological and Statistical Techniques for the Analysis ...dev.ipol.im/~coco/website/docs/2011_tesi_slides.pdf · Data structures for images There are many data structures for storing

Monocular depth estimation

12/14

29 / 57

Page 41: Morphological and Statistical Techniques for the Analysis ...dev.ipol.im/~coco/website/docs/2011_tesi_slides.pdf · Data structures for images There are many data structures for storing

Monocular depth estimation

13/14

29 / 57

Page 42: Morphological and Statistical Techniques for the Analysis ...dev.ipol.im/~coco/website/docs/2011_tesi_slides.pdf · Data structures for images There are many data structures for storing

Monocular depth estimation

14/14

29 / 57

Page 43: Morphological and Statistical Techniques for the Analysis ...dev.ipol.im/~coco/website/docs/2011_tesi_slides.pdf · Data structures for images There are many data structures for storing

3D Edge detection

Extend to 3D images the 2D detector based on Helmholtzprinciple. [Desolneux et al. ’01]

In 2D: select connected pieces of level curves which arewell-contrasted

In 3D: select connected pieces of level surfaces which arewell-contrasted

X No priors

X No parameters

× Connected subsets of a given surface can be very complicated!

30 / 57

Page 44: Morphological and Statistical Techniques for the Analysis ...dev.ipol.im/~coco/website/docs/2011_tesi_slides.pdf · Data structures for images There are many data structures for storing

Mumford-Shah segmentation on surfaces

Solution: restrict the selection to the Mumford-Shah hierarchy ofthe “contrast” on each level surface.

contrast on best subset best subsetlevel surface among all on MS hierarchy

31 / 57

Page 45: Morphological and Statistical Techniques for the Analysis ...dev.ipol.im/~coco/website/docs/2011_tesi_slides.pdf · Data structures for images There are many data structures for storing

3D edge detection by Helmholtz principleAlgorithm:

* For each level surface S of the image:* Build a Mumford-Shah hierarchy of the contrast on S* For each patch P in the hierarchy

* if P is well-contrasted, select P

input image selected patches(slice)

32 / 57

Page 46: Morphological and Statistical Techniques for the Analysis ...dev.ipol.im/~coco/website/docs/2011_tesi_slides.pdf · Data structures for images There are many data structures for storing

Hypothesis of the proposed edge detector

The desired boundaries are formed by large pieces of level surfaceof the original image.

Observation: this hypothesis is more sound for 3D medical imagesthan for 2D photographs.

33 / 57

Page 47: Morphological and Statistical Techniques for the Analysis ...dev.ipol.im/~coco/website/docs/2011_tesi_slides.pdf · Data structures for images There are many data structures for storing

Experimental results of edge detection

Synthetic best case:

input output Canny(3 patches)

34 / 57

Page 48: Morphological and Statistical Techniques for the Analysis ...dev.ipol.im/~coco/website/docs/2011_tesi_slides.pdf · Data structures for images There are many data structures for storing

Experimental results of edge detection

Real CTA image:

input output Canny(11 patches)

35 / 57

Page 49: Morphological and Statistical Techniques for the Analysis ...dev.ipol.im/~coco/website/docs/2011_tesi_slides.pdf · Data structures for images There are many data structures for storing

Experimental results of edge detection

Real MRI image:

input output isosurface(17 patches)

36 / 57

Page 50: Morphological and Statistical Techniques for the Analysis ...dev.ipol.im/~coco/website/docs/2011_tesi_slides.pdf · Data structures for images There are many data structures for storing

Pre and post-processing of the edge detectorThe performance of the method can be improved in several waysPre-processing:

Grain filter (reduces the number of small shapes)

Median filtering (reduces the complexity of noisy shapes)

Quantization (reduces the number of nested shapes)

Canny instead of gradient norm (improves localization)

Post-processing:

Exclusion principle (allow only one output patch per voxel)

Surface joining (join overlapping patches into one)

37 / 57

Page 51: Morphological and Statistical Techniques for the Analysis ...dev.ipol.im/~coco/website/docs/2011_tesi_slides.pdf · Data structures for images There are many data structures for storing

Surface joining (or 3D edge linking)

Some functionals for edge linking data S with model Γ:

Osher-Zhao: E0(Γ) =∫

Γ dS “reverse Osher-Zhao”: E1(Γ) =

S|dΓ|

Adjustment of distance functions: E2(Γ) =∫

R3 |dS − |dΓ||

Combinations of the above (E0 + E1, etc.)

38 / 57

Page 52: Morphological and Statistical Techniques for the Analysis ...dev.ipol.im/~coco/website/docs/2011_tesi_slides.pdf · Data structures for images There are many data structures for storing

Surface joining (Osher-Zhao)

input patches joined surface

39 / 57

Page 53: Morphological and Statistical Techniques for the Analysis ...dev.ipol.im/~coco/website/docs/2011_tesi_slides.pdf · Data structures for images There are many data structures for storing

Surface joining (Osher-Zhao)

input patches joined surface

40 / 57

Page 54: Morphological and Statistical Techniques for the Analysis ...dev.ipol.im/~coco/website/docs/2011_tesi_slides.pdf · Data structures for images There are many data structures for storing

Trivial global minima

Problem: all the functionals above have trivial global minima

Solution: adding an “inflating force” to the functional mayimprove the situation.

E (Γ) = Ei (Γ)− λ · volume(Γ)

41 / 57

Page 55: Morphological and Statistical Techniques for the Analysis ...dev.ipol.im/~coco/website/docs/2011_tesi_slides.pdf · Data structures for images There are many data structures for storing

A happy connection

Edge linking with an inflating force can be formulated in terms ofanisotropic Cheeger sets.

Let us forget about edge linking, and focus on Finsler-Cheeger sets.

42 / 57

Page 56: Morphological and Statistical Techniques for the Analysis ...dev.ipol.im/~coco/website/docs/2011_tesi_slides.pdf · Data structures for images There are many data structures for storing

Outline

Motivation: 2D/3D differences

The 3D tree of shapes

Applications of the tree of shapes

Finsler-Cheeger Sets and Affine Invariants

Conclusion

43 / 57

Page 57: Morphological and Statistical Techniques for the Analysis ...dev.ipol.im/~coco/website/docs/2011_tesi_slides.pdf · Data structures for images There are many data structures for storing

Finsler metrics in image processingFinsler (or Riemannian) metrics are widely used in imageprocessing, and elsewhere.

geodesic active contours, anisotropic diffusion...

44 / 57

Page 58: Morphological and Statistical Techniques for the Analysis ...dev.ipol.im/~coco/website/docs/2011_tesi_slides.pdf · Data structures for images There are many data structures for storing

Euclidean Cheeger sets

Cheeger constant of Ω: CΩ := minA⊆Ω

|∂A|

|A| Cheeger set of Ω: set A where the minimum is attained

Equivalent definition: minimizer of |∂A| − CΩ|A|

Images from http://www.ceremade.dauphine.fr/˜peyre/cheeger/

let us move to Finsler spaces

45 / 57

Page 59: Morphological and Statistical Techniques for the Analysis ...dev.ipol.im/~coco/website/docs/2011_tesi_slides.pdf · Data structures for images There are many data structures for storing

Finsler-Cheeger sets

Let us weigh perimeters by ϕ and volumes by h.

Cheeger constant of Ω: CΩ := minA⊆Ω

|∂A|ϕ|A|h

Cheeger set of Ω: set A where the minimum is attained

Equivalent definition: minimizer of |∂A|ϕ − CΩ|A|h

46 / 57

Page 60: Morphological and Statistical Techniques for the Analysis ...dev.ipol.im/~coco/website/docs/2011_tesi_slides.pdf · Data structures for images There are many data structures for storing

Finsler-Cheeger sets

Let us weigh perimeters by ϕ and volumes by h.

Cheeger constant of Ω: CΩ := minA⊆Ω

|∂A|ϕ|A|h

Cheeger set of Ω: set A where the minimum is attained

Equivalent definition: minimizer of |∂A|ϕ − CΩ|A|h

How to compute these objects?

46 / 57

Page 61: Morphological and Statistical Techniques for the Analysis ...dev.ipol.im/~coco/website/docs/2011_tesi_slides.pdf · Data structures for images There are many data structures for storing

Cheeger sets and total variation

Euclidean case:

Variational problem:

Eλ(u) :=

Ω|Du|+

λ

2

Ω(u − 1)2 +

∂Ω|u|

Cheeger sets arise as level sets of the solution: [u ≥ |u|∞]

Finslerian case:

Variational problem:

Eϕ,h,λ(u) :=

Ω|Du|ϕ +

λ

2

Ω(u − 1)2h +

∂Ωϕ(x , νΩ)|u|

ϕ-Cheeger sets arise as level sets of the solution: [u ≥ |u|∞]

47 / 57

Page 62: Morphological and Statistical Techniques for the Analysis ...dev.ipol.im/~coco/website/docs/2011_tesi_slides.pdf · Data structures for images There are many data structures for storing

Numerical solution of the variational problem

Euclidean case: Chambolle algorithm

pt+1 =pn + τ∇div(pn)

1 + τ |∇div(pn)|

Finsler case: Chambolle algorithm with suitable weights

pt+1 =pn + τAx · ∇

(

h−1div(Ax · p

n))

1 + τ |Ax · ∇ (h−1div(Ax · pn))|

Once these iterations converge, the Cheeger set is found amongthe level sets of the resulting image div(p).

48 / 57

Page 63: Morphological and Statistical Techniques for the Analysis ...dev.ipol.im/~coco/website/docs/2011_tesi_slides.pdf · Data structures for images There are many data structures for storing

Numerical computation of the Cheeger set

We recover our old friend, the tree of shapes.

The Cheeger ratio is defined for every shape

Find a minimum of the Cheeger ratio defined on the tree ofshapes (which is a topological space)

0

0.05

0.1

0.15

0.2

0.7 0.75 0.8 0.85 0.9 0.95 1

F(t)

t

Cheeger ratio F(t)

Euclidean Cheeger set of a cube

49 / 57

Page 64: Morphological and Statistical Techniques for the Analysis ...dev.ipol.im/~coco/website/docs/2011_tesi_slides.pdf · Data structures for images There are many data structures for storing

Computation of Finsler-Cheeger ratio

0

1

2

3

4

5

0 0.2 0.4 0.6 0.8 1

F(t)

t

approximated F(t)analytic F(t)

Finsler-Cheeger ratio numeric/analytic

50 / 57

Page 65: Morphological and Statistical Techniques for the Analysis ...dev.ipol.im/~coco/website/docs/2011_tesi_slides.pdf · Data structures for images There are many data structures for storing

Applications of Finsler-Cheeger sets

By fine-tuning the Finsler metric, we can make the Cheeger sets tohave any shape that we want.

(For example, by letting the metric vanish on a given curve)

51 / 57

Page 66: Morphological and Statistical Techniques for the Analysis ...dev.ipol.im/~coco/website/docs/2011_tesi_slides.pdf · Data structures for images There are many data structures for storing

Application to edge linkingThe ϕ-Cheeger is a global optimum of Osher-Zhao with an inflating force

“Distance Cheegers”: ϕ = distance to data

S slices of dS dS -Cheeger

52 / 57

Page 67: Morphological and Statistical Techniques for the Analysis ...dev.ipol.im/~coco/website/docs/2011_tesi_slides.pdf · Data structures for images There are many data structures for storing

Application to edge linking

dS -Cheeger set of the whole image domain

53 / 57

Page 68: Morphological and Statistical Techniques for the Analysis ...dev.ipol.im/~coco/website/docs/2011_tesi_slides.pdf · Data structures for images There are many data structures for storing

Application to active contoursThe ϕ-Cheeger is a global optimum of active contours with inflating force

“Gradient Cheegers”: ϕ = 1|∇I |

slices of I slices of 1|∇I |

1|∇I | -Cheeger set

54 / 57

Page 69: Morphological and Statistical Techniques for the Analysis ...dev.ipol.im/~coco/website/docs/2011_tesi_slides.pdf · Data structures for images There are many data structures for storing

Application to active contoursThe ϕ-Cheeger is a global optimum of active contours with inflating force

1|∇u| -Cheeger set of the

1|∇u| -Cheeger set of the

whole image domain image domain minus somemanually selected voxels

55 / 57

Page 70: Morphological and Statistical Techniques for the Analysis ...dev.ipol.im/~coco/website/docs/2011_tesi_slides.pdf · Data structures for images There are many data structures for storing

Finsler-Cheeger sets and MSERThere is a connection between 1

|∇u|-Cheegers and MSER.

MSER [Matas et al. ’04] are defined as minimizers of

F (λ) :=|[u < λ+ δ]| − |[u < λ− δ]|

|[u < λ]|

By co-area formula,

F (λ) = 2δ

∫u=λ′

1|∇u|

dHN−1

|[u < λ]|

Which is almost exactly the 1|∇u|

-Cheeger ratio!

MSER can be regarded as a crude approximation to (local) 1|∇u|

-Cheegers

56 / 57

Page 71: Morphological and Statistical Techniques for the Analysis ...dev.ipol.im/~coco/website/docs/2011_tesi_slides.pdf · Data structures for images There are many data structures for storing

Application to logo detection

Match MSER and other features between a logo database and avideo frame.

57 / 57

Page 72: Morphological and Statistical Techniques for the Analysis ...dev.ipol.im/~coco/website/docs/2011_tesi_slides.pdf · Data structures for images There are many data structures for storing

Outline

Motivation: 2D/3D differences

The 3D tree of shapes

Applications of the tree of shapes

Finsler-Cheeger Sets and Affine Invariants

Conclusion

58 / 57

Page 73: Morphological and Statistical Techniques for the Analysis ...dev.ipol.im/~coco/website/docs/2011_tesi_slides.pdf · Data structures for images There are many data structures for storing

Contributions of this thesis

Algorithm for 3D tree of shapes

Basic applications (grain filters, visualization, RGBhistograms, video analysis)

3D edge detection (exclusion principle, MS hierarchies,consistent Marching Cubes)

Numerical computation of Finsler-Cheeger sets

Application of Finsler-Cheeger sets to edge linking

MSER are local Finsler-Cheeger sets

Page 74: Morphological and Statistical Techniques for the Analysis ...dev.ipol.im/~coco/website/docs/2011_tesi_slides.pdf · Data structures for images There are many data structures for storing

Future work

User interface for tree of shapes navigation and editing

Joining the trees of level sets defined on a graph

Quantitative comparison of edge detectors

Quantitative comparison of surface joiners

Development of object detection based on the new affineinvariants

Faster schemes for Finsler-Cheeger sets

Page 75: Morphological and Statistical Techniques for the Analysis ...dev.ipol.im/~coco/website/docs/2011_tesi_slides.pdf · Data structures for images There are many data structures for storing

Publications

Published:

Constructing the Tree of Shapes of an Image by Fusion of the Trees of Connected Components of

Upper and Lower Level Sets

V. Caselles, E. Meinhardt and P. MonassePositivity, Vol. 12, Num. 1, pp. 55–73, 2008

Edge Detection by Selection of Pieces of Level Lines

E. MeinhardtInternational Conference on Image Processing 2008

3D Edge Detection By Selection of Level Surface Patches

E. Meinhardt, E. Zacur, A.F. Frangi and V. CasellesJournal of Mathematical Imaging and Vision,Vol. 32, Num. 1, pp. 1–16, 2009

Anisotropic Cheeger Sets and Applications

V. Caselles, G. Facciolo and E. MeinhardtSIAM Journal on Imaging Sciences,Vol. 2, Num. 4, pp. 1211–1254, 2009

A Robust Pipeline for Logo Detection

E. Meinhardt, C. Constantinopoulos, V. CasellesInternational Conference on Multimedia and Expo 2011

Under review:

Relative Depth Estimation from Monocular Video

E. Meinhardt, V .CasellesSubmitted to International Conference on Image Processing 2011

On Affine Invariant Descriptors Related to SIFT

R. Sadek, C. Constantinopoulos, E. Meinhardt, C. Ballester, V. CasellesSubmitted to SIAM Journal on Imaging Sciences on 2010