cvpolyline.chf

来自「Ch is an embeddable C/C++ interpreter fo」· CHF 代码 · 共 11 行

CHF
11
字号
void cvPolyLine(CvArr* img, CvPoint** pts, int* npts, int contours, int is_closed, CvScalar color, int thickness, int line_type, int shift) {
    void *fptr;

    fptr = dlsym(_Chcv_handle, "cvPolyLine_chdl");
    if(fptr == NULL) {
        fprintf(_stderr, "Error: %s(): dlsym(): %s\n", __func__,  dlerror());
        return;
    }
    dlrunfun(fptr, NULL, cvPolyLine, img, pts, npts, contours, is_closed, color, thickness, line_type, shift);
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?