forked from ankurhanda/gvnn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Disparity1D.lua
78 lines (55 loc) · 2.34 KB
/
Disparity1D.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
local Disparity1D, parent = torch.class('nn.Disparity1DBHWD', 'nn.Module')
--[[
Disparity1D(height, width) :
Disparity1D:updateOutput(transformMatrix)
Disparity1D:updateGradInput(transformMatrix, gradGrids)
Disparity1D will take 2x3 an affine image transform matrix (homogeneous
coordinates) as input, and output a grid, in normalized coordinates* that, once used
with the Bilinear Sampler, will result in an affine transform.
AffineGridGenerator
- takes (B,2,3)-shaped transform matrices as input (B=batch).
- outputs a grid in BHWD layout, that can be used directly with BilinearSamplerBHWD
- initialization of the previous layer should biased towards the identity transform :
| 1 0 0 |
| 0 1 0 |
*: normalized coordinates [-1,1] correspond to the boundaries of the input image.
]]
function Disparity1D:__init(height, width)
parent.__init(self)
assert(height > 1)
assert(width > 1)
self.height = height
self.width = width
self.baseGrid = torch.Tensor(height, width, 2)
for i=1,self.height do
self.baseGrid:select(3,2):select(1,i):fill(-1 + (i-1)/(self.height-1) * 2)
end
for j=1,self.width do
self.baseGrid:select(3,1):select(2,j):fill(-1 + (j-1)/(self.width-1) * 2)
end
self.batchGrid = torch.Tensor(1, height, width, 2):copy(self.baseGrid)
end
function Disparity1D:updateOutput(disparity1D)
local current_disparity = disparity1D
assert(current_disparity:nDimension()==4
and current_disparity:size(2)==self.height
and current_disparity:size(3)==self.width
and current_disparity:size(4)==1
, 'please input disparity (bxhxwx1)')
local batchsize = current_disparity:size(1)
if self.batchGrid:size(1) ~= batchsize then
self.batchGrid:resize(batchsize, self.height, self.width, 2)
for i=1,batchsize do
self.batchGrid:select(1,i):copy(self.baseGrid)
end
end
self.output:resize(batchsize, self.height, self.width, 2)
self.output:select(4,1):copy(torch.add(self.batchGrid:select(4,1), current_disparity))
self.output:select(4,2):copy(self.batchGrid:select(4,2))
return self.output
end
function Disparity1D:updateGradInput(disparity1D, _gradGrid)
self.gradInput:resizeAs(disparity1D):zero():typeAs(disparity1D)
self.gradInput:copy(_gradGrid:select(4,1))
return self.gradInput
end