Questions tagged [qvtkwidget]

Use this tag for questions related to `qvtkwidget`, a class of the Visualization ToolKit (VTK) within the Qt Framework.

QVTKWidget displays a VTK window in a Qt window.

VTK (The Visualization ToolKit) is an software system for 3D computer graphics, image processing, and visualization. It consists of a C++ class library, and several interpreted interface layers including Tcl/Tk, Java, and Python.

Read more here.

110 questions
0
votes
2 answers

How to use QVTKWidget

I am working at a part of a big project. My goal is it to show a vtkRenderer in a QWidget. For that I wrote this class: CModelViewWidget::CModelViewWidget(QWidget *parent) : QWidget(parent) { _qVtkWidget = new QVTKWidget(this,Qt::Widget); …
liquid.pizza
  • 505
  • 1
  • 10
  • 26
0
votes
0 answers

Configure error vtk on vs2010, win7 64bit?

I have this error when configure vtk on visual studio 2010, win7-64bit The C compiler identification is unknow The CXX compiler identification is unknown Check if the system is big endian Searching 16 bit integer What's may be a problem?
-1
votes
1 answer

VTK Qt Widget throwing runtime errors when placed in a GUI

I'm trying to use the VTK widget with QT. I placed it in a .ui file, and even though I did nothing else to it, I get this error when I run the program: ERROR: In /build/buildd/vtk-5.8.0/Filtering/vtkImageData.cxx, line 1491 vtkImageData (0x14d0d40):…
Shadow0144
  • 123
  • 2
  • 9
-2
votes
3 answers

connection signal with slots in Qt with VTK (C++)

I have a Qt application with visualisation of a VTK data now what i want to do is to capture the point from thr VTK data (3 coordinates) and then launch a function from the MainWindow class (MainWindow::slotLeftButtonPressEvent). So i have a…
BobbyMontana
  • 49
  • 1
  • 4
1 2 3 4 5 6 7
8