Is there a way to use C++ code manipulating wx objects from wxPython?
I wrote a function in C++ that does an interpolated scale of a wxImage.
The visual improvement over the built-in scaling function is dramatic
enough that it's a requirement. However, I'm moving my work to python,
and the python translation of that function is a magnitude or two
slower.
I presume that since I'm dealing with a wxImage, it will not suffice to
simply follow the normal docs on extending python. However, wxImage is
the only wx class I use, and the rest of the code involves looping over
C arrays. Is there a way to do this? I'd appreciate any pushes in the
right direction.
Thanks!
···
--
Brian