Equations Flashcards

1
Q

Linear Normalisation

A

I_n = (I - Min) [(Max_new - Min_new) / (max-min)] + min_new

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

Threshold

A

Threshold = region_mean - offset

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

Within (intra) class variance

A

Weight of background = (number of pixels below threshold) / total number of pixels
Mean_background = (number of pixels x intensity levels) / number of background pixels
variance_background = [(pixel intensity-mean)^2 x number of pixels with intensity] +… / number of background pixels

Repeat for foreground

Intra (within) class variance = (background weight)(background variance) + (foreground weight)(foreground variance)

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

Roberts edge detector

A

sqrt[(A-D)^2 +(B-C)^2]

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

Prewitt edge detector

A

sqrt[(G+H+I)-(A+B+C)]^2+[(C+F+I)-(A+D+G)]^2]

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

Sobel edge detector

A

2 3x3 masks 1,2,1, 0,0,0, -1,-2,-1 and 1,0,-1, 2,0,-2, 1,0,-1
sqrt{[(A+2 * B+C)-(G+2 * H+I)]^2 +[(A+2 * D+G)-(C+2 * F+I)]^2}

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

FREI & CHEN EDGE DETECTOR

A

2 3x3 masks -1,-root2,-1, 0,0,0, 1, root2, 1 and -1,0,1, -root2,0,root2, -1,0,1

sqrt[(f1)^2+(f2)^2]

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

SNR

A

(variance_signal)/(variance_noise}

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

PSNR

A

Peak signal to noise ratio
10log10(MAX_I^2)/(MSE)

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

Euler number

A

Blobs - holes

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

4-adjacency

A

1
2. 0
3

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

8-adjacency

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

Runcode

A

(Row#_A, Col_start_A, Col_end_A : Row#_B, Col_start_B, Col_end_B :….)

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

Approx perimeter

A

N_e + sqrt(2) * N_o

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

White top hat

A

A - (A0K)

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

NOT

A

opposites

17
Q

AND

A

if numbers are different, 0
If numbers are both 1, 1

18
Q

AND

A

If numbers are both 1, 1
Otherwise, 0

18
Q

OR

A

If both numbers are 0, 0
otherwise, 1

19
Q

XOR

A

different, 1

20
Q

closing

A

dilation then erosion

21
Q

opening

A

erosion then dilation

22
Q

Maximum suppression of canny

A

if pixel on either side is greater than examined pixel, it goes to 0