On Wed, Mar 2, 2011 at 3:29 AM, john smith &lt;<a href="mailto:mkitkinsightuser@gmail.com">mkitkinsightuser@gmail.com</a>&gt; wrote:<br>&gt;<br>&gt; Hello,<br>&gt;<br>&gt; 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>
&gt;<br>&gt; 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-&gt;GetOutput());<br> viewer.AddImage(....);</div><div>....<br>  viewer.Visualize();<br><br></div><div>You can download the &quot;ItkVtkGlue&quot; 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>