You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Not support `exclude_outside` and `extrapolation_value` yet.
115
+
116
+
To get a similar result to `cv::resize`, give dsize and:
117
+
INTER_NEAREST : ASYMMETRIC + NEAREST_FLOOR
118
+
INTER_LINEAR : HALF_PIXEL
119
+
INTER_CUBIC : HALF_PIXEL + cubicCoeff(-0.75)
120
+
121
+
@param src input image.
122
+
@param dst output image; it has the size dsize (when it is non-zero) or the size computed from src.size(), scale; the type of dst is the same as of src.
123
+
@param dsize output image size; if it equals to zero, it is computed as:
@param scale scale factor; use same definition as ONNX, if scale > 1, it's upsampling.
127
+
@param interpolation interpolation / coordiante, see #InterpolationFlags and #ResizeONNXFlags
128
+
@param cubicCoeff cubic sampling coeff; range \f[[-1.0, 0)\f]
129
+
@param roi crop region; if provided, the rois' coordinates are normalized in the coordinate system of the input image; it only takes effect with INTER_TF_CROP_RESIZE (ONNX tf_crop_and_resize)
130
+
@param stream Stream for the asynchronous version.
0 commit comments