ResizeMethod Class Reference
Describes methods used in order to resize image. More...
Inherits Enum.
Static Public Attributes | |
int | Nearest = 0 |
Nearest method. | |
int | NearestPytorch = 1 |
Nearest Pytorch compatible method. | |
int | Bilinear = 2 |
Bilinear method. | |
int | BilinearCaffe = 3 |
Bilinear Caffe compatible method. More... | |
int | BilinearPytorch = 4 |
Bilinear Pytorch compatible method. More... | |
int | Bicubic = 5 |
Bicubic method. | |
int | Area = 6 |
Area method. | |
int | AreaFast = 7 |
Area method for previously reduced in 2 times image. | |
Detailed Description
Describes methods used in order to resize image.
Field Documentation
◆ BilinearCaffe
|
static |
Bilinear Caffe compatible method.
It is relevant only for Simd.ResizeChannel.Float (32-bit float channel type).
◆ BilinearPytorch
|
static |
Bilinear Pytorch compatible method.
It is relevant only for Simd.ResizeChannel.Float (32-bit float channel type).