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

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

?? cxcore.h

?? 將OpenCV移植到DSP上
?? H
?? 第 1 頁 / 共 5 頁
字號:
/* Changes default size (granularity) of sequence blocks.   The default size is ~1Kbyte */CVAPI(void)  cvSetSeqBlockSize( CvSeq* seq, int delta_elems );/* Adds new element to the end of sequence. Returns pointer to the element */CVAPI(char*)  cvSeqPush( CvSeq* seq, void* element CV_DEFAULT(NULL));/* Adds new element to the beginning of sequence. Returns pointer to it */CVAPI(char*)  cvSeqPushFront( CvSeq* seq, void* element CV_DEFAULT(NULL));/* Removes the last element from sequence and optionally saves it */CVAPI(void)  cvSeqPop( CvSeq* seq, void* element CV_DEFAULT(NULL));/* Removes the first element from sequence and optioanally saves it */CVAPI(void)  cvSeqPopFront( CvSeq* seq, void* element CV_DEFAULT(NULL));#define CV_FRONT 1#define CV_BACK 0/* Adds several new elements to the end of sequence */CVAPI(void)  cvSeqPushMulti( CvSeq* seq, void* elements,                             int count, int in_front CV_DEFAULT(0) );/* Removes several elements from the end of sequence and optionally saves them */CVAPI(void)  cvSeqPopMulti( CvSeq* seq, void* elements,                            int count, int in_front CV_DEFAULT(0) );/* Inserts a new element in the middle of sequence.   cvSeqInsert(seq,0,elem) == cvSeqPushFront(seq,elem) */CVAPI(char*)  cvSeqInsert( CvSeq* seq, int before_index,                           void* element CV_DEFAULT(NULL));/* Removes specified sequence element */CVAPI(void)  cvSeqRemove( CvSeq* seq, int index );/* Removes all the elements from the sequence. The freed memory   can be reused later only by the same sequence unless cvClearMemStorage   or cvRestoreMemStoragePos is called */CVAPI(void)  cvClearSeq( CvSeq* seq );/* Retrives pointer to specified sequence element.   Negative indices are supported and mean counting from the end   (e.g -1 means the last sequence element) */CVAPI(char*)  cvGetSeqElem( const CvSeq* seq, int index );/* Calculates index of the specified sequence element.   Returns -1 if element does not belong to the sequence */CVAPI(int)  cvSeqElemIdx( const CvSeq* seq, const void* element,                         CvSeqBlock** block CV_DEFAULT(NULL) );/* Initializes sequence writer. The new elements will be added to the end of sequence */CVAPI(void)  cvStartAppendToSeq( CvSeq* seq, CvSeqWriter* writer );/* Combination of cvCreateSeq and cvStartAppendToSeq */CVAPI(void)  cvStartWriteSeq( int seq_flags, int header_size,                              int elem_size, CvMemStorage* storage,                              CvSeqWriter* writer );/* Closes sequence writer, updates sequence header and returns pointer   to the resultant sequence   (which may be useful if the sequence was created using cvStartWriteSeq))*/CVAPI(CvSeq*)  cvEndWriteSeq( CvSeqWriter* writer );/* Updates sequence header. May be useful to get access to some of previously   written elements via cvGetSeqElem or sequence reader */CVAPI(void)   cvFlushSeqWriter( CvSeqWriter* writer );/* Initializes sequence reader.   The sequence can be read in forward or backward direction */CVAPI(void) cvStartReadSeq( const CvSeq* seq, CvSeqReader* reader,                           int reverse CV_DEFAULT(0) );/* Returns current sequence reader position (currently observed sequence element) */CVAPI(int)  cvGetSeqReaderPos( CvSeqReader* reader );/* Changes sequence reader position. It may seek to an absolute or   to relative to the current position */CVAPI(void)   cvSetSeqReaderPos( CvSeqReader* reader, int index,                                 int is_relative CV_DEFAULT(0));/* Copies sequence content to a continuous piece of memory */CVAPI(void*)  cvCvtSeqToArray( const CvSeq* seq, void* elements,                               CvSlice slice CV_DEFAULT(CV_WHOLE_SEQ) );/* Creates sequence header for array.   After that all the operations on sequences that do not alter the content   can be applied to the resultant sequence */CVAPI(CvSeq*) cvMakeSeqHeaderForArray( int seq_type, int header_size,                                       int elem_size, void* elements, int total,                                       CvSeq* seq, CvSeqBlock* block );/* Extracts sequence slice (with or without copying sequence elements) */CVAPI(CvSeq*) cvSeqSlice( const CvSeq* seq, CvSlice slice,                         CvMemStorage* storage CV_DEFAULT(NULL),                         int copy_data CV_DEFAULT(0));CV_INLINE CvSeq* cvCloneSeq( const CvSeq* seq, CvMemStorage* storage CV_DEFAULT(NULL)){    return cvSeqSlice( seq, CV_WHOLE_SEQ, storage, 1 );}/* Removes sequence slice */CVAPI(void)  cvSeqRemoveSlice( CvSeq* seq, CvSlice slice );/* Inserts a sequence or array into another sequence */CVAPI(void)  cvSeqInsertSlice( CvSeq* seq, int before_index, const CvArr* from_arr );/* a < b ? -1 : a > b ? 1 : 0 */typedef int (CV_CDECL* CvCmpFunc)(const void* a, const void* b, void* userdata );/* Sorts sequence in-place given element comparison function */CVAPI(void) cvSeqSort( CvSeq* seq, CvCmpFunc func, void* userdata CV_DEFAULT(NULL) );/* Finds element in a [sorted] sequence */CVAPI(char*) cvSeqSearch( CvSeq* seq, const void* elem, CvCmpFunc func,                          int is_sorted, int* elem_idx,                          void* userdata CV_DEFAULT(NULL) );/* Reverses order of sequence elements in-place */CVAPI(void) cvSeqInvert( CvSeq* seq );/* Splits sequence into one or more equivalence classes using the specified criteria */CVAPI(int)  cvSeqPartition( const CvSeq* seq, CvMemStorage* storage,                            CvSeq** labels, CvCmpFunc is_equal, void* userdata );/************ Internal sequence functions ************/CVAPI(void)  cvChangeSeqBlock( void* reader, int direction );CVAPI(void)  cvCreateSeqBlock( CvSeqWriter* writer );/* Creates a new set */CVAPI(CvSet*)  cvCreateSet( int set_flags, int header_size,                            int elem_size, CvMemStorage* storage );/* Adds new element to the set and returns pointer to it */CVAPI(int)  cvSetAdd( CvSet* set_header, CvSetElem* elem CV_DEFAULT(NULL),                      CvSetElem** inserted_elem CV_DEFAULT(NULL) );/* Fast variant of cvSetAdd */CV_INLINE  CvSetElem* cvSetNew( CvSet* set_header ){    CvSetElem* elem = set_header->free_elems;    if( elem )    {        set_header->free_elems = elem->next_free;        elem->flags = elem->flags & CV_SET_ELEM_IDX_MASK;        set_header->active_count++;    }    else        cvSetAdd( set_header, NULL, (CvSetElem**)&elem );    return elem;}/* Removes set element given its pointer */CV_INLINE  void cvSetRemoveByPtr( CvSet* set_header, void* elem ){    CvSetElem* _elem = (CvSetElem*)elem;    assert( _elem->flags >= 0 /*&& (elem->flags & CV_SET_ELEM_IDX_MASK) < set_header->total*/ );    _elem->next_free = set_header->free_elems;    _elem->flags = (_elem->flags & CV_SET_ELEM_IDX_MASK) | CV_SET_ELEM_FREE_FLAG;    set_header->free_elems = _elem;    set_header->active_count--;}/* Removes element from the set by its index  */CVAPI(void)   cvSetRemove( CvSet* set_header, int index );/* Returns a set element by index. If the element doesn't belong to the set,   NULL is returned */CV_INLINE CvSetElem* cvGetSetElem( const CvSet* set_header, int index ){    CvSetElem* elem = (CvSetElem*)cvGetSeqElem( (CvSeq*)set_header, index );    return elem && CV_IS_SET_ELEM( elem ) ? elem : 0;}/* Removes all the elements from the set */CVAPI(void)  cvClearSet( CvSet* set_header );/* Creates new graph */CVAPI(CvGraph*)  cvCreateGraph( int graph_flags, int header_size,                                int vtx_size, int edge_size,                                CvMemStorage* storage );/* Adds new vertex to the graph */CVAPI(int)  cvGraphAddVtx( CvGraph* graph, const CvGraphVtx* vtx CV_DEFAULT(NULL),                           CvGraphVtx** inserted_vtx CV_DEFAULT(NULL) );/* Removes vertex from the graph together with all incident edges */CVAPI(int)  cvGraphRemoveVtx( CvGraph* graph, int index );CVAPI(int)  cvGraphRemoveVtxByPtr( CvGraph* graph, CvGraphVtx* vtx );/* Link two vertices specifed by indices or pointers if they   are not connected or return pointer to already existing edge   connecting the vertices.   Functions return 1 if a new edge was created, 0 otherwise */CVAPI(int)  cvGraphAddEdge( CvGraph* graph,                            int start_idx, int end_idx,                            const CvGraphEdge* edge CV_DEFAULT(NULL),                            CvGraphEdge** inserted_edge CV_DEFAULT(NULL) );CVAPI(int)  cvGraphAddEdgeByPtr( CvGraph* graph,                               CvGraphVtx* start_vtx, CvGraphVtx* end_vtx,                               const CvGraphEdge* edge CV_DEFAULT(NULL),                               CvGraphEdge** inserted_edge CV_DEFAULT(NULL) );/* Remove edge connecting two vertices */CVAPI(void)  cvGraphRemoveEdge( CvGraph* graph, int start_idx, int end_idx );CVAPI(void)  cvGraphRemoveEdgeByPtr( CvGraph* graph, CvGraphVtx* start_vtx,                                     CvGraphVtx* end_vtx );/* Find edge connecting two vertices */CVAPI(CvGraphEdge*)  cvFindGraphEdge( const CvGraph* graph, int start_idx, int end_idx );CVAPI(CvGraphEdge*)  cvFindGraphEdgeByPtr( const CvGraph* graph,                                           const CvGraphVtx* start_vtx,                                           const CvGraphVtx* end_vtx );#define cvGraphFindEdge cvFindGraphEdge#define cvGraphFindEdgeByPtr cvFindGraphEdgeByPtr/* Remove all vertices and edges from the graph */CVAPI(void)  cvClearGraph( CvGraph* graph );/* Count number of edges incident to the vertex */CVAPI(int)  cvGraphVtxDegree( const CvGraph* graph, int vtx_idx );CVAPI(int)  cvGraphVtxDegreeByPtr( const CvGraph* graph, const CvGraphVtx* vtx );/* Retrieves graph vertex by given index */#define cvGetGraphVtx( graph, idx ) (CvGraphVtx*)cvGetSetElem((CvSet*)(graph), (idx))/* Retrieves index of a graph vertex given its pointer */#define cvGraphVtxIdx( graph, vtx ) ((vtx)->flags & CV_SET_ELEM_IDX_MASK)/* Retrieves index of a graph edge given its pointer */#define cvGraphEdgeIdx( graph, edge ) ((edge)->flags & CV_SET_ELEM_IDX_MASK)#define cvGraphGetVtxCount( graph ) ((graph)->active_count)#define cvGraphGetEdgeCount( graph ) ((graph)->edges->active_count)#define  CV_GRAPH_VERTEX        1#define  CV_GRAPH_TREE_EDGE     2#define  CV_GRAPH_BACK_EDGE     4#define  CV_GRAPH_FORWARD_EDGE  8#define  CV_GRAPH_CROSS_EDGE    16#define  CV_GRAPH_ANY_EDGE      30#define  CV_GRAPH_NEW_TREE      32#define  CV_GRAPH_BACKTRACKING  64#define  CV_GRAPH_OVER          -1#define  CV_GRAPH_ALL_ITEMS    -1/* flags for graph vertices and edges */#define  CV_GRAPH_ITEM_VISITED_FLAG  (1 << 30)#define  CV_IS_GRAPH_VERTEX_VISITED(vtx) \    (((CvGraphVtx*)(vtx))->flags & CV_GRAPH_ITEM_VISITED_FLAG)#define  CV_IS_GRAPH_EDGE_VISITED(edge) \    (((CvGraphEdge*)(edge))->flags & CV_GRAPH_ITEM_VISITED_FLAG)#define  CV_GRAPH_SEARCH_TREE_NODE_FLAG   (1 << 29)#define  CV_GRAPH_FORWARD_EDGE_FLAG       (1 << 28)typedef struct CvGraphScanner{    CvGraphVtx* vtx;       /* current graph vertex (or current edge origin) */    CvGraphVtx* dst;       /* current graph edge destination vertex */    CvGraphEdge* edge;     /* current edge */    CvGraph* graph;        /* the graph */    CvSeq*   stack;        /* the graph vertex stack */    int      index;        /* the lower bound of certainly visited vertices */    int      mask;         /* event mask */}CvGraphScanner;/* Creates new graph scanner. */CVAPI(CvGraphScanner*)  cvCreateGraphScanner( CvGraph* graph,                                             CvGraphVtx* vtx CV_DEFAULT(NULL),                                             int mask CV_DEFAULT(CV_GRAPH_ALL_ITEMS));/* Releases graph scanner. */CVAPI(void) cvReleaseGraphScanner( CvGraphScanner** scanner );/* Get next graph element */CVAPI(int)  cvNextGraphItem( CvGraphScanner* scanner );/* Creates a copy of graph */CVAPI(CvGraph*) cvCloneGraph( const CvGraph* graph, CvMemStorage* storage );/****************************************************************************************\*                                     Drawing                                            *\****************************************************************************************//****************************************************************************************\*       Drawing functions work with images/matrices of arbitrary type.                   **       For color images the channel order is BGR[A]                                     **       Antialiasing is supported only for 8-bit image now.                              **       All the functions include parameter color that means rgb value (that may be      **       constructed with CV_RGB macro) for color images and brightness                   *

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
精品一区二区三区在线观看| 成人高清伦理免费影院在线观看| 91福利资源站| 《视频一区视频二区| 粉嫩嫩av羞羞动漫久久久| 亚洲精品一区二区三区蜜桃下载| 久久成人久久爱| 精品久久国产字幕高潮| 国精品**一区二区三区在线蜜桃| 欧美一区二区三区日韩视频| 日韩一区欧美二区| 日韩视频在线一区二区| 激情久久五月天| 久久久99久久| 不卡欧美aaaaa| 亚洲免费在线视频| 欧美午夜宅男影院| 日韩国产精品久久久久久亚洲| 欧美理论在线播放| 美腿丝袜亚洲色图| 久久综合久久鬼色| 丁香激情综合国产| 亚洲丝袜另类动漫二区| 欧美主播一区二区三区| 日韩国产欧美三级| 久久亚洲一级片| 成人免费视频视频| 亚洲免费av高清| 欧美日韩视频在线第一区 | 久久久精品黄色| 春色校园综合激情亚洲| 国产精品你懂的| 日本韩国欧美在线| 日韩经典中文字幕一区| 欧美电视剧免费观看| 成人一级片网址| 亚洲精选一二三| 欧美美女bb生活片| 韩国精品在线观看| 中文字幕不卡在线播放| 91久久香蕉国产日韩欧美9色| 亚洲国产日韩精品| 精品免费国产一区二区三区四区| 国产白丝精品91爽爽久久| 亚洲视频一区二区在线观看| 欧美日韩国产首页在线观看| 美女视频黄 久久| 亚洲国产高清aⅴ视频| 欧洲精品中文字幕| 久久激情五月激情| ...av二区三区久久精品| 欧美日本精品一区二区三区| 精品亚洲porn| 亚洲激情欧美激情| 欧美成人aa大片| 91蝌蚪国产九色| 日本成人在线电影网| 国产片一区二区三区| 欧美色网站导航| 国产乱妇无码大片在线观看| 中文字幕在线观看一区| 欧美日韩大陆一区二区| 国产成人免费视频一区| 午夜a成v人精品| 亚洲国产岛国毛片在线| 欧美精品色一区二区三区| 国产精品羞羞答答xxdd | 国产精品午夜免费| 欧美日韩精品专区| 国产成人综合在线播放| 亚洲一区av在线| 久久精品视频在线看| 在线观看日韩一区| 国产福利视频一区二区三区| 亚洲成人黄色影院| 国产精品欧美一级免费| 欧美一区二区精品在线| 色综合久久66| 国产盗摄一区二区| 日韩av在线发布| 亚洲美女精品一区| 国产亚洲精品aa| 日韩视频一区二区三区| 一本久久a久久免费精品不卡| 国内外成人在线| 午夜不卡av免费| 亚洲欧美激情在线| 国产日产亚洲精品系列| 3d动漫精品啪啪一区二区竹菊| 91在线视频官网| 国产精品18久久久久久久久久久久| 亚洲第一福利一区| 18成人在线视频| 中文字幕欧美国产| 精品国产一区二区三区av性色| 欧美性大战久久久久久久蜜臀| 成人听书哪个软件好| 极品少妇一区二区三区精品视频 | 韩国一区二区视频| 午夜精品福利在线| 最好看的中文字幕久久| 久久精品综合网| 精品国产91乱码一区二区三区 | 99久久免费精品| 国产高清不卡二三区| 久久精品久久精品| 天堂久久一区二区三区| 亚洲视频免费在线观看| 欧美激情一二三区| 久久精品欧美一区二区三区不卡| 欧美一区二区三区不卡| 欧美日韩免费在线视频| 色婷婷久久久亚洲一区二区三区| 成人av免费网站| 国产福利视频一区二区三区| 黄色成人免费在线| 韩国毛片一区二区三区| 麻豆精品视频在线观看视频| 亚洲成av人片在www色猫咪| 亚洲另类色综合网站| 国产精品国产三级国产有无不卡 | 亚洲精品视频在线| 亚洲欧洲日产国码二区| 中文字幕乱码久久午夜不卡 | 日韩精品免费专区| 亚洲成人动漫av| 午夜成人在线视频| 日产精品久久久久久久性色| 天天综合网 天天综合色| 亚洲午夜精品在线| 亚洲r级在线视频| 亚洲成精国产精品女| 午夜视频久久久久久| 香蕉成人啪国产精品视频综合网| 亚洲国产综合人成综合网站| 亚洲香蕉伊在人在线观| 性做久久久久久久久| 日精品一区二区| 免费成人美女在线观看| 极品少妇xxxx精品少妇偷拍| 国产在线精品免费av| 国产精品一区二区视频| 国产aⅴ精品一区二区三区色成熟| 大白屁股一区二区视频| 99久久精品国产精品久久| 日本高清视频一区二区| 精品视频色一区| 日韩视频一区二区三区在线播放| 精品久久国产老人久久综合| 久久久不卡网国产精品二区| 国产欧美精品区一区二区三区 | 亚洲免费大片在线观看| 亚洲伊人色欲综合网| 日韩电影免费一区| 麻豆成人久久精品二区三区小说| 国产乱码一区二区三区| www.亚洲在线| 欧日韩精品视频| 日韩午夜激情av| 久久久99精品免费观看| 亚洲日穴在线视频| 日韩激情中文字幕| 国产麻豆视频精品| gogo大胆日本视频一区| 欧美日韩一本到| 欧美精品一区二区在线播放| 国产精品视频九色porn| 亚洲综合在线视频| 美女尤物国产一区| 成人精品国产免费网站| 欧美在线观看18| 精品国产一区二区三区av性色 | 偷拍自拍另类欧美| 国精产品一区一区三区mba桃花| 9i在线看片成人免费| 欧美日韩免费电影| 久久久久成人黄色影片| 夜夜嗨av一区二区三区网页| 久久av资源网| 91影视在线播放| 日韩免费观看2025年上映的电影| 国产精品对白交换视频| 日韩精品乱码免费| 不卡一区二区三区四区| 这里只有精品免费| 中文字幕一区二区三区四区| 日本欧美一区二区在线观看| 成人免费高清在线观看| 欧美高清hd18日本| 国产精品美女一区二区三区 | 9人人澡人人爽人人精品| 欧美肥大bbwbbw高潮| 中文字幕精品三区| 日韩精品欧美精品| 91在线你懂得| 337p粉嫩大胆色噜噜噜噜亚洲 | 久久精品国产亚洲a| 色综合久久精品| 久久久久久夜精品精品免费| 亚洲一区二区四区蜜桃|