icvgetcrosspiecedirect.chf
来自「Ch is an embeddable C/C++ interpreter fo」· CHF 代码 · 共 11 行
CHF
11 行
void icvGetCrossPieceDirect(CvPoint2D64d p_start, CvPoint2D64d p_end, double a, double b, double c, CvPoint2D64d *cross, int* result) {
void *fptr;
fptr = dlsym(_Chcv_handle, "icvGetCrossPieceDirect_chdl");
if(fptr == NULL) {
fprintf(_stderr, "Error: %s(): dlsym(): %s\n", __func__, dlerror());
return;
}
dlrunfun(fptr, NULL, icvGetCrossPieceDirect, p_start, p_end, a, b, c, cross, result);
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?