icvgetcutpiece.chf

来自「chopencv-2.3.0-win opencv学习资料 有意者下」· CHF 代码 · 共 11 行

CHF
11
字号
void icvGetCutPiece(CvVect64d areaLineCoef1, CvVect64d areaLineCoef2, CvPoint2D64d epipole, CvSize imageSize, CvPoint2D64d* point11, CvPoint2D64d* point12, CvPoint2D64d* point21, CvPoint2D64d* point22, int* result) {
    void *fptr;

    fptr = dlsym(_Chcv_handle, "icvGetCutPiece_chdl");
    if(fptr == NULL) {
        fprintf(_stderr, "Error: %s(): dlsym(): %s\n", __func__,  dlerror());
        return;
    }
    dlrunfun(fptr, NULL, icvGetCutPiece, areaLineCoef1, areaLineCoef2, epipole, imageSize, point11, point12, point21, point22, result);
}

⌨️ 快捷键说明

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