the source. I have blogged in more detail here:
http://learnwithhelvin.blogspot.com/2009/09/embedding-vtk-into-pyqt-gui.
My VTK stuff are now displayed in my GUI! =D
Welcome to ask, if my blog is not detailed enough. I just wasn't
bothered to put my entire file on there.
Helvin
--
On 2009-07-26 07:04, Helvin wrote:
C:\Qt\VTKbin7\Wrapping\Python>python setup.py install
Traceback (most recent call last):
File "setup.py", line 138, in
raise "ERROR: Must specify BUILD_TYPE= on command
line."
TypeError: exceptions must be classes or instances, not str
Is it just a sm
On Jul 24, 5:03 am, Robert Kern wrote:
> On 2009-07-23 03:55, Helvin wrote:
>
> > I believe I now have vtkpython.exe. However, my 'import vtk' statement
> > in my python code is not working. The error says something like "no
> > module named vtk".
> > Where do I find modules for vtk inpyqt? Do the
On 2009-07-23 03:55, Helvin wrote:
I believe I now have vtkpython.exe. However, my 'import vtk' statement
in my python code is not working. The error says something like "no
module named vtk".
Where do I find modules for vtk in pyqt? Do they exist?
There are no VTK modules in PyQt itself. The P
I believe I now have vtkpython.exe. However, my 'import vtk' statement
in my python code is not working. The error says something like "no
module named vtk".
Where do I find modules for vtk in pyqt? Do they exist?
They must, right? Because there are people using vtk in pyqt? Or do I
have to use Op
On Jul 10, 3:54 am, Robert Kern wrote:
> On 2009-07-09 01:27, Helvin wrote:
>
>
>
>
>
> > On Jul 9, 11:29 am, Robert Kern wrote:
> >> On 2009-07-08 18:10, Helvin wrote:
>
> >>> Thanks for the fast replies! I will look into how to use VTK now.
> >>> Where would I find VTK's explicit support for Py
On 2009-07-09 01:27, Helvin wrote:
On Jul 9, 11:29 am, Robert Kern wrote:
On 2009-07-08 18:10, Helvin wrote:
Thanks for the fast replies! I will look into how to use VTK now.
Where would I find VTK's explicit support for PyQt?
Wrapping/Python/vtk/qt4/ in the VTK sources.
Because I have ins
On Jul 9, 6:27 pm, Helvin wrote:
> On Jul 9, 11:29 am, Robert Kern wrote:
>
>
>
>
>
> > On 2009-07-08 18:10, Helvin wrote:
>
> > > Thanks for the fast replies! I will look into how to use VTK now.
> > > Where would I find VTK's explicit support for PyQt?
>
> > Wrapping/Python/vtk/qt4/ in the VTK
On Jul 9, 11:29 am, Robert Kern wrote:
> On 2009-07-08 18:10, Helvin wrote:
>
> > Thanks for the fast replies! I will look into how to use VTK now.
> > Where would I find VTK's explicit support for PyQt?
>
> Wrapping/Python/vtk/qt4/ in the VTK sources.
>
> > Because I have installed VTK (using its
I use OpenInventor (Coin3d) which have a python binding called "pivy".
It works great.
http://pivy.coin3d.org/
Juan Pablo
2009/7/8 Helvin :
> Hi experts!
>
> I'm developing a GUI for a software using PyQT, and need 3D
> visualization. Should I use PyOpenGL or VTK?
> I understand that the PyQt pa
On 2009-07-08 18:10, Helvin wrote:
Thanks for the fast replies! I will look into how to use VTK now.
Where would I find VTK's explicit support for PyQt?
Wrapping/Python/vtk/qt4/ in the VTK sources.
Because I have installed VTK (using its installer) and pyVTK (using
its setup.py file), but ho
On Jul 8, 9:23 pm, Phil Thompson wrote:
> On Wed, 08 Jul 2009 11:11:51 +0200, "Diez B. Roggisch"
>
> wrote:
>
>
>
>
>
> > Helvin wrote:
>
> >> Hi experts!
>
> >> I'm developing a GUI for a software using PyQT, and need 3D
> >> visualization. Should I use PyOpenGL or VTK?
> >> I understand that th
Phil Thompson wrote:
> On Wed, 08 Jul 2009 11:11:51 +0200, "Diez B. Roggisch"
>
> wrote:
>> Helvin wrote:
>>
>>> Hi experts!
>>>
>>> I'm developing a GUI for a software using PyQT, and need 3D
>>> visualization. Should I use PyOpenGL or VTK?
>>> I understand that the PyQt package comes with a o
On Wed, 08 Jul 2009 11:11:51 +0200, "Diez B. Roggisch"
wrote:
> Helvin wrote:
>
>> Hi experts!
>>
>> I'm developing a GUI for a software using PyQT, and need 3D
>> visualization. Should I use PyOpenGL or VTK?
>> I understand that the PyQt package comes with a opengl module. What
>> else would I
Helvin wrote:
> Hi experts!
>
> I'm developing a GUI for a software using PyQT, and need 3D
> visualization. Should I use PyOpenGL or VTK?
> I understand that the PyQt package comes with a opengl module. What
> else would I need? I think I need to download opengl. but how? where?
> I have VTK and
Hi experts!
I'm developing a GUI for a software using PyQT, and need 3D
visualization. Should I use PyOpenGL or VTK?
I understand that the PyQt package comes with a opengl module. What
else would I need? I think I need to download opengl. but how? where?
I have VTK and pyVTK installed, but I don't
Hi, David! ^__^
Your advice makes me know the important thing of my question is the
way I get the source video.
I do this on the Windows XP operating system, and make these changes
on a live video stream. And I think you are right, the conversion
process takes most part of the time, and the r
On Sun Sep 30 09:10:40 CEST 2007, Kivilaya wrote:
>I read the method in the given link and learn a lot from it. I'll
> try to display the data inside a QWidget directly instead of the
> current way. But I still have a question, is there any way to make the
> displaying of RGB data in a QWidget
Hi, David, thank you for your help! ^__^
I read the method in the given link and learn a lot from it. I'll
try to display the data inside a QWidget directly instead of the
current way. But I still have a question, is there any way to make the
displaying of RGB data in a QWidget more quickly.
On Sat Sep 29 05:12:25 CEST 2007, kivilaya wrote:
> As required, I need to get a videostream from a camera, and process
> every frame to add some information on it, and then display the frame
> in a PyQt GUI.
> But I don't know how to display the videostream in the PyQt GUI
Hello, everyone, : )
I'm a beginner of pyqt, and recently I'm having a problem with it. I
hope someone could help me.
As required, I need to get a videostream from a camera, and process
every frame to add some information on it, and then display the frame
in a PyQt GUI.
But I
21 matches
Mail list logo