[Pharo-project] Questions
What is the best way to include C++ projects like: 1) openCV 2) an OCR 3) CMU Sphinx <http://cmusphinx.org/> 4) AutoHotkey 5) a screen capture and how does one figure out how to locate documentation on existing tools like: 1) Audio Input and manipulation by FFT for audio object recognition 2) Video input and graphic object recognition 3) Picture input and graphic object recognition Is there an application guide? Many project packages seem harder to figure out than classes like Dictionary and OrderedCollection for some reason. Any suggestions? Thank you. Sincerely, Kirk Fraser Clatskanie, OR USA
Hi Kirk, I can't really answer your questions but I can say a word about the OpenCV issue: you'll probably need to write a FFI binding. See for example: http://wiki.squeak.org/squeak/2426. I started writing one for OpenCV a few years ago when I was just learning smalltalk, but I dropped the project without making much progress. I can send you what I did if you're interested (and if I find the code), it could be a useful starting point I guess... Cheers, Richo On Sat, Aug 6, 2011 at 11:25 PM, Overcomer Man <overcomer.man@gmail.com>wrote:
What is the best way to include C++ projects like: 1) openCV 2) an OCR 3) CMU Sphinx <http://cmusphinx.org/> 4) AutoHotkey 5) a screen capture
and how does one figure out how to locate documentation on existing tools like: 1) Audio Input and manipulation by FFT for audio object recognition 2) Video input and graphic object recognition 3) Picture input and graphic object recognition
Is there an application guide? Many project packages seem harder to figure out than classes like Dictionary and OrderedCollection for some reason. Any suggestions? Thank you.
Sincerely, Kirk Fraser Clatskanie, OR USA
As Martin said, for C libraries you can use FFI. But if the libraries are in C++ .... mmmm I don't know. On Sun, Aug 7, 2011 at 5:00 AM, Ricardo Moran <richi.moran@gmail.com> wrote:
Hi Kirk,
I can't really answer your questions but I can say a word about the OpenCV issue: you'll probably need to write a FFI binding. See for example: http://wiki.squeak.org/squeak/2426. I started writing one for OpenCV a few years ago when I was just learning smalltalk, but I dropped the project without making much progress. I can send you what I did if you're interested (and if I find the code), it could be a useful starting point I guess...
Cheers, Richo
On Sat, Aug 6, 2011 at 11:25 PM, Overcomer Man <overcomer.man@gmail.com>wrote:
What is the best way to include C++ projects like: 1) openCV 2) an OCR 3) CMU Sphinx <http://cmusphinx.org/> 4) AutoHotkey 5) a screen capture
and how does one figure out how to locate documentation on existing tools like: 1) Audio Input and manipulation by FFT for audio object recognition 2) Video input and graphic object recognition 3) Picture input and graphic object recognition
Is there an application guide? Many project packages seem harder to figure out than classes like Dictionary and OrderedCollection for some reason. Any suggestions? Thank you.
Sincerely, Kirk Fraser Clatskanie, OR USA
-- Mariano http://marianopeck.wordpress.com
participants (3)
-
Mariano Martinez Peck -
Overcomer Man -
Ricardo Moran