I\'ve wrapped a C++ library API using SWIG, which works well, but I\'m stumped by a \"bool &\" parameter.
I\'ve worked with OpenCV in combination with Android before and what I always tried to do is to use as few calls as possible between my native code and my java code. When I look at the OpenCV port for
I am using Swig to wrap a C interface that looks like this: int dosomething(char **str); where str is an output string.For example, from C its called like this:
I have about 20 simple C++ classes that represent various probability distributions.I would like to make these available in Python.What is the easiest way to do this?I don\'t mind having a program aut
I am trying to speed up my Numpy code and decided that I wanted to implement one particular function where my code spent most of the time in C.
I\'m getting an attribute error using swig to wrap a c function for use in python code.I\'ve got other functions alongside chap that work just fine, but some strange reason this one will not work :/
I am writing some SWIG/Python bindings for some C++ code. This is for what is called the Kinect Accidental API, I have the motor and led functions working. The callbacks to the Listener class which pa
I cannot reproduce the basic SWIG example on windows. My error is stated in the SWIG docs and I am sure that I do the 2 fixes they mention. For this error:
I am wrapping a C module with SWIG for Python. Is there any 开发者_开发问答way to turn all Python lists/tuples whose members are all of the same type (same kind of Swig object) to C arrays?Typemaps.Wh
I have wrapped some C code using SWIG to use it as a python library. Within this framework, some python code I have written calls a C function, which returns a string. However, for creating the strin