-
Notifications
You must be signed in to change notification settings - Fork 353
/
images.lua
56 lines (49 loc) · 1.27 KB
/
images.lua
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
--
-- Convenience functions to replicate Caffe preprocessing
--
local means = { 104, 117, 123 }
function preprocess(img, scale)
-- handle monochrome images
if img:size(1) == 1 then
local copy = torch.FloatTensor(3, img:size(2), img:size(3))
copy[1] = img[1]
copy[2] = img[1]
copy[3] = img[1]
img = copy
elseif img:size(1) == 4 then
img = img[{{1,3},{},{}}]
end
local w, h = img:size(3), img:size(2)
if scale then
if w < h then
img = image.scale(img, scale * w / h, scale)
else
img = image.scale(img, scale, scale * h / w)
end
end
-- reverse channels
local copy = torch.FloatTensor(img:size())
copy[1] = img[3]
copy[2] = img[2]
copy[3] = img[1]
img = copy
img:mul(255)
for i = 1, 3 do
img[i]:add(-means[i])
end
return img:view(1, 3, img:size(2), img:size(3))
end
function depreprocess(img)
local copy = torch.FloatTensor(3, img:size(3), img:size(4)):copy(img)
for i = 1, 3 do
copy[i]:add(means[i])
end
copy:div(255)
-- reverse channels
local copy2 = torch.FloatTensor(copy:size())
copy2[1] = copy[3]
copy2[2] = copy[2]
copy2[3] = copy[1]
copy2:clamp(0, 1)
return copy2
end