Skip to content

Commit a15b091

Browse files
committed
Fix code according to review
1. Delete the macro definition ENABLE_DVPP_INTERFACE in modules/cannops/src/dvpp_call.cpp 2. Add dvpp interface version and supported device description
1 parent 5570ce5 commit a15b091

File tree

4 files changed

+52
-29
lines changed

4 files changed

+52
-29
lines changed

modules/cannops/include/opencv2/cann.hpp

+5
Original file line numberDiff line numberDiff line change
@@ -320,11 +320,16 @@ CV_EXPORTS_W void finalizeAcl();
320320

321321
/**
322322
* @brief init DVPP system.
323+
* @note The DVPP interfaces used are all version V2.
324+
* Supported devices: Atlas Inference Series products, Atlas 200/500 A2 Inference products and
325+
* Atlas A2 Training Series products/Atlas 300I A2 Inference products
323326
*/
324327
CV_EXPORTS_W void initDvpp();
325328

326329
/**
327330
* @brief finalize DVPP system.
331+
* @note Supported devices: Atlas Inference Series products, Atlas 200/500 A2 Inference products and
332+
* Atlas A2 Training Series products/Atlas 300I A2 Inference products
328333
*/
329334
CV_EXPORTS_W void finalizeDvpp();
330335

modules/cannops/include/opencv2/cann_interface.hpp

+35-24
Original file line numberDiff line numberDiff line change
@@ -463,29 +463,6 @@ CV_EXPORTS_W AscendMat crop(InputArray src, const Rect& rect,
463463
/** @overload */
464464
CV_EXPORTS_W AscendMat crop(const AscendMat& src, const Rect& rect,
465465
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-
*/
489466

490467
//! interpolation algorithm
491468
enum InterpolationFlags
@@ -504,6 +481,33 @@ enum InterpolationFlags
504481
INTER_MAX = 7,
505482
};
506483

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+
*/
507511
CV_EXPORTS_W void resize(InputArray src, OutputArray dst, Size dsize, double fx, double fy,
508512
int interpolation, AscendStream& stream = AscendStream::Null());
509513
/** @overload */
@@ -524,6 +528,8 @@ src.size(), fx, and fy; the type of dst is the same as of src.
524528
(see **cv.cann.InterpolationFlags**)
525529
@note The input images must be uint8, and only GRAY and BGR images are supported. The resolution of
526530
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.
527533
@sa cv::gapi::crop, cv::resize, cv::cann::resize
528534
*/
529535
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&
532538
CV_EXPORTS_W void cropResize(const AscendMat& src, CV_OUT AscendMat& dst, const Rect& rect,
533539
Size dsize, double fx, double fy, int interpolation);
534540

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.
536543
@param src input array.
537544
@param dst output array; it has the size Size(dsize.height + top, dsize.width + left).
538545
@param rect a rect to crop a array to
@@ -548,6 +555,8 @@ cv::BorderTypes::BORDER_REPLICATE are supported.
548555
@param left Number of pixels for left padding
549556
@note The input images must be uint8, and only GRAY and BGR images are supported. The resolution of
550557
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.
551560
@sa cv::gapi::crop, cv::resize, cv::cann::resize, cv::BorderTypes
552561
*/
553562

@@ -575,6 +584,8 @@ cv::BorderTypes::BORDER_REPLICATE are supported.
575584
@param value Border BGR or YUV value if borderType==BORDER_CONSTANT.
576585
@note The input images must be uint8, and only GRAY and BGR images are supported. The resolution of
577586
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.
578589
@sa cv::copyMakeBorder, cv::borderInterpolate
579590
*/
580591
CV_EXPORTS_W void copyMakeBorder(const InputArray src, OutputArray dst, int top, int bottom,

modules/cannops/include/opencv2/dvpp_call.hpp

+12-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,12 @@ struct AscendPicDesc
3838
AscendPicDesc(const Mat& mat, hi_pixel_format _picture_format);
3939
};
4040

41-
/******************************hi_mpi_vpc warppers****************************/
41+
/*
42+
***************************** hi_mpi_vpc warppers ***************************
43+
The DVPP VPC interfaces here are all version v2. Only the following devices are supported: Atlas
44+
Inference Series products, Atlas 200/500 A2 Inference products and Atlas A2 Training Series
45+
products/Atlas 300I A2 Inference products.
46+
*/
4247
inline void vpcResizeWarpper(hi_vpc_chn chnId, hi_vpc_pic_info& inPic, hi_vpc_pic_info& outPic,
4348
int interpolation, uint32_t* taskID)
4449
{
@@ -59,6 +64,12 @@ void vpcCopyMakeBorderWarpper(hi_vpc_chn chnId, hi_vpc_pic_info& inPic, hi_vpc_p
5964
uint32_t* taskID, int* offsets, int bordertype, Scalar value);
6065
/*****************************************************************************/
6166

67+
/**
68+
* @brief Interface for calling DVPP operator descriptors.
69+
* The DVPP VPC interfaces here are all version v2. Supported devices: Atlas Inference Series
70+
* products, Atlas 200/500 A2 Inference products and Atlas A2 Training Series products/Atlas 300I A2
71+
* Inference products.
72+
*/
6273
class DvppOperatorDesc
6374
{
6475
private:

modules/cannops/src/dvpp_call.cpp

-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
// This file is part of OpenCV project.
22
// It is subject to the license terms in the LICENSE file found in the top-level directory
33
// of this distribution and at http://opencv.org/license.html.
4-
#ifndef ENABLE_DVPP_INTERFACE
5-
#define ENABLE_DVPP_INTERFACE
64

75
#include <acl/acl.h>
86
#include <acl/dvpp/hi_dvpp.h>
@@ -310,5 +308,3 @@ DvppOperatorDesc& DvppOperatorDesc::getResult(AscendMat& dst, uint32_t& taskIDRe
310308

311309
} // namespace cann
312310
} // namespace cv
313-
314-
#endif // ENABLE_DVPP_INTERFACE

0 commit comments

Comments
 (0)