Welcome to mirror list, hosted at ThFree Co, Russian Federation.

SpatialReSampling.lua - github.com/clementfarabet/lua---nnx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9aef63c35a7f093d0c5a99464ea70ed78f6647e7 (plain)
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
local SpatialReSampling, parent = torch.class('nn.SpatialReSampling', 'nn.Module')

local help_desc =
[[Applies a 2D re-sampling over an input image composed of
several input planes. The input tensor in forward(input) is 
expected to be a 3D tensor (width x height x nInputPlane). 
The number of output planes will be the same as the nb of input
planes.

The re-sampling is done using bilinear interpolation. For a
simple nearest-neihbor upsampling, use nn.SpatialUpSampling(),
and for a simple average-based down-sampling, use 
nn.SpatialDownSampling().

If the input image is a 3D tensor nInputPlane x height x width,
the output image size will be nInputPlane x oheight x owidth where
owidth and oheight are given to the constructor.

Instead of owidth & oheight, one can provide rwidth & rheight, 
such that owidth = iwidth*rwidth & oheight = iheight*rheight. ]]

function SpatialReSampling:__init(...)
   parent.__init(self)
   xlua.unpack_class(
      self, {...}, 'nn.SpatialReSampling', help_desc,
      {arg='rwidth', type='number', help='ratio: owidth/iwidth'},
      {arg='rheight', type='number', help='ratio: oheight/iheight'},
      {arg='owidth', type='number', help='output width'},
      {arg='oheight', type='number', help='output height'}
   )
end

function SpatialReSampling:forward(input)
   self.oheight = self.oheight or self.rheight*input:size(2)
   self.owidth = self.owidth or self.rwidth*input:size(3)
   input.nn.SpatialReSampling_forward(self, input)
   return self.output
end

function SpatialReSampling:backward(input, gradOutput)
   input.nn.SpatialReSampling_backward(self, input, gradOutput)
   return self.gradInput
end

function SpatialReSampling:write(file)
   parent.write(self, file)
   file:writeInt(self.owidth)
   file:writeInt(self.oheight)
end

function SpatialReSampling:read(file)
   parent.read(self, file)
   self.owidth = file:readInt()
   self.oheight = file:readInt()
end