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 | BilinearOpenCv = 5 |
| Bilinear OpenCV compatible method. More... | |
| int | Bicubic = 6 |
| Bicubic method. | |
| int | Area = 7 |
| Area method. | |
| int | AreaFast = 8 |
| 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).
◆ BilinearOpenCv
|
static |
Bilinear OpenCV compatible method.
It is relevant only for Simd.ResizeChannel.Byte (8-bit integer channel type).