[SOLVED] Undefined reference to QuickView even with ITKVtkGlue added in target_link_libraries

Good spotting! You may use ViewImage for 3D images, an example here. ViewImage.h can be found in the ITKVtkGlue module as well.

// Change QuickView.h for itkViewImage.h
#include "itkViewImage.h"
...
reader->Update();
itk::ViewImage<ImageType>::View(reader->GetOutput());
3 Likes