-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbtc.py
40 lines (34 loc) · 969 Bytes
/
btc.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# Block Truncation Coding
import numpy as np
import matplotlib.pyplot as plt
# Function to find BTC of an image
def btc(image):
(row, col) = image.shape
# Find mean and variance (sigma)
mean = image.mean()
sigma = np.sqrt(image.var())
# Change values which are greater than mean to 1
# Change values which are less than mean to 0
image[image > mean] = 1
image[image != 1] = 0
# Find the numer of ones in the new image
q = image.sum()
# Find the number of elements
m = row * col
# Find a and b
a = np.round(mean - sigma * np.sqrt(q / (m - q)))
b = np.round(mean + sigma * np.sqrt((m - q) / q))
# Change all ones to b and all zeros to a
image[image == 1] = b
image[image == 0] = a
return image
image = np.array([
[65, 75, 80, 70],
[75, 75, 82, 68],
[84, 72, 62, 65],
[66, 68, 72, 80]
])
print('Input: ')
print(image)
print('Output: ')
print(btc(image))