Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Latest commit

 

History

History
History
86 lines (74 loc) · 2.45 KB

File metadata and controls

86 lines (74 loc) · 2.45 KB
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
78
79
80
81
82
83
84
85
86
#Import packages
import numpy as np
import torch
import cv2
import matplotlib.pyplot as plt
from matplotlib import cm as CM
from scipy.ndimage.filters import gaussian_filter
#Useful functions
def save_checkpoint(state, filename='../checkpoint.pth.tar'):
torch.save(state, filename)
def zeropad(img, h, w, target=False):
if not target:
color = [0, 0, 0]
padded = cv2.copyMakeBorder(img, 0, h, 0, w, cv2.BORDER_CONSTANT, value=color)
else:
padded = cv2.copyMakeBorder(img, 0, h, 0, w, cv2.BORDER_CONSTANT, value=0)
return padded
def vis_input(im, target=None, pred0=None, pred1=None, pred2=None):
if im.size(0) == 4:
depth = im[3, :, :].cpu().numpy()
im = im[:3, :, :]
plt.subplot(1,1,1).imshow(depth, cmap=CM.jet)
plt.title('depth')
plt.show()
elif (pred1 is None) or (pred2 is None):
i = 2
elif pred2 is not None:
i = 3
else:
i = 1
if im.size(0) == 3:
im = im.permute(1, 2, 0).cpu()
im = cv2.normalize(np.float32(im), None, alpha=0, beta=255, norm_type=cv2.NORM_MINMAX, dtype=cv2.CV_32F)
im = im.astype(np.uint8)
else:
if im.size(0) == 1:
im = im.squeeze(0)
im = im.cpu().numpy()
plt.subplot(2,i,1).imshow(im)
target = target.cpu().numpy()
target = target.squeeze(0) if target.shape[0]==1 else target
plt.subplot(2,i,2).imshow(target, cmap=CM.jet)
count = target.sum()
plt.title('GT: ' + str(count.item()))
if pred0 is not None:
pred0 = pred0.cpu().numpy()
plt.subplot(2,i,4).imshow(pred0, cmap=CM.jet)
count = pred0.sum()
plt.title('Pred: ' + str(count.item()))
if pred1 is not None:
pred1 = pred1.cpu().numpy()
plt.subplot(2,i,5).imshow(pred1, cmap=CM.jet)
count = pred1.sum()
plt.title('Pred: ' + str(count.item()))
if pred2 is not None:
pred2 = pred2.cpu().numpy()
plt.subplot(2,i,6).imshow(pred2, cmap=CM.jet)
count = pred2.sum()
plt.title('Pred: ' + str(count.item()))
plt.show()
class AverageMeter(object):
"""Computes and stores the average and current value"""
def __init__(self):
self.reset()
def reset(self):
self.val = 0
self.avg = 0
self.sum = 0
self.count = 0
def update(self, val, n=1):
self.val = val
self.sum += val * n
self.count += n
self.avg = self.sum / self.count
Morty Proxy This is a proxified and sanitized view of the page, visit original site.