/*M///////////////////////////////////////////////////////////////////////////////////////
//
// IMPORTANT: READ BEFORE DOWNLOADING, COPYING, INSTALLING OR USING.
//
// By downloading, copying, installing or using the software you agree to this license.
// If you do not agree to this license, do not download, install,
// copy or use the software.
//
//
// License Agreement
// For Open Source Computer Vision Library
//
// Copyright (C) 2000-2008, Intel Corporation, all rights reserved.
// Copyright (C) 2009, Willow Garage Inc., all rights reserved.
// Copyright (C) 2013, OpenCV Foundation, all rights reserved.
// Third party copyrights are property of their respective owners.
//
// Redistribution and use in source and binary forms, with or without modification,
// are permitted provided that the following conditions are met:
//
// * Redistribution's of source code must retain the above copyright notice,
// this list of conditions and the following disclaimer.
//
// * Redistribution's in binary form must reproduce the above copyright notice,
// this list of conditions and the following disclaimer in the documentation
// and/or other materials provided with the distribution.
//
// * The name of the copyright holders may not be used to endorse or promote products
// derived from this software without specific prior written permission.
//
// This software is provided by the copyright holders and contributors "as is" and
// any express or implied warranties, including, but not limited to, the implied
// warranties of merchantability and fitness for a particular purpose are disclaimed.
// In no event shall the Intel Corporation or contributors be liable for any direct,
// indirect, incidental, special, exemplary, or consequential damages
// (including, but not limited to, procurement of substitute goods or services;
// loss of use, data, or profits; or business interruption) however caused
// and on any theory of liability, whether in contract, strict liability,
// or tort (including negligence or otherwise) arising in any way out of
// the use of this software, even if advised of the possibility of such damage.
//
//M*/
#ifndef OPENCV_CORE_C_H
#define OPENCV_CORE_C_H
#include "opencv2/core/types_c.h"
#ifdef __cplusplus
# ifdef _MSC_VER
/* disable warning C4190: 'function' has C-linkage specified, but returns UDT 'typename'
which is incompatible with C
It is OK to disable it because we only extend few plain structures with
C++ construrtors for simpler interoperability with C++ API of the library
*/
# pragma warning(disable:4190)
# elif defined __clang__ && __clang_major__ >= 3
# pragma GCC diagnostic ignored "-Wreturn-type-c-linkage"
# endif
#endif
#ifdef __cplusplus
extern "C" {
#endif
/** @addtogroup core_c
@{
*/
/****************************************************************************************\
* Array allocation, deallocation, initialization and access to elements *
\****************************************************************************************/
/** `malloc` wrapper.
If there is no enough memory, the function
(as well as other OpenCV functions that call cvAlloc)
raises an error. */
CVAPI(void*) cvAlloc( size_t size );
/** `free` wrapper.
Here and further all the memory releasing functions
(that all call cvFree) take double pointer in order to
to clear pointer to the data after releasing it.
Passing pointer to NULL pointer is Ok: nothing happens in this case
*/
CVAPI(void) cvFree_( void* ptr );
#define cvFree(ptr) (cvFree_(*(ptr)), *(ptr)=0)
/** @brief Creates an image header but does not allocate the image data.
@param size Image width and height
@param depth Image depth (see cvCreateImage )
@param channels Number of channels (see cvCreateImage )
*/
CVAPI(IplImage*) cvCreateImageHeader( CvSize size, int depth, int channels );
/** @brief Initializes an image header that was previously allocated.
The returned IplImage\* points to the initialized header.
@param image Image header to initialize
@param size Image width and height
@param depth Image depth (see cvCreateImage )
@param channels Number of channels (see cvCreateImage )
@param origin Top-left IPL_ORIGIN_TL or bottom-left IPL_ORIGIN_BL
@param align Alignment for image rows, typically 4 or 8 bytes
*/
CVAPI(IplImage*) cvInitImageHeader( IplImage* image, CvSize size, int depth,
int channels, int origin CV_DEFAULT(0),
int align CV_DEFAULT(4));
/** @brief Creates an image header and allocates the image data.
This function call is equivalent to the following code:
@code
header = cvCreateImageHeader(size, depth, channels);
cvCreateData(header);
@endcode
@param size Image width and height
@param depth Bit depth of image elements. See IplImage for valid depths.
@param channels Number of channels per pixel. See IplImage for details. This function only creates
images with interleaved channels.
*/
CVAPI(IplImage*) cvCreateImage( CvSize size, int depth, int channels );
/** @brief Deallocates an image header.
This call is an analogue of :
@code
if(image )
{
iplDeallocate(*image, IPL_IMAGE_HEADER | IPL_IMAGE_ROI);
*image = 0;
}
@endcode
but it does not use IPL functions by default (see the CV_TURN_ON_IPL_COMPATIBILITY macro).
@param image Double pointer to the image header
*/
CVAPI(void) cvReleaseImageHeader( IplImage** image );
/** @brief Deallocates the image header and the image data.
This call is a shortened form of :
@code
if(*image )
{
cvReleaseData(*image);
cvReleaseImageHeader(image);
}
@endcode
@param image Double pointer to the image header
*/
CVAPI(void) cvReleaseImage( IplImage** image );
/** Creates a copy of IPL image (widthStep may differ) */
CVAPI(IplImage*) cvCloneImage( const IplImage* image );
/** @brief Sets the channel of interest in an IplImage.
If the ROI is set to NULL and the coi is *not* 0, the ROI is allocated. Most OpenCV functions do
*not* support the COI setting, so to process an individual image/matrix channel one may copy (via
cvCopy or cvSplit) the channel to a separate image/matrix, process it and then copy the result
back (via cvCopy or cvMerge) if needed.
@param image A pointer to the image header
@param coi The channel of interest. 0 - all channels are selected, 1 - first channel is selected,
etc. Note that the channel indices become 1-based.
*/
CVAPI(void) cvSetImageCOI( IplImage* image, int coi );
/** @brief Returns the index of the channel of interest.
Returns the channel of interest of in an IplImage. Returned values correspond to the coi in
cvSetImageCOI.
@param image A pointer to the image header
*/
CVAPI(int) cvGetImageCOI( const IplImage* image );
/** @brief Sets an image Region Of Interest (ROI) for a given rectangle.
If the original image ROI was NULL and the rect is not the whole image, the ROI structure is
allocated.
Most OpenCV functions support the use of ROI and treat the image rectangle as a separate image. For
example, all of the pixel coordinates are counted from the top-left (or bottom-left) corner of the
ROI, not the original image.
@param image A pointer to the image header
@param rect The ROI rectangle
*/
CVAPI(void) cvSetImageROI( IplImage* image, CvRect rect );
/** @brief Resets the image ROI to include the entire image and releases the ROI structure.
This produces a similar result to the following, but in addition it releases the ROI structure. :
@code
cvSetImageROI(image, cvRect(0, 0, image->width, image->height ));
cvSetImageCOI(image, 0);
@endcode
@param image A pointer to the image header
*/
CVAPI(void) cvResetImageROI( IplImage* image );
/** @brief Returns the image ROI.
If there is no ROI set, cvRect(0,0,image-\>width,image-\>height) is returned.
@param image A pointer to the image header
*/
C
没有合适的资源?快使用搜索试试~ 我知道了~
在RK3588上运行YOLOV5模型(源码)
共778个文件
hpp:418个
h:116个
xml:66个
需积分: 5 2 下载量 47 浏览量
2024-08-23
09:41:39
上传
评论 1
收藏 124.04MB ZIP 举报
温馨提示
yolov5 ******************************************************************************************************* 这是一个可以在RK3588上运行的yolov5-demo项目,项目自带有量化后的官方模型可以进行测试使用。
资源推荐
资源详情
资源评论
收起资源包目录
在RK3588上运行YOLOV5模型(源码) (778个子文件)
liblibprotobuf.a 67.03MB
libopencv_core.a 48.18MB
liblibprotobuf.a 44.68MB
libopencv_imgproc.a 41.2MB
libopencv_core.a 32.48MB
libopencv_imgproc.a 27.05MB
libopencv_calib3d.a 22.48MB
libIlmImf.a 21.07MB
libIlmImf.a 15.99MB
libopencv_calib3d.a 13.38MB
libopencv_features2d.a 13.26MB
libtegra_hal.a 11.09MB
libopencv_dnn.a 10.16MB
libopencv_features2d.a 10.05MB
libopencv_imgcodecs.a 7.18MB
liblibprotobuf.a 6.85MB
libtegra_hal.a 6.6MB
liblibprotobuf.a 6.09MB
liblibwebp.a 6.06MB
libopencv_core.a 6MB
libopencv_imgcodecs.a 5.88MB
libopencv_imgproc.a 5.86MB
libopencv_imgproc.a 5.15MB
libopencv_core.a 5.11MB
liblibwebp.a 2.94MB
liblibtiff.a 2.92MB
libIlmImf.a 2.8MB
liblibjpeg-turbo.a 2.76MB
libIlmImf.a 2.58MB
libopencv_calib3d.a 2.19MB
liblibjasper.a 2.13MB
liblibjpeg-turbo.a 1.97MB
liblibtiff.a 1.93MB
libopencv_calib3d.a 1.85MB
liblibpng.a 1.78MB
libopencv_features2d.a 1.26MB
liblibjasper.a 1.25MB
libtegra_hal.a 1.12MB
liblibpng.a 1.09MB
libtegra_hal.a 1.07MB
libopencv_features2d.a 1.06MB
libopencv_imgcodecs.a 946KB
liblibwebp.a 887KB
libopencv_imgcodecs.a 810KB
liblibtiff.a 809KB
liblibwebp.a 670KB
libzlib.a 632KB
liblibtiff.a 591KB
liblibjasper.a 581KB
libopencv_video.a 546KB
liblibpng.a 493KB
liblibjpeg-turbo.a 486KB
libopencv_video.a 454KB
liblibjasper.a 417KB
liblibpng.a 362KB
liblibjpeg-turbo.a 360KB
libzlib.a 340KB
libzlib.a 157KB
libquirc.a 128KB
libzlib.a 117KB
libquirc.a 58KB
libcpufeatures.a 36KB
libcpufeatures.a 28KB
libquirc.a 26KB
libquirc.a 22KB
android.toolchain.cmake 84KB
OpenCVConfig.cmake 13KB
OpenCVConfig.cmake 13KB
OpenCVConfig.cmake 13KB
OpenCVConfig.cmake 13KB
OpenCVModules-release.cmake 8KB
OpenCVModules-release.cmake 8KB
OpenCVModules-release.cmake 8KB
OpenCVModules-release.cmake 8KB
OpenCVModules.cmake 6KB
OpenCVModules.cmake 6KB
OpenCVModules.cmake 6KB
OpenCVModules.cmake 6KB
OpenCVConfig.cmake 2KB
OpenCVConfig-version.cmake 418B
OpenCVConfig-version.cmake 418B
OpenCVConfig-version.cmake 418B
OpenCVConfig-version.cmake 418B
OpenCVConfig-version.cmake 418B
yolov5_postprocess.cpp 14KB
rknn_engine.cpp 6KB
yolov5.cpp 5KB
preprocess.cpp 1KB
yolov5_test.cpp 624B
cv_draw.cpp 602B
test.cpp 291B
cpufeatures-LICENSE 577B
.DS_Store 6KB
core_c.h 128KB
core_c.h 128KB
core_c.h 128KB
types_c.h 70KB
types_c.h 70KB
types_c.h 70KB
imgproc_c.h 51KB
共 778 条
- 1
- 2
- 3
- 4
- 5
- 6
- 8
资源评论
LeonDL168
- 粉丝: 2435
- 资源: 613
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功