forked from jatinshah/ufldl_tutorial
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sample_images.py
77 lines (57 loc) · 2.44 KB
/
sample_images.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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
import random
import numpy as np
import scipy.io
# Returns 10000 image patches for training
# Each column contains grayscale value for the image
# Squash data to [0.1, 0.9]
def normalize_data(images):
# Subtract mean of each image from its individual values
mean = images.mean(axis=0)
images = images - mean
# Truncate to +/- 3 standard deviations and scale to -1 and +1
pstd = 3 * images.std()
images = np.maximum(np.minimum(images, pstd), -pstd) / pstd
# Rescale from [-1,+1] to [0.1,0.9]
images = (1 + images) * 0.4 + 0.1
return images
# Returns 10000 patches for training
# IMAGES is a 3D array containing 10 images
# For instance, IMAGES(:,:,6) is a 512x512 array containing the 6th image,
# (The contrast on these images look a bit off because they have
# been preprocessed using using "whitening." See the lecture notes for
# more details.) As a second example, IMAGES(21:30,21:30,1) is an image
# patch corresponding to the pixels in the block (21,21) to (30,30) of
# Image 1
def sample_images():
patch_size = 8
num_patches = 10000
num_images = 10
image_size = 512
image_data = scipy.io.loadmat('data/IMAGES.mat')['IMAGES']
# Initialize patches with zeros.
patches = np.zeros(shape=(patch_size * patch_size, num_patches))
for i in range(num_patches):
image_id = random.randint(0, num_images - 1)
image_x = random.randint(0, image_size - patch_size)
image_y = random.randint(0, image_size - patch_size)
img = image_data[:, :, image_id]
patch = img[image_x:image_x + patch_size, image_y:image_y + patch_size].reshape(patch_size * patch_size)
patches[:, i] = patch
return normalize_data(patches)
# sampleIMAGESRAW
# Returns 10000 "raw" unwhitened patches
def sample_images_raw():
image_data = scipy.io.loadmat('data/IMAGES_RAW.mat')['IMAGESr']
patch_size = 12
num_patches = 10000
num_images = image_data.shape[2]
image_size = image_data.shape[0]
patches = np.zeros(shape=(patch_size * patch_size, num_patches))
for i in range(num_patches):
image_id = random.randint(0, num_images - 1)
image_x = random.randint(0, image_size - patch_size)
image_y = random.randint(0, image_size - patch_size)
img = image_data[:, :, image_id]
patch = img[image_x:image_x + patch_size, image_y:image_y + patch_size].reshape(patch_size * patch_size)
patches[:, i] = patch
return patches