1 #include <visp3/ustk_core/usConfig.h>
3 #if defined(USTK_HAVE_VTK_QT) && defined(USTK_HAVE_ELASTOGRAPHY) && defined(USTK_HAVE_GRABBER)
5 #include <QApplication>
6 #include <visp3/ustk_gui/usElastographyMainWindow.h>
8 int main(
int argc,
char **argv)
11 QApplication app(argc, argv);
13 usElastographyMainWindow *window =
new usElastographyMainWindow;
14 app.setActiveWindow(window);
20 int main() { std::cout <<
"Install vtk with qt4 or qt5 support to run this tutorial." << std::endl; }