I try to use computer vision library with racket.<br><br>;; API<br>(define libhighgui (ffi-lib &quot;libhighgui&quot; &#39;(&quot;2.1&quot; &quot;4&quot;)))<br>(define-cpointer-type _cv-capture)<br><br>;; /* start capturing frames from camera: index = camera_index + domain_offset (CV_CAP_*) */<br>
;; CVAPI(CvCapture*) cvCreateCameraCapture( int index );<br>(define cvCreateCameraCapture <br>  (get-ffi-obj &quot;cvCreateCameraCapture&quot; libhighgui (_fun _int -&gt; (_or-null _cv-capture))))<br><br>;; /* stop capturing/reading and free resources */<br>
;; CVAPI(void) cvReleaseCapture( CvCapture** capture );<br>(define cvReleaseCapture <br>  (get-ffi-obj &quot;cvReleaseCapture&quot; libhighgui (_fun _pointer -&gt; _void)))<br><br>;;application <br>(define capture (cvCreateCameraCapture 0)<br>
<br>How I can release the capture (how to emulate CvCapture**  for cvReleaseCapture)?<br><br>Alex.<br><br><br>