nnf_grid_sample {torch} | R Documentation |
Grid_sample
Description
Given an input
and a flow-field grid
, computes the
output
using input
values and pixel locations from grid
.
Usage
nnf_grid_sample(
input,
grid,
mode = c("bilinear", "nearest"),
padding_mode = c("zeros", "border", "reflection"),
align_corners = FALSE
)
Arguments
input |
(Tensor) input of shape |
grid |
(Tensor) flow-field of shape |
mode |
(str) interpolation mode to calculate output values |
padding_mode |
(str) padding mode for outside grid values |
align_corners |
(bool, optional) Geometrically, we consider the pixels of the
input as squares rather than points. If set to |
Details
Currently, only spatial (4-D) and volumetric (5-D) input
are
supported.
In the spatial (4-D) case, for input
with shape
(N, C, H_{\mbox{in}}, W_{\mbox{in}})
and grid
with shape
(N, H_{\mbox{out}}, W_{\mbox{out}}, 2)
, the output will have shape
(N, C, H_{\mbox{out}}, W_{\mbox{out}})
.
For each output location output[n, :, h, w]
, the size-2 vector
grid[n, h, w]
specifies input
pixel locations x
and y
,
which are used to interpolate the output value output[n, :, h, w]
.
In the case of 5D inputs, grid[n, d, h, w]
specifies the
x
, y
, z
pixel locations for interpolating
output[n, :, d, h, w]
. mode
argument specifies nearest
or
bilinear
interpolation method to sample the input pixels.
grid
specifies the sampling pixel locations normalized by the
input
spatial dimensions. Therefore, it should have most values in
the range of [-1, 1]
. For example, values x = -1, y = -1
is the
left-top pixel of input
, and values x = 1, y = 1
is the
right-bottom pixel of input
.
If grid
has values outside the range of [-1, 1]
, the corresponding
outputs are handled as defined by padding_mode
. Options are
-
padding_mode="zeros"
: use0
for out-of-bound grid locations, -
padding_mode="border"
: use border values for out-of-bound grid locations, -
padding_mode="reflection"
: use values at locations reflected by the border for out-of-bound grid locations. For location far away from the border, it will keep being reflected until becoming in bound, e.g., (normalized) pixel locationx = -3.5
reflects by border-1
and becomesx' = 1.5
, then reflects by border1
and becomesx'' = -0.5
.
Note
This function is often used in conjunction with nnf_affine_grid()
to build Spatial Transformer Networks
_ .