On Tue, 30 Sep 2003 03:51:17 +0000 "Yi-Yu Chou" <[EMAIL PROTECTED]> wrote:
> Dear all, > > I want to use python as my GUI to load a 3D volume(vtkImageData), > and use a pointer to pass this image data to my own C++ class. > My question is I don't know how to communicate between python and C++. > Is there any example that I can start from ? > Thanks a lot !!!!!! > > Yi-Yu > VTK has its own Python extensions that can be used with PyQt (I have fixed a few bugs in those, but I do not know if those fixes are in the newest versions of VTK). So, try to install the python Vtk extensions and check if http://gerard.vermeulen.free.fr/QVTKRenderWindowInteractor.py is newer than what comes with Vtk. I do not use this stuff myself, but it has helped several persons. If you are running Windows and have a mathematical/scientific background you might want to check http://www.enthought.com/python. It has Vtk and tons of other stuff built in (also Vtk oriented). You can use it with PyQt if you take the QVTKRenderWindowInteractor.py widget from my site. IMO, if you really want to wrap C++ Vtk classes, you are better off using the Vtk-wrapper tools and combine Vtk and Qt at the Python level. Gerard _______________________________________________ PyKDE mailing list [EMAIL PROTECTED] http://mats.imk.fraunhofer.de/mailman/listinfo/pykde
