Feature Detection Flashcards

You may prefer our related Brainscape-certified flashcards:
1
Q

Edge Tracking

A

Edge Strength: magnitude of intensity gradient
Edge orientation: direction of intensity gradient
edge location: zero crossings of Laplace operator

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Canny Edge Operator

A

problem: seperate edge from noise
assumptions: 1. edge gradient stronger than noise gradient
2. edge direction varies slowly
3. edge strength varies slowly
thresholds: 1. t1 voxel is edge
t2 voxel is edge if neighbor is edge
+ detects parts of edges
- sensitive to noise

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Hough Transform

A

idea. find instances of specific edge model viat voting scheme
hough space represents all parameter combinations
+ robust against occlusion, signal drops, noise

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

structure tensor

A

summarizes the predominant directions of the gradient neighborhood

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Harris Corner Detector

A

value depends on average intensity variations in arbitrary directions
high value = point of interest
+ detects corners and edges
- computational expensive

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

SUSAN corner detector

A

intensity of poi differs from intensities in neighborhood
intensity difference is higher than threshold
poi is maximum of difference
+ detects corners and single points
+ faster computation
- sensitive to noise

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Blob detection

A

Blob: circular structures in image
use: laplacian of gaussian, difference of gaussions, determinant of hessian

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Feature detection SIFT

A

generates and uses features to detect and identify objects in image

  1. key point generation
  2. key point reduction
  3. feature computation
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Feature detection MSER

A

seperation of image into local homogeneous regions with maximum contrast
intensity based feature detection

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Segmentation

A

part image to connected regions which can be classified

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Segmentation - Thresholding

A

image voxels into labeled voxels and background voxels based on intensity thresholds

  • interactive thresholding
  • automatic thresholding
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Segmentation - Otsu

A

find optimal threshold

- characteristics of foreground and background are nearly equal

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Segmentation - homogeneity based

A

seperate image into smallest number of segments that all fulfills homogeneity criterion

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

Region Growing

A

start with seed point in object region
homogeneity criterion determines inclusion of adjacent voxels
neighborhood definition: bigger (robust against noise), smaller (robust against leaking into other regions)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

Region Merging

A
  • each voxel is own region

- if two adjacent voxel fulfill homogeneity criterion, merge to one region

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

relational structures

A

information between semantically important image parts (inside, neighboors)

17
Q

Region Splitting and Merging

A
  • start: image is one region
  • split until homogeneity criterion is met
  • Splitting result in RAG
  • merging is speed up
18
Q

Watershed Transform (WST)

A
  • treat as image as landscape
  • local minimum is sink
  • fill sinks with water, when water meets include watershed
19
Q

Live Wire

A

find minimum cost path between user-defined markers and create contour as series of path segments

20
Q

Morphological Operations

A
  • study of shape

- enhancements of object structure (skeletonization, thinning, thickening)

21
Q

Opening and Closing

A
  • opening: erosion followed by delation (remove small isolated regions)
  • closing: dilation followed by erosion (close holes)
  • remove leakage / close gaps
22
Q

Skeletonization

A
  • skelaton: minimal structure discribing topology of object
  • analysis of branching objects / tree structures
  • erosing from vessel surface
  • hierachry position of brances (lowest levels can be irrelevant)
23
Q

Measurement of object extend

A
  • identify of size of object
  • use axis-oriented bounding box
  • maybe need to rotate first