On Wed, Mar 2, 2011 at 3:29 AM, john smith <<a href="mailto:mkitkinsightuser@gmail.com">mkitkinsightuser@gmail.com</a>> wrote:<br>><br>> Hello,<br>><br>> I would like some information about QuickView. What exacly is QuickView? Is it an open source library like itk and vtk? Where could I find it and how to install it? Could I use an other tool in its place, such as a visualization toolkit or a simple writer object?<br>
><br>> Thanks<br> <br>QuickView is a small ITK-to-VTK interface that we wrote to allow an ITK image to be displayed on the screen without the 20+ lines of code that was previously necessary (using a itkImageToVTKImageFilter and then manually creating a vtkImageActor, vtkRenderer, vtkRenderWindow, vtkRenderWindowInteractor, and vtkInteractorStyleImage).<div>
<br></div><div>The syntax is as easy as:<br><br> QuickView viewer;<br> viewer.AddImage(reader->GetOutput());<br> viewer.AddImage(....);</div><div>....<br> viewer.Visualize();<br><br></div><div>You can download the "ItkVtkGlue" code which includes QuickView from here:</div>
<div><br><a href="http://www.itk.org/Wiki/ITK/Examples#ItkVtkGlue">http://www.itk.org/Wiki/ITK/Examples#ItkVtkGlue</a><br><br>David<br></div>