On 11.11.2013 19:28, Joeish W wrote:
;; CvMat* cvGetCols(const CvArr* arr, CvMat* submat, int start_col, int
end_col)
(defcfun ("cvGetCols" get-cols) (:pointer (:struct cv-mat))
"Returns array column span."
(arr cv-arr)
(submat (:pointer (:struct cv-mat)))
(start-col :int)
(end-col :int))
What is the definition of cv-arr? Is this really correct, or should it be (:pointer cv-arr) as is indicated by the C type in the comment.
Regs, Stephan
