-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathutils.py
75 lines (63 loc) · 2.13 KB
/
utils.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
import numpy as np
import matplotlib.pyplot as plt
import spectral
import time
import os
import sys
#Function found on stackoverflow
def printProgressBar (iteration, total, prefix = 'Progress: ', suffix = ' Complete', decimals = 1, length = 40, fill = '█'):
"""
Call in a loop to create terminal progress bar
@params:
iteration - Required : current iteration (Int)
total - Required : total iterations (Int)
prefix - Optional : prefix string (Str)
suffix - Optional : suffix string (Str)
decimals - Optional : positive number of decimals in percent complete (Int)
length - Optional : character length of bar (Int)
fill - Optional : bar fill character (Str)
"""
percent = ("{0:." + str(decimals) + "f}").format(100 * (iteration / float(total)))
filledLength = int(length * iteration // total)
bar = fill * filledLength + '-' * (length - filledLength)
print('\r%s |%s| %s%% %s' % (prefix, bar, percent, suffix), end = '\r')
sys.stdout.flush()
# Print New Line on Complete
if iteration == total:
print()
def print_shape(**kwargs):
"""
Print multiple shapes of np.ndarray
"""
for key, value in kwargs.items():
print ("%s: %s" %(key, value.shape))
def displayPrincipalComponents(X, cmap="gray"):
"""
Display principal components of the sensor data array
...
Parameters
----------
X : np.ndarray of dim MxNxP
Sensor data of MxN pixels and P bands
cmap : str, optional
Custom color map for matplotlib
"""
pc = spectral.principal_components(X_train)
plt.figure()
plt.imshow(pc.cov, cmap=cmap)
return pc
def displayImage(X, img_num=3, cmap="gray"):
"""
Display image from sensor data array
...
Parameters
----------
X : np.ndarray of dim MxNxP
Sensor data of MxN pixels and P bands
img_num : int, optional
Display band 'img_num'
cmap : str, optional
Custom color map for matplotlib
"""
plt.figure()
plt.imshow(X[:,:,img_num], cmap=cmap)