From: ··············@hotmail.com
Subject: Common lisp video library
Date: 
Message-ID: <1117025442.377542.205750@g43g2000cwa.googlegroups.com>
Hi. I'd like to do some video processing/synthesis (not necessarily in
real-time). But I can't find any video libraries in cl. I would really
rather avoid doing anything in c, because I've been spoilt by lisp.
Does anyone have any advice? (I'm running openmcl on mac os x)
Thanks
rob c

From: ···········@mail.ru
Subject: Re: Common lisp video library
Date: 
Message-ID: <1117051542.914238.153270@g43g2000cwa.googlegroups.com>
We use bindings to OpenCV library for real-time object tracking in two
video streams. I am not sure that OpenCV works on mac os x, but it is
really suitable ('cause pure C allows to make bindings very fast, but
design of the library is object oriented) solution for video
processing/synthesis.

··············@hotmail.com wrote:
> Hi. I'd like to do some video processing/synthesis (not necessarily in
> real-time). But I can't find any video libraries in cl. I would really
> rather avoid doing anything in c, because I've been spoilt by lisp.
> Does anyone have any advice? (I'm running openmcl on mac os x)
> Thanks
> rob c
From: Paolo Amoroso
Subject: Re: Common lisp video library
Date: 
Message-ID: <8764x7phlp.fsf@plato.moon.paoloamoroso.it>
··············@hotmail.com writes:

> Hi. I'd like to do some video processing/synthesis (not necessarily in
> real-time). But I can't find any video libraries in cl. I would really
> rather avoid doing anything in c, because I've been spoilt by lisp.
> Does anyone have any advice? (I'm running openmcl on mac os x)

You may create Lisp bindings to C video processing libraries via FFI.
The best of both worlds.


Paolo
-- 
Why Lisp? http://lisp.tech.coop/RtL%20Highlight%20Film
Recommended Common Lisp libraries/tools (see also http://clrfi.alu.org):
- ASDF/ASDF-INSTALL: system building/installation
- CL-PPCRE: regular expressions
- UFFI: Foreign Function Interface