cvinitundistortmap.chf

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

CHF
11
字号
void cvInitUndistortMap(CvMat* intrinsic_matrix, CvMat* distortion_coeffs, CvArr* mapx, CvArr* mapy) {
    void *fptr;

    fptr = dlsym(_Chcv_handle, "cvInitUndistortMap_chdl");
    if(fptr == NULL) {
        fprintf(_stderr, "Error: %s(): dlsym(): %s\n", __func__,  dlerror());
        return;
    }
    dlrunfun(fptr, NULL, cvInitUndistortMap, intrinsic_matrix, distortion_coeffs, mapx, mapy);
}

⌨️ 快捷键说明

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