@@ -463,29 +463,6 @@ CV_EXPORTS_W AscendMat crop(InputArray src, const Rect& rect,
463
463
/* * @overload */
464
464
CV_EXPORTS_W AscendMat crop (const AscendMat& src, const Rect & rect,
465
465
AscendStream& stream = AscendStream::Null());
466
- /* * @brief Resizes an image src down to or up to the specified size.
467
- @param src input image
468
- @param dst output image; it has the size dsize (when it is non-zero) or the size computed from
469
- src.size(), fx, and fy; the type of dst is the same as of src.
470
- @param dsize output image size; if it equals zero, it is computed as:
471
- \f[𝚍𝚜𝚒𝚣𝚎 = 𝚂𝚒𝚣𝚎(𝚛𝚘𝚞𝚗𝚍(𝚏𝚡*𝚜𝚛𝚌.𝚌𝚘𝚕𝚜), 𝚛𝚘𝚞𝚗𝚍(𝚏𝚢*𝚜𝚛𝚌.𝚛𝚘𝚠𝚜))\f]
472
- Either dsize or both fx and fy must be non-zero.
473
- @param fx scale factor along the horizontal axis; when it equals 0, it is computed as
474
- \f[(𝚍𝚘𝚞𝚋𝚕𝚎)𝚍𝚜𝚒𝚣𝚎.𝚠𝚒𝚍𝚝𝚑/𝚜𝚛𝚌.𝚌𝚘𝚕𝚜\f]
475
-
476
- @param fy scale factor along the vertical axis; when it equals 0, it is computed as
477
- \f[(𝚍𝚘𝚞𝚋𝚕𝚎)𝚍𝚜𝚒𝚣𝚎.𝚑𝚎𝚒𝚐𝚑𝚝/𝚜𝚛𝚌.𝚛𝚘𝚠𝚜\f]
478
- @param interpolation interpolation method(see **cv.cann.InterpolationFlags**)
479
- @note There are some constraints for the input datatype:
480
- when resampling using
481
- nearest neighbor or bilinear interpolation: Input images must be uint8, and only GRAY and BGR
482
- images are supported. The resolution of input and output images must in range of [10*6,
483
- 4096*4096]. bicubic interpolation: Input images can be of different types, output images must be
484
- float or uint8. pixel area interpolation: Input images can be of different types but output images
485
- are always float.
486
-
487
- @sa cv::resize
488
- */
489
466
490
467
// ! interpolation algorithm
491
468
enum InterpolationFlags
@@ -504,6 +481,33 @@ enum InterpolationFlags
504
481
INTER_MAX = 7 ,
505
482
};
506
483
484
+ /* * @brief Resizes an image src down to or up to the specified size.
485
+ @param src input image
486
+ @param dst output image; it has the size dsize (when it is non-zero) or the size computed from
487
+ src.size(), fx, and fy; the type of dst is the same as of src.
488
+ @param dsize output image size; if it equals zero, it is computed as:
489
+ \f[𝚍𝚜𝚒𝚣𝚎 = 𝚂𝚒𝚣𝚎(𝚛𝚘𝚞𝚗𝚍(𝚏𝚡*𝚜𝚛𝚌.𝚌𝚘𝚕𝚜), 𝚛𝚘𝚞𝚗𝚍(𝚏𝚢*𝚜𝚛𝚌.𝚛𝚘𝚠𝚜))\f]
490
+ Either dsize or both fx and fy must be non-zero.
491
+ @param fx scale factor along the horizontal axis; when it equals 0, it is computed as
492
+ \f[(𝚍𝚘𝚞𝚋𝚕𝚎)𝚍𝚜𝚒𝚣𝚎.𝚠𝚒𝚍𝚝𝚑/𝚜𝚛𝚌.𝚌𝚘𝚕𝚜\f]
493
+
494
+ @param fy scale factor along the vertical axis; when it equals 0, it is computed as
495
+ \f[(𝚍𝚘𝚞𝚋𝚕𝚎)𝚍𝚜𝚒𝚣𝚎.𝚑𝚎𝚒𝚐𝚑𝚝/𝚜𝚛𝚌.𝚛𝚘𝚠𝚜\f]
496
+ @param interpolation interpolation method(see **cv.cann.InterpolationFlags**)
497
+ * @note There are some constraints for the input datatype:
498
+ * when resampling using
499
+ * nearest neighbor or bilinear interpolation: Input images must be uint8, and only GRAY and BGR
500
+ images are supported. The resolution of input and output images must in range of [10*6,
501
+ 4096*4096].
502
+ * bicubic interpolation: Input images can be of different types, output images must be
503
+ float or uint8.
504
+ * pixel area interpolation: Input images can be of different types but output images
505
+ are always float.\n
506
+ * Only the following devices are supported when resampling using nearest neighbor or bilinear
507
+ interpolation: Atlas Inference Series products, Atlas 200/500 A2 Inference products and
508
+ Atlas A2 Training Series products/Atlas 300I A2 Inference products
509
+ @sa cv::resize
510
+ */
507
511
CV_EXPORTS_W void resize (InputArray src, OutputArray dst, Size dsize, double fx, double fy,
508
512
int interpolation, AscendStream& stream = AscendStream::Null());
509
513
/* * @overload */
@@ -524,6 +528,8 @@ src.size(), fx, and fy; the type of dst is the same as of src.
524
528
(see **cv.cann.InterpolationFlags**)
525
529
@note The input images must be uint8, and only GRAY and BGR images are supported. The resolution of
526
530
input and output images must in range of [10*6, 4096*4096].
531
+ @note Only the following devices are supported: Atlas Inference Series products, Atlas 200/500 A2
532
+ Inference products and Atlas A2 Training Series products/Atlas 300I A2 Inference products.
527
533
@sa cv::gapi::crop, cv::resize, cv::cann::resize
528
534
*/
529
535
CV_EXPORTS_W void cropResize (const InputArray src, OutputArray dst, const Rect & rect, Size dsize,
@@ -532,7 +538,8 @@ CV_EXPORTS_W void cropResize(const InputArray src, OutputArray dst, const Rect&
532
538
CV_EXPORTS_W void cropResize (const AscendMat& src, CV_OUT AscendMat& dst, const Rect & rect,
533
539
Size dsize, double fx, double fy, int interpolation);
534
540
535
- /* * @brief crop a sub image from a big one, and resize it to certain size.
541
+ /* * @brief crop a sub image from a big one, resize it to certain size, and form the top/left border
542
+ and fills it with specified bordertype.
536
543
@param src input array.
537
544
@param dst output array; it has the size Size(dsize.height + top, dsize.width + left).
538
545
@param rect a rect to crop a array to
@@ -548,6 +555,8 @@ cv::BorderTypes::BORDER_REPLICATE are supported.
548
555
@param left Number of pixels for left padding
549
556
@note The input images must be uint8, and only GRAY and BGR images are supported. The resolution of
550
557
input and output images must in range of [10*6, 4096*4096].
558
+ @note Only the following devices are supported: Atlas Inference Series products, Atlas 200/500 A2
559
+ Inference products and Atlas A2 Training Series products/Atlas 300I A2 Inference products.
551
560
@sa cv::gapi::crop, cv::resize, cv::cann::resize, cv::BorderTypes
552
561
*/
553
562
@@ -575,6 +584,8 @@ cv::BorderTypes::BORDER_REPLICATE are supported.
575
584
@param value Border BGR or YUV value if borderType==BORDER_CONSTANT.
576
585
@note The input images must be uint8, and only GRAY and BGR images are supported. The resolution of
577
586
input and output images must in range of [10*6, 4096*4096].
587
+ @note Only the following devices are supported: Atlas Inference Series products, Atlas 200/500 A2
588
+ Inference products and Atlas A2 Training Series products/Atlas 300I A2 Inference products.
578
589
@sa cv::copyMakeBorder, cv::borderInterpolate
579
590
*/
580
591
CV_EXPORTS_W void copyMakeBorder (const InputArray src, OutputArray dst, int top, int bottom,
0 commit comments