-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathlog_visualize.py
139 lines (101 loc) · 3.72 KB
/
log_visualize.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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
from __future__ import print_function
from __future__ import division
import torch.nn as nn
import torch.nn.parallel
import torch.nn.functional as F
import torch.backends.cudnn as cudnn
import torch.distributed as dist
import torch.optim as optim
import torch.multiprocessing as mp
import torch.utils.data
import torch.utils.data.distributed
from torch.autograd import Variable
from torch.utils.data import Dataset, DataLoader
import torchvision
import torchvision.transforms as transforms
import torchvision.datasets as datasets
import torchvision.models as models
#import torchvision.utils as utils
#from model import BPnP
#import kornia
import argparse
import os
import random
import shutil
import time
import warnings
import sys
import matplotlib.pyplot as plt
import copy
import numpy as np
import cv2
class LogLoss(nn.Module):
def __init__(self, use_gpu = True):
super(LogLoss, self).__init__()
self.log_block = LogEachBlock()
def __call__(self, input_A, input_B):
log_A = self.log_block(input_A)
log_B = self.log_block(input_B)
return log_A, log_B
class LogBlock(nn.Module):
"""LoG Filter Block for LoG loss"""
def __init__(self):
super(LogBlock, self).__init__()
## RGB to Gray Block
np_filter1 = np.array([[0.2989, 0.5870, 0.1140]]);
conv1 = nn.Conv2d(3, 1, kernel_size=1, stride=1, padding=0, bias=False)
conv1.weight = nn.Parameter(torch.from_numpy(np_filter1).float().unsqueeze(2).unsqueeze(2))
## LoG Filter Block
np_filter_2 =np.array([[0, -1, 0] ,[-1 ,4 ,-1] ,[0 ,-1 ,0]])
conv2 =nn.Conv2d(1, 1, kernel_size=3, stride=1, padding=1, bias=False)
conv2.weight =nn.Parameter(torch.from_numpy(np_filter_2).float().unsqueeze(0).unsqueeze(0))
self.main = nn.Sequential(conv1, conv2)
## Fix all weights
for param in self.main.parameters():
param.requires_grad = False
def forward(self, x):
return self.main(x)
class LogEachBlock(nn.Module):
"""LoG Filter Block for LoG Loss, applied for each color channel"""
def __init__(self):
super(LogEachBlock, self).__init__()
## LoG Filter Block
np_filter2 = np.array([[0, -1, 0], [-1, 4, -1], [0, -1, 0]])
self.conv2 = nn.Conv2d(1, 1, kernel_size=3, stride=1, padding=1, bias=False)
self.conv2.weight = nn.Parameter(torch.from_numpy(np_filter2).float().unsqueeze(0).unsqueeze(0))
self.avg_pool = torch.nn.AvgPool3d((3, 1, 1), stride=1)
self.smooth = torch.nn.AvgPool2d(3, stride=1, padding=1)
for param in self.conv2.parameters():
param.requires_grad = False
def forward(self, x):
# Split each channel
chan1 = x[:, :, 0]
chan2 = x[:, :, 1]
chan3 = x[:, :, 2]
# Match dimension batch x chan x height x width
chan1 = chan1.unsqueeze(1)
chan2 = chan2.unsqueeze(1)
chan3 = chan3.unsqueeze(1)
# chan1 = self.smooth(chan1)
# chan2 = self.smooth(chan2)
# chan3 = self.smooth(chan3)
filt1 = self.conv2(chan1)
filt2 = self.conv2(chan2)
filt3 = self.conv2(chan3)
# Concat channels and apply pooling
concat = torch.cat((filt1, filt2, filt3), 1)
output = self.avg_pool(concat)
return output
rgb_img_path = "./010_00014_RGB.jpg"
tir_img_path = "./010_00014.jpg"
rgb_img = cv2.imread(rgb_img_path)
tir_img = cv2.imread(tir_img_path)
rgb_img = torch.from_numpy(rgb_img)
tir_img = torch.from_numpy(tir_img)
rgb_img = rgb_img.unsqueeze(dim=0)
tir_img = tir_img.unsqueeze(dim=0)
tir_img = tir_img.permute(0,3,1,2).float()
rgb_img = rgb_img.permute(0,3,1,2).float()
loss = LogLoss()
rgb_log, tir_img = loss(rgb_img,tir_img)
print('hi')