0

I have a project that uses quite a few opencv libs to do some image processing tasks. Now I need to build a Flash app for it. I read that Alchemy allows compiling c++ libs for Flash. I wonder if anyone has tried to build flash apps using opencv libs and dlls? Thanks.

user1030532
  • 573
  • 1
  • 5
  • 12
  • There is a project on github about this: [https://github.com/bonext/flash-opencv](https://github.com/bonext/flash-opencv) – michael Oct 21 '12 at 17:09

1 Answers1

0

You can compile C++ libs, but watch out for std::string. Also, you won't be able to use DLLs-- everything has to be statically compiled into one SWC.

Community
  • 1
  • 1
paleozogt
  • 6,393
  • 11
  • 51
  • 94
  • can you please provide some pointers about how to do this? I searched the web but couldn't find much on this topic. Thanks. – user1030532 Jan 25 '12 at 21:33