亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? cxcore.h

?? 將OpenCV移植到DSP上
?? H
?? 第 1 頁 / 共 5 頁
字號:
////////////////////////////////////////////////////////////////////////////////////////////  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 For Embedded Computer Vision Library//// Copyright (c) 2008, EMCV Project,// Copyright (c) 2000-2007, Intel Corporation,// 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:////    * Redistributions of source code must retain the above copyright notice, //      this list of conditions and the following disclaimer.//    * Redistributions 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.//    * Neither the name of the copyright holders nor the names of their contributors //      may 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 COPYRIGHT OWNER 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.//// Contributors://    * Shiqi Yu (Shenzhen Institute of Advanced Technology, Chinese Academy of Sciences)#ifndef _CXCORE_H_#define _CXCORE_H_#include "cxtypes.h"#include "cxmisc.h"#include "cxerror.h"#define icvIplToCvDepth( depth ) \    icvDepthToType[(((depth) & 255) >> 2) + ((depth) < 0)]const int CV_DEPTH_BYTES[8]={1, 1, 2, 2, 4, 4, 8, 0};#ifdef __cplusplusextern "C" {#endifCVAPI(int) cvSaveImage( const char* filename, const IplImage * image );CVAPI(IplImage*) cvLoadImage( const char* filename, int iscolor CV_DEFAULT(0));// save as Embedded file#ifdef DM64X_NETWORKCVAPI(int) efs_cvSaveImage( const char* filename, const IplImage * image );#endif/****************************************************************************************\*          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)/* Allocates and initializes IplImage header */CVAPI(IplImage*)  cvCreateImageHeader( CvSize size, int depth, int channels );/* Inializes IplImage header */CVAPI(IplImage*) cvInitImageHeader( IplImage* image, CvSize size, int depth,                                   int channels, int origin CV_DEFAULT(0),                                   int align CV_DEFAULT(4));/* Creates IPL image (header and data) */CVAPI(IplImage*)  cvCreateImage( CvSize size, int depth, int channels );/* Releases (i.e. deallocates) IPL image header */CVAPI(void)  cvReleaseImageHeader( IplImage** image );/* Releases IPL image header and data */CVAPI(void)  cvReleaseImage( IplImage** image );/* Creates a copy of IPL image (widthStep may differ) */CVAPI(IplImage*) cvCloneImage( const IplImage* image );/* Sets a Channel Of Interest (only a few functions support COI) -    use cvCopy to extract the selected channel and/or put it back */CVAPI(void)  cvSetImageCOI( IplImage* image, int coi );/* Retrieves image Channel Of Interest */CVAPI(int)  cvGetImageCOI( const IplImage* image );/* Sets image ROI (region of interest) (COI is not changed) */CVAPI(void)  cvSetImageROI( IplImage* image, CvRect rect );/* Resets image ROI and COI */CVAPI(void)  cvResetImageROI( IplImage* image );/* Retrieves image ROI */CVAPI(CvRect) cvGetImageROI( const IplImage* image );/* Allocates and initalizes CvMat header */CVAPI(CvMat*)  cvCreateMatHeader( int rows, int cols, int type );#define CV_AUTOSTEP  0x7fffffff/* Initializes CvMat header */CVAPI(CvMat*) cvInitMatHeader( CvMat* mat, int rows, int cols,                              int type, void* data CV_DEFAULT(NULL),                              int step CV_DEFAULT(CV_AUTOSTEP) );/* Allocates and initializes CvMat header and allocates data */CVAPI(CvMat*)  cvCreateMat( int rows, int cols, int type );/* Releases CvMat header and deallocates matrix data   (reference counting is used for data) */CVAPI(void)  cvReleaseMat( CvMat** mat );/* Decrements CvMat data reference counter and deallocates the data if   it reaches 0 */CV_INLINE  void  cvDecRefData( CvArr* arr ){    if( CV_IS_MAT( arr ))    {        CvMat* mat = (CvMat*)arr;        mat->data.ptr = NULL;        if( mat->refcount != NULL && --*mat->refcount == 0 )            cvFree( &mat->refcount );        mat->refcount = NULL;    }    else if( CV_IS_MATND( arr ))    {        CvMatND* mat = (CvMatND*)arr;        mat->data.ptr = NULL;        if( mat->refcount != NULL && --*mat->refcount == 0 )            cvFree( &mat->refcount );        mat->refcount = NULL;    }}/* Increments CvMat data reference counter */CV_INLINE  int  cvIncRefData( CvArr* arr ){    int refcount = 0;    if( CV_IS_MAT( arr ))    {        CvMat* mat = (CvMat*)arr;        if( mat->refcount != NULL )            refcount = ++*mat->refcount;    }    else if( CV_IS_MATND( arr ))    {        CvMatND* mat = (CvMatND*)arr;        if( mat->refcount != NULL )            refcount = ++*mat->refcount;    }    return refcount;}/* Creates an exact copy of the input matrix (except, may be, step value) */CVAPI(CvMat*) cvCloneMat( const CvMat* mat );/* Makes a new matrix from <rect> subrectangle of input array.   No data is copied */CVAPI(CvMat*) cvGetSubRect( const CvArr* arr, CvMat* submat, CvRect rect );#define cvGetSubArr cvGetSubRect/* Selects row span of the input array: arr(start_row:delta_row:end_row,:)    (end_row is not included into the span). */CVAPI(CvMat*) cvGetRows( const CvArr* arr, CvMat* submat,                        int start_row, int end_row,                        int delta_row CV_DEFAULT(1));CV_INLINE  CvMat*  cvGetRow( const CvArr* arr, CvMat* submat, int row ){    return cvGetRows( arr, submat, row, row + 1, 1 );}/* Selects column span of the input array: arr(:,start_col:end_col)   (end_col is not included into the span) */CVAPI(CvMat*) cvGetCols( const CvArr* arr, CvMat* submat,                        int start_col, int end_col );CV_INLINE  CvMat*  cvGetCol( const CvArr* arr, CvMat* submat, int col ){    return cvGetCols( arr, submat, col, col + 1 );}/* Select a diagonal of the input array.   (diag = 0 means the main diagonal, >0 means a diagonal above the main one,   <0 - below the main one).   The diagonal will be represented as a column (nx1 matrix). */CVAPI(CvMat*) cvGetDiag( const CvArr* arr, CvMat* submat,                            int diag CV_DEFAULT(0));/* low-level scalar <-> raw data conversion functions */CVAPI(void) cvScalarToRawData( const CvScalar* scalar, void* data, int type,                              int extend_to_12 CV_DEFAULT(0) );CVAPI(void) cvRawDataToScalar( const void* data, int type, CvScalar* scalar );/* Allocates and initializes CvMatND header */CVAPI(CvMatND*)  cvCreateMatNDHeader( int dims, const int* sizes, int type );/* Allocates and initializes CvMatND header and allocates data */CVAPI(CvMatND*)  cvCreateMatND( int dims, const int* sizes, int type );/* Initializes preallocated CvMatND header */CVAPI(CvMatND*)  cvInitMatNDHeader( CvMatND* mat, int dims, const int* sizes,                                    int type, void* data CV_DEFAULT(NULL) );/* Releases CvMatND */CV_INLINE  void  cvReleaseMatND( CvMatND** mat ){    cvReleaseMat( (CvMat**)mat );}/* Creates a copy of CvMatND (except, may be, steps) */CVAPI(CvMatND*) cvCloneMatND( const CvMatND* mat );/* Allocates and initializes CvSparseMat header and allocates data */CVAPI(CvSparseMat*)  cvCreateSparseMat( int dims, const int* sizes, int type );/* Releases CvSparseMat */CVAPI(void)  cvReleaseSparseMat( CvSparseMat** mat );/* Creates a copy of CvSparseMat (except, may be, zero items) */CVAPI(CvSparseMat*) cvCloneSparseMat( const CvSparseMat* mat );/* Initializes sparse array iterator   (returns the first node or NULL if the array is empty) */CVAPI(CvSparseNode*) cvInitSparseMatIterator( const CvSparseMat* mat,                                              CvSparseMatIterator* mat_iterator );// returns next sparse array node (or NULL if there is no more nodes)CV_INLINE CvSparseNode* cvGetNextSparseNode( CvSparseMatIterator* mat_iterator ){    if( mat_iterator->node->next )        return mat_iterator->node = mat_iterator->node->next;    else    {        int idx;        for( idx = ++mat_iterator->curidx; idx < mat_iterator->mat->hashsize; idx++ )        {            CvSparseNode* node = (CvSparseNode*)mat_iterator->mat->hashtable[idx];            if( node )            {                mat_iterator->curidx = idx;                return mat_iterator->node = node;            }        }        return NULL;    }}/**************** matrix iterator: used for n-ary operations on dense arrays *********/#define CV_MAX_ARR 10typedef struct CvNArrayIterator{    int count; /* number of arrays */    int dims; /* number of dimensions to iterate */    CvSize size; /* maximal common linear size: { width = size, height = 1 } */    uchar* ptr[CV_MAX_ARR]; /* pointers to the array slices */    int stack[CV_MAX_DIM]; /* for internal use */    CvMatND* hdr[CV_MAX_ARR]; /* pointers to the headers of the                                 matrices that are processed */}CvNArrayIterator;#define CV_NO_DEPTH_CHECK     1#define CV_NO_CN_CHECK        2#define CV_NO_SIZE_CHECK      4/* initializes iterator that traverses through several arrays simulteneously   (the function together with cvNextArraySlice is used for    N-ari element-wise operations) */CVAPI(int) cvInitNArrayIterator( int count, CvArr** arrs,                                 const CvArr* mask, CvMatND* stubs,                                 CvNArrayIterator* array_iterator,                                 int flags CV_DEFAULT(0) );/* returns zero value if iteration is finished, non-zero (slice length) otherwise */CVAPI(int) cvNextNArraySlice( CvNArrayIterator* array_iterator );

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
成人免费毛片a| 国产精品女同一区二区三区| 国产欧美日韩在线视频| 国产精品美女久久久久aⅴ| 日韩av网站免费在线| 91色在线porny| 久久久精品2019中文字幕之3| 一片黄亚洲嫩模| 岛国一区二区三区| 久久精品欧美日韩| 麻豆国产欧美一区二区三区| 欧美日韩免费一区二区三区| 国产精品免费看片| 成人精品一区二区三区中文字幕| 日韩欧美电影一区| 麻豆免费精品视频| 欧美一区二区三区日韩视频| 亚洲国产视频a| 欧洲色大大久久| 亚洲欧美一区二区三区久本道91| 成人免费高清视频在线观看| 久久免费的精品国产v∧| 精品中文字幕一区二区| 日韩欧美高清在线| 狠狠色综合色综合网络| 精品奇米国产一区二区三区| 久久99久久99| 精品粉嫩aⅴ一区二区三区四区| 视频精品一区二区| 日韩丝袜情趣美女图片| 免费在线看成人av| 精品国内二区三区| 国产成人精品影视| 自拍av一区二区三区| 91在线视频18| 亚洲成av人影院| 欧美精品三级在线观看| 日本美女视频一区二区| 欧美一区二区女人| 国产成人精品影视| 亚洲欧美一区二区三区国产精品| 在线日韩国产精品| 日本不卡123| 久久久精品2019中文字幕之3| av激情综合网| 亚洲国产精品一区二区久久 | 石原莉奈在线亚洲二区| 在线不卡一区二区| 九九热在线视频观看这里只有精品| 精品久久国产字幕高潮| 成人精品视频一区二区三区| 亚洲三级在线播放| 91精品国产91热久久久做人人| 久久精品国产久精国产| 国产精品污污网站在线观看| 色婷婷综合激情| 麻豆成人久久精品二区三区小说| 久久欧美一区二区| 日韩精品一区国产麻豆| 激情深爱一区二区| 亚洲人精品午夜| 555www色欧美视频| 国产成人av福利| 亚洲国产精品一区二区www| 精品欧美一区二区久久| 成人激情开心网| 日韩精品电影在线| 国产精品卡一卡二卡三| 欧美日韩午夜在线| 国产精品12区| 视频一区在线视频| 亚洲欧美国产高清| 精品成人免费观看| 欧美视频在线播放| 不卡一区在线观看| 久久精品国产秦先生| 一区二区三区.www| 欧美福利电影网| 91亚洲永久精品| 国产曰批免费观看久久久| 亚洲自拍偷拍欧美| 国产精品视频免费| 精品久久人人做人人爰| 精品视频999| 色婷婷国产精品久久包臀| 国产一区二区三区不卡在线观看 | 精品无人码麻豆乱码1区2区| 亚洲一区二区影院| 国产精品三级av| 久久精品一二三| 日韩精品一区二区三区四区| 欧美色电影在线| 91福利精品第一导航| 不卡视频一二三四| 丁香婷婷综合激情五月色| 久久99国产精品久久99| 日韩精品五月天| 亚洲福利一区二区| 亚洲亚洲精品在线观看| 亚洲欧美视频在线观看| 国产精品网站在线播放| 久久久久久久久久久久电影| 精品国产91久久久久久久妲己| 制服视频三区第一页精品| 欧美吞精做爰啪啪高潮| 色94色欧美sute亚洲13| 99精品视频在线观看| 不卡av免费在线观看| 成人av电影免费观看| 成人天堂资源www在线| 成人中文字幕电影| aaa欧美大片| 色综合久久综合网97色综合| gogogo免费视频观看亚洲一| 99久久夜色精品国产网站| 99久久精品免费看国产免费软件| 91在线视频18| 欧美在线三级电影| 欧美日韩亚洲不卡| 91麻豆精品国产91久久久久久| 日韩三级高清在线| 久久品道一品道久久精品| 亚洲国产精品成人综合| 中文字幕亚洲精品在线观看| 亚洲精品高清视频在线观看| 一区二区三区加勒比av| 午夜精品成人在线视频| 久国产精品韩国三级视频| 国产精品一二三四| 99精品久久久久久| 精品视频一区三区九区| 日韩精品一区二区三区在线观看 | 国产精品久久久久久久久免费樱桃| 欧美激情综合五月色丁香| 亚洲视频你懂的| 亚洲成人免费在线| 国产资源在线一区| 色综合天天综合在线视频| 欧美高清性hdvideosex| 欧美精品一区二区三区蜜桃视频| 国产无人区一区二区三区| 亚洲精品福利视频网站| 久久电影网站中文字幕| 国产一区二区不卡在线| 色www精品视频在线观看| 欧美一区二区视频免费观看| 欧美激情艳妇裸体舞| 亚洲妇女屁股眼交7| 国产精品亚洲а∨天堂免在线| 91丨九色丨国产丨porny| 欧美一卡二卡三卡四卡| 中文字幕日韩一区二区| 麻豆精品久久久| 一本一道波多野结衣一区二区| 这里只有精品电影| 中文字幕永久在线不卡| 日本特黄久久久高潮| 不卡电影一区二区三区| 日韩亚洲欧美一区| 亚洲黄色小视频| 国产毛片一区二区| 91精品国产日韩91久久久久久| 《视频一区视频二区| 国内精品伊人久久久久av影院| 色哟哟一区二区在线观看| 精品sm捆绑视频| 肉丝袜脚交视频一区二区| av影院午夜一区| 久久先锋资源网| 三级不卡在线观看| 欧洲精品中文字幕| 一区视频在线播放| 国产成人久久精品77777最新版本| 在线成人小视频| 午夜免费欧美电影| 91高清在线观看| 中文字幕亚洲区| 成人精品免费视频| 久久综合九色综合久久久精品综合| 亚洲国产中文字幕在线视频综合 | 国产成人在线观看免费网站| 欧美电影一区二区三区| 亚洲一区二区三区在线| 91视频www| 亚洲理论在线观看| 久久国产精品第一页| 精品视频色一区| 亚洲18影院在线观看| 欧美亚洲免费在线一区| 亚洲品质自拍视频网站| av电影天堂一区二区在线观看| 久久嫩草精品久久久精品| 狠狠网亚洲精品| 久久综合99re88久久爱| 激情小说欧美图片| 亚洲精品一区二区三区在线观看| 三级亚洲高清视频| 日韩欧美成人一区| 韩国毛片一区二区三区| 久久久久综合网|