Skip to content

Commit

Permalink
cuda done
Browse files Browse the repository at this point in the history
  • Loading branch information
Ginkgo-Biloba committed Jun 10, 2024
1 parent 1b02ee0 commit a8d2329
Show file tree
Hide file tree
Showing 4 changed files with 953 additions and 2 deletions.
29 changes: 29 additions & 0 deletions modules/cudawarping/include/opencv2/cudawarping.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,35 @@ supported for now.
*/
CV_EXPORTS_W void resize(InputArray src, OutputArray dst, Size dsize, double fx=0, double fy=0, int interpolation = INTER_LINEAR, Stream& stream = Stream::Null());

/** @brief onnx resize op
https://github.com/onnx/onnx/blob/main/docs/Operators.md#Resize
https://github.com/onnx/onnx/blob/main/onnx/reference/ops/op_resize.py
Not support `exclude_outside` and `extrapolation_value` yet.
To get a similar result to resize, give dsize and:
INTER_NEAREST : ASYMMETRIC + NEAREST_FLOOR
INTER_LINEAR : HALF_PIXEL
INTER_CUBIC : HALF_PIXEL + cubicCoeff(-0.75)
@param src input image.
@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.
@param dsize output image size; if it equals to zero, it is computed as:
\f[\texttt{dsize = Size(int(scale.x * src.cols), int(scale.y * src.rows))}\f]
Either dsize or scale must be non-zero.
@param scale scale factor; use same definition as ONNX, if scale > 1, it's upsampling.
@param interpolation interpolation / coordiante, see #InterpolationFlags and #ResizeONNXFlags
@param cubicCoeff cubic sampling coeff; range \f[[-1.0, 0)\f]
@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)
@sa resize, resizeOnnx
*/
CV_EXPORTS_W void resizeOnnx(
InputArray src, OutputArray dst, Size dsize, Point2d scale = Point2d(),
int interpolation = INTER_LINEAR | INTER_HALF_PIXEL,
float cubicCoeff = -0.75f, Rect2d const& roi = Rect2d(),
Stream& stream = Stream::Null());

/** @brief Applies an affine transformation to an image.
@param src Source image. CV_8U , CV_16U , CV_32S , or CV_32F depth and 1, 3, or 4 channels are
Expand Down
Loading

0 comments on commit a8d2329

Please sign in to comment.