📄 cvcreatecontourtree.chf
字号:
CvContourTree* cvCreateContourTree(CvSeq* contour, CvMemStorage* storage, double threshold) {
void *fptr;
CvContourTree*retval;
fptr = dlsym(_Chcv_handle, "cvCreateContourTree_chdl");
if(fptr == NULL) {
fprintf(_stderr, "Error: %s(): dlsym(): %s\n", __func__, dlerror());
return NULL;
}
dlrunfun(fptr, &retval, cvCreateContourTree, contour, storage, threshold);
return retval;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -