0

我正在尝试使用 ffi 来调用 opencv 的 cvReleaseCapture,

无效 cvReleaseCapture(CvCapture** 捕获);

http://www.ai.rug.nl/vakinformatie/pas/content/Highgui/opencvref_highgui.htm

我努力了,

(定义释放捕获(c-lambda((指针(指针“CvCapture”)))无效“cvReleaseCapture”))

没用。

4

1 回答 1

1

(c-define-type CvCapture (pointer (pointer (struct "CvCapture"))))

(定义释放捕获 (c-lambda (CvCapture) void "cvReleaseCapture"))

于 2011-03-29T02:57:42.533 回答