-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathtest.py
68 lines (61 loc) · 2.42 KB
/
test.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
import torch
import matplotlib.pyplot as plt
import matplotlib.cm as CM
from tqdm import tqdm
from csrnet import CSRNet
from my_dataset import CrowdDataset
def cal_mae(img_root,gt_dmap_root,model_param_path):
'''
Calculate the MAE of the test data.
img_root: the root of test image data.
gt_dmap_root: the root of test ground truth density-map data.
model_param_path: the path of specific mcnn parameters.
'''
device=torch.device("cuda")
model=CSRNet()
model.load_state_dict(torch.load(model_param_path))
model.to(device)
dataset=CrowdDataset(img_root,gt_dmap_root,8)
dataloader=torch.utils.data.DataLoader(dataset,batch_size=1,shuffle=False)
model.eval()
mae=0
with torch.no_grad():
for i,(img,gt_dmap) in enumerate(tqdm(dataloader)):
img=img.to(device)
gt_dmap=gt_dmap.to(device)
# forward propagation
et_dmap=model(img)
mae+=abs(et_dmap.data.sum()-gt_dmap.data.sum()).item()
del img,gt_dmap,et_dmap
print("model_param_path:"+model_param_path+" mae:"+str(mae/len(dataloader)))
def estimate_density_map(img_root,gt_dmap_root,model_param_path,index):
'''
Show one estimated density-map.
img_root: the root of test image data.
gt_dmap_root: the root of test ground truth density-map data.
model_param_path: the path of specific mcnn parameters.
index: the order of the test image in test dataset.
'''
device=torch.device("cuda")
model=CSRNet().to(device)
model.load_state_dict(torch.load(model_param_path))
dataset=CrowdDataset(img_root,gt_dmap_root,8)
dataloader=torch.utils.data.DataLoader(dataset,batch_size=1,shuffle=False)
model.eval()
for i,(img,gt_dmap) in enumerate(dataloader):
if i==index:
img=img.to(device)
gt_dmap=gt_dmap.to(device)
# forward propagation
et_dmap=model(img).detach()
et_dmap=et_dmap.squeeze(0).squeeze(0).cpu().numpy()
print(et_dmap.shape)
plt.imshow(et_dmap,cmap=CM.jet)
break
if __name__=="__main__":
torch.backends.cudnn.enabled=False
img_root='./data/Shanghai_part_A/test_data/images'
gt_dmap_root='./data/Shanghai_part_A/test_data/ground_truth'
model_param_path='./checkpoints/epoch_124.pth'
cal_mae(img_root,gt_dmap_root,model_param_path)
# estimate_density_map(img_root,gt_dmap_root,model_param_path,3)