[vtkusers] HELP VTK

Femi Ayinde femi_folorunso at yahoo.com
Thu Jan 8 03:46:30 EST 2009


Dear all,
Im quite new and unfamiliar with VTK but love to learn it. I have installed  CMake TCL and down loaded vtkdata-5.2.1. I have also use CMake to configure a my source code located at C:/Vtk. The Created c:/VTKBin contains some folders and files.

How do I use the VTK or proceed further
 femi folorunso


--- On Wed, 12/31/08, vtkusers-request at vtk.org <vtkusers-request at vtk.org> wrote:

> From: vtkusers-request at vtk.org <vtkusers-request at vtk.org>
> Subject: vtkusers Digest, Vol 56, Issue 31
> To: vtkusers at vtk.org
> Date: Wednesday, December 31, 2008, 9:00 AM
> Send vtkusers mailing list submissions to
> 	vtkusers at vtk.org
> 
> To subscribe or unsubscribe via the World Wide Web, visit
> 	http://www.vtk.org/mailman/listinfo/vtkusers
> or, via email, send a message with subject or body
> 'help' to
> 	vtkusers-request at vtk.org
> 
> You can reach the person managing the list at
> 	vtkusers-owner at vtk.org
> 
> When replying, please edit your Subject line so it is more
> specific
> than "Re: Contents of vtkusers digest..."
> 
> 
> Today's Topics:
> 
>    1. vtkLODActor (Eduardo - LNCC)
>    2. Re: Minimum Spanning Trees Re: Building
> VTK-BGL	algorithms
>       (using cmake) (Aytekin Vargun)
>    3. Re: Minimum Spanning Trees Re: Building
> VTK-BGL	algorithms
>       (using cmake) (Jeff Baumes)
>    4. different versions of VTK (liu)
>    5. Please help. (Femi Ayinde)
>    6. Re: Please help. (Elvis Dowson)
>    7. Re: Please help. (Elvis Dowson)
>    8. help: different interactor with
> different	interactorstyle in
>       every viewport in the renderwindow ( ? )
>    9. How to copy a vtkRenderer object (Shailender Kanwar)
>   10. Re: different versions of VTK (David Cole)
>   11. Re: Please help. (David Cole)
> 
> 
> ----------------------------------------------------------------------
> 
> Message: 1
> Date: Tue, 30 Dec 2008 17:31:20 -0200
> From: "Eduardo - LNCC" <camargo at lncc.br>
> Subject: [vtkusers] vtkLODActor
> To: vtkusers at vtk.org
> Message-ID:
> 	<846025900812301131k57c7cd2m4472b0f273ac2a65 at mail.gmail.com>
> Content-Type: text/plain; charset="iso-8859-1"
> 
> Hi,
> 
> I`m trying to use vtkLODActor class to show
> vtkContourFilter output but the
> image that represents low definition object isn`t show.
> Only high definition
> image. I`m using Visual Studio 2003 and Windows XP, my
> computer has a lot of
> memory (8GB) and Geforce 9600GT. vtkContourFilter input is
> a set of DICOM
> files (35 MB).
> 
> Anybody can help?
> Sorry for my english.
> 
> -- 
> Atenciosamente,
> 
> Eduardo Camargo
> Analista de Sistemas
> HeMoLab - http://hemolab.lncc.br/equipe/desenv/eduardo.htm
> Laborat?rio Nacional de Computa??o Cient?fica - LNCC
> -------------- next part --------------
> An HTML attachment was scrubbed...
> URL:
> <http://www.vtk.org/pipermail/vtkusers/attachments/20081230/c5903a38/attachment-0001.htm>
> 
> ------------------------------
> 
> Message: 2
> Date: Tue, 30 Dec 2008 14:54:58 -0500
> From: "Aytekin Vargun" <varguna at gmail.com>
> Subject: Re: [vtkusers] Minimum Spanning Trees Re: Building
> VTK-BGL
> 	algorithms (using cmake)
> To: vtkusers at vtk.org
> Message-ID:
> 	<fe9846b90812301154s779d46f2s4d7b14908aebfb5b at mail.gmail.com>
> Content-Type: text/plain; charset="iso-8859-1"
> 
> I am posting some more code here. I use this in order to
> display the trees I
> generate in 2D.
> The vertex array, ChannelColors, and Edge Weights are
> defined somewhere
> else. This code displays the bfs tree. But if I replace the
> code under LINE
> X below in order to display Kruskal's MST with:
> 
> view->AddRepresentationFromInput(mst->GetOutput());
> 
> I am getting the following error message:
> "Need input data to render labels (2)"
> 
> But I am not getting any error messages for the same labels
> while displaying
> the bfs tree.
> 
> I tried other ways of displaying too.
> Please help.
> Thanks alot.
> 
> ---- Display Code ---
> 
>    VTK_CREATE(vtkBoostBreadthFirstSearchTree, bfsTree);
>     bfsTree->SetInput(g);
> 
>     //Create a graph layout view
> 
>     vtkGraphLayoutView* view = vtkGraphLayoutView::New();
>     view->SetLayoutStrategyToPassThrough();
> 
>     //LINE X
> ----->   
> view->AddRepresentationFromInput(bfsTree->GetOutput());
>     view->SetVertexLabelArrayName("Label");
>     view->SetVertexLabelVisibility(true);
>    
> view->SetVertexColorArrayName("ChannelColors");
>     view->SetColorVertices(true);
>    
> view->SetEdgeColorArrayName("ChannelColors");
>     view->SetColorEdges(true);
>     //view->SetLayoutStrategyToSimple2D();
> 
>     VTK_CREATE(vtkRenderWindow, window);
>     window->SetSize(1000, 1000);
> 
>     view->SetupRenderWindow(window);
>     view->GetRenderer()->ResetCamera();
>     window->GetInteractor()->Start();
> 
> 
> 
> On Tue, Dec 30, 2008 at 10:42 AM, Aytekin Vargun
> <varguna at gmail.com> wrote:
> 
> > Thanks a lot Jeff,
> > It looks like I had several versions of VTK and this
> was causing problems.
> >
> > Now I have another problem. I am trying to use minimum
> spanning tree
> > programs. I first tried to use
> vtkBoostPrimMinimumSpanningTree but I am
> > getting the following error message:
> >
> > "The Prim minimal spanning tree filter is still
> under development...  Use
> > at your own risk."
> >
> > I checked where the error message is and then assumed
> that I was getting
> > this message since the implementation is not complete
> yet. But should I
> > still see some output on the screen?
> >
> > I then tried to use vtkKruskalMinimumSpanningTree
> which looks like in
> > better shape (whose output is a
> vtkSelectionAlgorithm). But I am failed to
> > display its output since its output is not a tree but
> a forest whereas
> > Prim's version produces a vtkTree . Then how can I
> display each subtree? One
> > way of doing this probably is to cast the result to a
> graph and then display
> > the resulting graph.
> >
> > I will greatly appreciate if anyone shares his/her
> experiences.
> > Thanks a lot.
> >
> > Here is a simplified piece of code I am trying to run:
> >
> >   vtkMutableUndirectedGraph*
> g=vtkMutableUndirectedGraph::New();
> >
> >     // This is used for finding minimum-spanning trees
> >     vtkIntArray* edgeWeightsArr = vtkIntArray::New();
> >    
> edgeWeightsArr->SetName("EdgeWeights");
> >
> >   VTK_CREATE(vtkRenderer, ren);
> >
> >   VTK_CREATE(vtkPoints, pts);
> >   g->AddVertex();
> >   pts->InsertNextPoint(0, 1, 0);
> >   g->AddVertex();
> >   pts->InsertNextPoint(0.5, 1, 0);
> >   g->AddVertex();
> >   pts->InsertNextPoint(0.25, 0.5, 0);
> >   g->AddVertex();
> >   pts->InsertNextPoint(0, 0, 0);
> >   g->AddVertex();
> >   pts->InsertNextPoint(0.5, 0, 0);
> >   g->AddVertex();
> >   pts->InsertNextPoint(1, 0, 0);
> >   g->AddVertex();
> >   pts->InsertNextPoint(0.75, 0.5, 0);
> >   g->SetPoints(pts);
> >
> >   g->AddEdge(0, 1);
> >   edgeWeightsArr->InsertNextValue(1);
> >   g->AddEdge(0, 2);
> >   edgeWeightsArr->InsertNextValue(1);
> >   g->AddEdge(1, 2);
> >   edgeWeightsArr->InsertNextValue(1);
> >   g->AddEdge(2, 3);
> >   edgeWeightsArr->InsertNextValue(1);
> >   g->AddEdge(2, 4);
> >   edgeWeightsArr->InsertNextValue(1);
> >   g->AddEdge(3, 4);
> >   edgeWeightsArr->InsertNextValue(1);
> >
> >   g->GetEdgeData()->AddArray(edgeWeightsArr);
> >
> >   //VTK_CREATE(vtkBoostPrimMinimumSpanningTree,mst);
> >   VTK_CREATE(vtkBoostKruskalMinimumSpanningTree,mst);
> >   mst->SetInput(g);
> >  
> mst->SetEdgeWeightArrayName("EdgeWeights");
> >   mst->Update();
> >
> >   // HOW TO DISPLAY
> >
> >
> >
> > On Tue, Dec 23, 2008 at 3:14 PM, Jeff Baumes
> <jeff.baumes at kitware.com>wrote:
> >
> >> > When I compile the sample file, I get the
> first error for the following
> >> > line:
> >> >   VTK_CREATE(vtkBoostBiconnectedComponents,
> biconn);
> >> >
> >> > (On CMake, I had set VTK_USE_BOOST set to ON
> when building VTK)
> >>
> >> First, make sure that your app is linking against
> vtkInfovis. If it
> >> is, it appears that the Boost algorithms are not
> being compiled into
> >> the vtkInfovis library you are using. Ensure that
> the vtkInfovis you
> >> are linking against is the one in the build where
> you turned
> >> VTK_USE_BOOST on. In Visual Studio, you can check
> your VTK build by
> >> looking at the source files under vtkInfovis. Make
> sure the vtkBoost*
> >> files are there.
> >>
> >> Jeff
> >>
> >
> >
> >
> > --
> > My web page:
> http://www.cs.rpi.edu/~vargua<http://www.cs.rpi.edu/%7Evargua>
> >
> 
> 
> 
> -- 
> My web page: http://www.cs.rpi.edu/~vargua
> -------------- next part --------------
> An HTML attachment was scrubbed...
> URL:
> <http://www.vtk.org/pipermail/vtkusers/attachments/20081230/05db46c8/attachment-0001.htm>
> 
> ------------------------------
> 
> Message: 3
> Date: Tue, 30 Dec 2008 17:52:06 -0500
> From: "Jeff Baumes"
> <jeff.baumes at kitware.com>
> Subject: Re: [vtkusers] Minimum Spanning Trees Re: Building
> VTK-BGL
> 	algorithms (using cmake)
> To: "Aytekin Vargun" <varguna at gmail.com>
> Cc: vtkusers at vtk.org
> Message-ID:
> 	<2137e33e0812301452u2a85e2d2qbda4915f4fa06550 at mail.gmail.com>
> Content-Type: text/plain; charset=ISO-8859-1
> 
> While BFS outputs a vtkTree, MST outputs a vtkSelection,
> which selects
> the edges that are in the MST. This selection itself cannot
> be
> displayed in a graph view, it is simply a list of edge
> indices. What
> you need to do is to use vtkExtractSelectedGraph, with the
> original
> graph as the first input and the vtkSelection output of MST
> as the
> second input. This will extract the MST from the graph. The
> output of
> vtkExtractSelectedGraph can be sent to the graph view.
> 
> Jeff
> 
> On Tue, Dec 30, 2008 at 2:54 PM, Aytekin Vargun
> <varguna at gmail.com> wrote:
> >
> > I am posting some more code here. I use this in order
> to display the trees I
> > generate in 2D.
> > The vertex array, ChannelColors, and Edge Weights are
> defined somewhere
> > else. This code displays the bfs tree. But if I
> replace the code under LINE
> > X below in order to display Kruskal's MST with:
> >
> >
> view->AddRepresentationFromInput(mst->GetOutput());
> >
> > I am getting the following error message:
> > "Need input data to render labels (2)"
> >
> > But I am not getting any error messages for the same
> labels while displaying
> > the bfs tree.
> >
> > I tried other ways of displaying too.
> > Please help.
> > Thanks alot.
> >
> > ---- Display Code ---
> >
> >    VTK_CREATE(vtkBoostBreadthFirstSearchTree,
> bfsTree);
> >     bfsTree->SetInput(g);
> >
> >     //Create a graph layout view
> >
> >     vtkGraphLayoutView* view =
> vtkGraphLayoutView::New();
> >     view->SetLayoutStrategyToPassThrough();
> >
> >     //LINE X
> > ----->   
> view->AddRepresentationFromInput(bfsTree->GetOutput());
> >    
> view->SetVertexLabelArrayName("Label");
> >     view->SetVertexLabelVisibility(true);
> >    
> view->SetVertexColorArrayName("ChannelColors");
> >     view->SetColorVertices(true);
> >    
> view->SetEdgeColorArrayName("ChannelColors");
> >     view->SetColorEdges(true);
> >     //view->SetLayoutStrategyToSimple2D();
> >
> >     VTK_CREATE(vtkRenderWindow, window);
> >     window->SetSize(1000, 1000);
> >
> >     view->SetupRenderWindow(window);
> >     view->GetRenderer()->ResetCamera();
> >     window->GetInteractor()->Start();
> >
> >
> >
> > On Tue, Dec 30, 2008 at 10:42 AM, Aytekin Vargun
> <varguna at gmail.com> wrote:
> >>
> >> Thanks a lot Jeff,
> >> It looks like I had several versions of VTK and
> this was causing problems.
> >>
> >> Now I have another problem. I am trying to use
> minimum spanning tree
> >> programs. I first tried to use
> vtkBoostPrimMinimumSpanningTree but I am
> >> getting the following error message:
> >>
> >> "The Prim minimal spanning tree filter is
> still under development...  Use
> >> at your own risk."
> >>
> >> I checked where the error message is and then
> assumed that I was getting
> >> this message since the implementation is not
> complete yet. But should I
> >> still see some output on the screen?
> >>
> >> I then tried to use vtkKruskalMinimumSpanningTree
> which looks like in
> >> better shape (whose output is a
> vtkSelectionAlgorithm). But I am failed to
> >> display its output since its output is not a tree
> but a forest whereas
> >> Prim's version produces a vtkTree . Then how
> can I display each subtree? One
> >> way of doing this probably is to cast the result
> to a graph and then display
> >> the resulting graph.
> >>
> >> I will greatly appreciate if anyone shares his/her
> experiences.
> >> Thanks a lot.
> >>
> >> Here is a simplified piece of code I am trying to
> run:
> >>
> >>   vtkMutableUndirectedGraph*
> g=vtkMutableUndirectedGraph::New();
> >>
> >>     // This is used for finding minimum-spanning
> trees
> >>     vtkIntArray* edgeWeightsArr =
> vtkIntArray::New();
> >>    
> edgeWeightsArr->SetName("EdgeWeights");
> >>
> >>   VTK_CREATE(vtkRenderer, ren);
> >>
> >>   VTK_CREATE(vtkPoints, pts);
> >>   g->AddVertex();
> >>   pts->InsertNextPoint(0, 1, 0);
> >>   g->AddVertex();
> >>   pts->InsertNextPoint(0.5, 1, 0);
> >>   g->AddVertex();
> >>   pts->InsertNextPoint(0.25, 0.5, 0);
> >>   g->AddVertex();
> >>   pts->InsertNextPoint(0, 0, 0);
> >>   g->AddVertex();
> >>   pts->InsertNextPoint(0.5, 0, 0);
> >>   g->AddVertex();
> >>   pts->InsertNextPoint(1, 0, 0);
> >>   g->AddVertex();
> >>   pts->InsertNextPoint(0.75, 0.5, 0);
> >>   g->SetPoints(pts);
> >>
> >>   g->AddEdge(0, 1);
> >>   edgeWeightsArr->InsertNextValue(1);
> >>   g->AddEdge(0, 2);
> >>   edgeWeightsArr->InsertNextValue(1);
> >>   g->AddEdge(1, 2);
> >>   edgeWeightsArr->InsertNextValue(1);
> >>   g->AddEdge(2, 3);
> >>   edgeWeightsArr->InsertNextValue(1);
> >>   g->AddEdge(2, 4);
> >>   edgeWeightsArr->InsertNextValue(1);
> >>   g->AddEdge(3, 4);
> >>   edgeWeightsArr->InsertNextValue(1);
> >>
> >>  
> g->GetEdgeData()->AddArray(edgeWeightsArr);
> >>
> >>  
> //VTK_CREATE(vtkBoostPrimMinimumSpanningTree,mst);
> >>  
> VTK_CREATE(vtkBoostKruskalMinimumSpanningTree,mst);
> >>   mst->SetInput(g);
> >>  
> mst->SetEdgeWeightArrayName("EdgeWeights");
> >>   mst->Update();
> >>
> >>   // HOW TO DISPLAY
> >>
> >>
> >>
> >> On Tue, Dec 23, 2008 at 3:14 PM, Jeff Baumes
> <jeff.baumes at kitware.com>
> >> wrote:
> >>>
> >>> > When I compile the sample file, I get the
> first error for the following
> >>> > line:
> >>> >  
> VTK_CREATE(vtkBoostBiconnectedComponents, biconn);
> >>> >
> >>> > (On CMake, I had set VTK_USE_BOOST set to
> ON when building VTK)
> >>>
> >>> First, make sure that your app is linking
> against vtkInfovis. If it
> >>> is, it appears that the Boost algorithms are
> not being compiled into
> >>> the vtkInfovis library you are using. Ensure
> that the vtkInfovis you
> >>> are linking against is the one in the build
> where you turned
> >>> VTK_USE_BOOST on. In Visual Studio, you can
> check your VTK build by
> >>> looking at the source files under vtkInfovis.
> Make sure the vtkBoost*
> >>> files are there.
> >>>
> >>> Jeff
> >>
> >>
> >>
> >> --
> >> My web page: http://www.cs.rpi.edu/~vargua
> >
> >
> >
> > --
> > My web page: http://www.cs.rpi.edu/~vargua
> >
> > _______________________________________________
> > This is the private VTK discussion list.
> > Please keep messages on-topic. Check the FAQ at:
> > http://www.vtk.org/Wiki/VTK_FAQ
> > Follow this link to subscribe/unsubscribe:
> > http://www.vtk.org/mailman/listinfo/vtkusers
> >
> >
> 
> 
> 
> -- 
> Jeff Baumes, Ph.D.
> R&D Engineer, Kitware Inc.
> (518) 371-3971 x132
> jeff.baumes at kitware.com
> 
> 
> ------------------------------
> 
> Message: 4
> Date: Wed, 31 Dec 2008 14:13:44 +0800
> From: "liu" <liuwenqing306 at gmail.com>
> Subject: [vtkusers] different versions of VTK
> To: <vtkusers at vtk.org>
> Message-ID:
> <000a01c96b0e$f8560170$1301a8c0 at X6X8E1B5440E0D>
> Content-Type: text/plain; charset="gb2312"
> 
> I've used VTK5.0.3 before. Recently, I tried to use the
> VTK5.2.0.  However, I can?t run my projects any more. There
> is no warning and error but it can?t run. There are messages
> such as ?Can not locate the program ?s entrance
> point?SetProgressText at vtkAlgorithm@UAEXPBD at Z in the dynamic
> link libraries vtkFiltering.dll ?.I have no idea what the
> reasons are. Before installing the VTK5.2.0, I deleted all
> the old VTK DLLs and copy the new DLLs to the system. But it
> doesn?t work. Could anyone tell me why and how to deal with
> the problems .Thank you very much.
> -------------- next part --------------
> An HTML attachment was scrubbed...
> URL:
> <http://www.vtk.org/pipermail/vtkusers/attachments/20081231/dea58e5e/attachment-0001.htm>
> 
> ------------------------------
> 
> Message: 5
> Date: Tue, 30 Dec 2008 22:15:33 -0800 (PST)
> From: Femi Ayinde <femi_folorunso at yahoo.com>
> Subject: [vtkusers] Please help.
> To: vtkusers at vtk.org
> Message-ID:
> <553311.61736.qm at web53810.mail.re2.yahoo.com>
> Content-Type: text/plain; charset=iso-8859-1
> 
> Dear Sir/Ma,
> I am completely new to VTK. I have a Vista based system and
> dont know how to get started. 
> 
> Please offer any assistance to me 
> 
> Regards
> 
> ?Femi
> --- On Tue, 12/30/08, vtkusers-request at vtk.org
> <vtkusers-request at vtk.org> wrote:
> 
> > From: vtkusers-request at vtk.org
> <vtkusers-request at vtk.org>
> > Subject: vtkusers Digest, Vol 56, Issue 30
> > To: vtkusers at vtk.org
> > Date: Tuesday, December 30, 2008, 9:00 AM
> > Send vtkusers mailing list submissions to
> > 	vtkusers at vtk.org
> > 
> > To subscribe or unsubscribe via the World Wide Web,
> visit
> > 	http://www.vtk.org/mailman/listinfo/vtkusers
> > or, via email, send a message with subject or body
> > 'help' to
> > 	vtkusers-request at vtk.org
> > 
> > You can reach the person managing the list at
> > 	vtkusers-owner at vtk.org
> > 
> > When replying, please edit your Subject line so it is
> more
> > specific
> > than "Re: Contents of vtkusers digest..."
> > 
> > 
> > Today's Topics:
> > 
> >    1. VTK 5.2.1 (David Cole)
> >    2. Re: VTK 5.2 Tag file? (David Cole)
> >    3. Minimum Spanning Trees Re: Building VTK-BGL
> > algorithms	(using
> >       cmake) (Aytekin Vargun)
> >    4. SplitExtent - Large ImageData (Paul Jhin)
> > 
> > 
> >
> ----------------------------------------------------------------------
> > 
> > Message: 1
> > Date: Mon, 29 Dec 2008 12:10:09 -0500
> > From: "David Cole"
> <david.cole at kitware.com>
> > Subject: [vtkusers] VTK 5.2.1
> > To: vtk-developers <vtk-developers at vtk.org>, vtk
> > <vtkusers at vtk.org>
> > Message-ID:
> >
> 	<f435c2c50812290910m5b59dadfnbcaae289d27a54d2 at mail.gmail.com>
> > Content-Type: text/plain;
> charset="iso-8859-1"
> > 
> > Dear VTK users and developers,
> > 
> > The VTK 5.2.1 patch release is now available for
> download
> > from the VTK
> > web site: http://www.vtk.org/get-software.php. The
> > following changes
> > are included in this release.
> > 
> > *changes from 5.2.0 to 5.2.1:*
> > 1) Fix Borland compile problem in
> vtkConvertSelection.cxx
> > 2) Fix links on main Doxygen page
> > 3) Eliminate compiler warnings in generated code
> > 4) Invoke EndInteractionEvent *after* the WidgetState
> is
> > changed
> > 5) Fix issue 7511: vtkSmoothPolyDataFilter crash
> > 6) Fix issue 7512: make vtkPlaneWidget sphere resizing
> > smoother
> > 7) Fix issue 7518: vtkDataReader memory errors
> > 8) Fix sharedforward with a space in the path. Thanks
> to
> > Brad King.
> > 9) Enable kwsys' SystemInfo
> > 10) Add install rules for vtkExportKit.cmake and
> > vtkKit.cmake.in
> > 11) Add install rules for vtkEncodeString and
> > vtkTestDriver.h
> > 12) Fix incorrect documentation tag file name
> > 13) Fix problem with passing null object to java
> wrapped
> > methods
> > 14) Get GL_MAX_TEXTURE_SIZE from OpenGL rather than
> using a
> > hard coded value
> > 15) Propagate render window size changes to the render
> > window interactor
> > 16) Fix issue 7638: ensure correct resource context
> when
> > switching OpenGL
> >       contexts on Windows
> > 17) Add missing WM_SETCURSOR handler to
> > vtkWin32OpenGLRenderWindow
> > 18) Improvements to FindMySQL.cmake
> > 19) Improve vtkAVIWriter: Allow programmatically
> setting
> > the compressor
> > 20) Improve vtkAVIWriter: Allow user to choose codec
> > 21) Fix crash: do not pass invalid parameters to
> strftime
> > 22) Add Tcl/Tk 8.6 support
> > 23) Fix issue 7887: numerical error in
> vtkContourValues
> > 24) Fix issue 7705: vtkfreetype compile problem on Mac
> > 25) Fix issue with compiling vtkOpenGLExtensionManager
> on
> > Solaris 10
> > 26) Implement GetBounds in
> > Widgets/vtkPolygonalHandleRepresentation3D
> > 27) Remove vtklibxml2 dependency on libhistory and
> > libreadline
> > 
> > *changes from 5.0.4 to 5.2.0:*
> > - Infovis kit
> > - Views kit
> > - New Widgets architecture and more than a dozen new
> > widgets
> > - New Utilities: freerange, verdict, libxml2, metaio,
> > sqlite
> > - Updated Utilities: freetype, zlib
> > - More than 300 new C++ classes
> > - More than 100 new C++ tests running on most
> dashboards
> > - Improvements to PLY file support
> > - Many bug fixes, including much improved Java
> wrapping
> > support
> > - Mac OS X-specific fixes:
> > -- Defaults to building using Cocoa instead of Carbon
> > -- Can now be compiled against the 10.5 SDK
> > -- Can now be built as a Universal Binary
> > -- Initial support for Resolution Independence in 10.5
> > 
> > We hope you enjoy this new release of VTK.
> > 
> > - David
> > -------------- next part --------------
> > An HTML attachment was scrubbed...
> > URL:
> >
> <http://www.vtk.org/pipermail/vtkusers/attachments/20081229/ed329651/attachment-0001.htm>
> > 
> > ------------------------------
> > 
> > Message: 2
> > Date: Mon, 29 Dec 2008 13:24:14 -0500
> > From: "David Cole"
> <david.cole at kitware.com>
> > Subject: Re: [vtkusers] VTK 5.2 Tag file?
> > To: "Peter F Bradshaw"
> <pfb at exadios.com>
> > Cc: VTK users <vtkusers at vtk.org>
> > Message-ID:
> >
> 	<f435c2c50812291024h24374b94x1ec140c1e5145ce0 at mail.gmail.com>
> > Content-Type: text/plain;
> charset="iso-8859-1"
> > 
> > With the new patch release for VTK 5.2.1, there is now
> a
> > documentation tag
> > file available at:
> > http://www.vtk.org/doc/release/5.2/vtk5.2.1.tag
> > 
> > Please try it out and let me know if you encounter any
> > problems using it.
> > 
> > Thanks,
> > David
> > 
> > 
> > On Tue, Oct 21, 2008 at 11:07 AM, David Cole
> > <david.cole at kitware.com> wrote:
> > 
> > > I've committed changes to CVS HEAD and the
> VTK-5-2
> > branch to make sure the
> > > documentation tag file name is correct w.r.t. the
> > version number of VTK.
> > > Doing that broke the *nightly* (CVS HEAD) doxygen
> > propagation script on Oct.
> > > 8, but tomorrow we should see the nightly
> > documentation updated properly
> > > again.
> > >
> > > Next time we do a patch release for VTK 5.2, I
> will
> > make sure we upload a
> > > tag file for it, too.
> > >
> > >
> > > Thanks,
> > > David
> > >
> > >
> > > On Wed, Sep 3, 2008 at 8:18 AM, Peter F Bradshaw
> > <pfb at exadios.com> wrote:
> > >
> > >> Hi David;
> > >>
> > >> On Wed, 3 Sep 2008, David Cole wrote:
> > >>
> > >> > No. There is no tag file on the server.
> > >> >
> > >> > In investigating the documentation
> creation
> > process.... it turns out
> > >> there
> > >> > is a tag file on the machine where
> doxygen
> > was run, but there are some
> > >> bits
> > >> > of the doc build process that need some
> > attention: it has old version
> > >> > numbers in it and is named
> > "vtk4.tag"... I will put it on my list to
> > >> make
> > >> > sure that next time we upload a patch
> release
> > there will be a correct
> > >> tag
> > >> > file with the docs.
> > >> >
> > >> > Sorry for the inconvenience,
> > >>
> > >> No worries, it is not a show stopper. Thanks.
> > >>
> > >> > David
> > >> >
> > >> >
> > >> > On Wed, Sep 3, 2008 at 3:12 AM, Peter F
> > Bradshaw <pfb at exadios.com>
> > >> wrote:
> > >> >
> > >> > > Hi;
> > >> > >
> > >> > > Is there a Doxygen Tag File
> associated
> > with the documentation at
> > >> > >
> http://www.vtk.org/doc/release/5.2/html/
> > ?
> > >> > >
> > >> > > Thanks.
> > >> > >
> > >> > > Cheers
> > >> > >
> > >>
> > >> Cheers
> > >>
> > >> --
> > >> Peter F Bradshaw: http://www.exadios.com
> (public
> > keys avaliable there).
> > >> Personal site: http://personal.exadios.com
> > >> "I love truth, and the way the
> government
> > still uses it occasionally to
> > >>  keep us guessing." - Sam Kekovich.
> > >>
> _______________________________________________
> > >> This is the private VTK discussion list.
> > >> Please keep messages on-topic. Check the FAQ
> at:
> > >> http://www.vtk.org/Wiki/VTK_FAQ
> > >> Follow this link to subscribe/unsubscribe:
> > >> http://www.vtk.org/mailman/listinfo/vtkusers
> > >>
> > >
> > >
> > -------------- next part --------------
> > An HTML attachment was scrubbed...
> > URL:
> >
> <http://www.vtk.org/pipermail/vtkusers/attachments/20081229/a706e366/attachment-0001.htm>
> > 
> > ------------------------------
> > 
> > Message: 3
> > Date: Tue, 30 Dec 2008 10:42:26 -0500
> > From: "Aytekin Vargun"
> <varguna at gmail.com>
> > Subject: [vtkusers] Minimum Spanning Trees Re:
> Building
> > VTK-BGL
> > 	algorithms	(using cmake)
> > To: "Jeff Baumes"
> <jeff.baumes at kitware.com>
> > Cc: vtkusers at vtk.org
> > Message-ID:
> >
> 	<fe9846b90812300742s7e434e63ge5e9901e6fa700a7 at mail.gmail.com>
> > Content-Type: text/plain;
> charset="iso-8859-1"
> > 
> > Thanks a lot Jeff,
> > It looks like I had several versions of VTK and this
> was
> > causing problems.
> > 
> > Now I have another problem. I am trying to use minimum
> > spanning tree
> > programs. I first tried to use
> > vtkBoostPrimMinimumSpanningTree but I am
> > getting the following error message:
> > 
> > "The Prim minimal spanning tree filter is still
> under
> > development...  Use at
> > your own risk."
> > 
> > I checked where the error message is and then assumed
> that
> > I was getting
> > this message since the implementation is not complete
> yet.
> > But should I
> > still see some output on the screen?
> > 
> > I then tried to use vtkKruskalMinimumSpanningTree
> which
> > looks like in better
> > shape (whose output is a vtkSelectionAlgorithm). But I
> am
> > failed to display
> > its output since its output is not a tree but a forest
> > whereas Prim's
> > version produces a vtkTree . Then how can I display
> each
> > subtree? One way of
> > doing this probably is to cast the result to a graph
> and
> > then display the
> > resulting graph.
> > 
> > I will greatly appreciate if anyone shares his/her
> > experiences.
> > Thanks a lot.
> > 
> > Here is a simplified piece of code I am trying to run:
> > 
> >   vtkMutableUndirectedGraph*
> > g=vtkMutableUndirectedGraph::New();
> > 
> >     // This is used for finding minimum-spanning trees
> >     vtkIntArray* edgeWeightsArr = vtkIntArray::New();
> >    
> edgeWeightsArr->SetName("EdgeWeights");
> > 
> >   VTK_CREATE(vtkRenderer, ren);
> > 
> >   VTK_CREATE(vtkPoints, pts);
> >   g->AddVertex();
> >   pts->InsertNextPoint(0, 1, 0);
> >   g->AddVertex();
> >   pts->InsertNextPoint(0.5, 1, 0);
> >   g->AddVertex();
> >   pts->InsertNextPoint(0.25, 0.5, 0);
> >   g->AddVertex();
> >   pts->InsertNextPoint(0, 0, 0);
> >   g->AddVertex();
> >   pts->InsertNextPoint(0.5, 0, 0);
> >   g->AddVertex();
> >   pts->InsertNextPoint(1, 0, 0);
> >   g->AddVertex();
> >   pts->InsertNextPoint(0.75, 0.5, 0);
> >   g->SetPoints(pts);
> > 
> >   g->AddEdge(0, 1);
> >   edgeWeightsArr->InsertNextValue(1);
> >   g->AddEdge(0, 2);
> >   edgeWeightsArr->InsertNextValue(1);
> >   g->AddEdge(1, 2);
> >   edgeWeightsArr->InsertNextValue(1);
> >   g->AddEdge(2, 3);
> >   edgeWeightsArr->InsertNextValue(1);
> >   g->AddEdge(2, 4);
> >   edgeWeightsArr->InsertNextValue(1);
> >   g->AddEdge(3, 4);
> >   edgeWeightsArr->InsertNextValue(1);
> > 
> >   g->GetEdgeData()->AddArray(edgeWeightsArr);
> > 
> >   //VTK_CREATE(vtkBoostPrimMinimumSpanningTree,mst);
> >   VTK_CREATE(vtkBoostKruskalMinimumSpanningTree,mst);
> >   mst->SetInput(g);
> >  
> mst->SetEdgeWeightArrayName("EdgeWeights");
> >   mst->Update();
> > 
> >   // HOW TO DISPLAY
> > 
> > 
> > 
> > On Tue, Dec 23, 2008 at 3:14 PM, Jeff Baumes
> > <jeff.baumes at kitware.com>wrote:
> > 
> > > > When I compile the sample file, I get the
> first
> > error for the following
> > > > line:
> > > >   VTK_CREATE(vtkBoostBiconnectedComponents,
> > biconn);
> > > >
> > > > (On CMake, I had set VTK_USE_BOOST set to ON
> when
> > building VTK)
> > >
> > > First, make sure that your app is linking against
> > vtkInfovis. If it
> > > is, it appears that the Boost algorithms are not
> being
> > compiled into
> > > the vtkInfovis library you are using. Ensure that
> the
> > vtkInfovis you
> > > are linking against is the one in the build where
> you
> > turned
> > > VTK_USE_BOOST on. In Visual Studio, you can check
> your
> > VTK build by
> > > looking at the source files under vtkInfovis.
> Make
> > sure the vtkBoost*
> > > files are there.
> > >
> > > Jeff
> > >
> > 
> > 
> > 
> > -- 
> > My web page: http://www.cs.rpi.edu/~vargua
> > -------------- next part --------------
> > An HTML attachment was scrubbed...
> > URL:
> >
> <http://www.vtk.org/pipermail/vtkusers/attachments/20081230/fe11239b/attachment-0001.htm>
> > 
> > ------------------------------
> > 
> > Message: 4
> > Date: Tue, 30 Dec 2008 13:57:40 -0200
> > From: "Paul Jhin"
> <paul.jhin1 at gmail.com>
> > Subject: [vtkusers] SplitExtent - Large ImageData
> > To: vtkusers at vtk.org
> > Message-ID:
> >
> 	<fcec38790812300757k48d193aaj32d827182514a04d at mail.gmail.com>
> > Content-Type: text/plain;
> charset="iso-8859-1"
> > 
> > Hi,
> > 
> > How do I use the method SplitExtent?
> > 
> > I would divide into small parts to process, because I
> have
> > a very large
> > ImageData.
> > 
> > Code:
> > 
> >     smooth = vtk.vtkImageGaussianSmooth()
> >     smooth.SplitExtent( ???? )
> > 
> > and then as a separate procedure?
> > 
> > 
> > Regards,
> > Paul Jhin
> > -------------- next part --------------
> > An HTML attachment was scrubbed...
> > URL:
> >
> <http://www.vtk.org/pipermail/vtkusers/attachments/20081230/0678f9bd/attachment-0001.htm>
> > 
> > ------------------------------
> > 
> > _______________________________________________
> > vtkusers mailing list
> > vtkusers at vtk.org
> > http://www.vtk.org/mailman/listinfo/vtkusers
> > 
> > 
> > End of vtkusers Digest, Vol 56, Issue 30
> > ****************************************
> 
> 
>       
> 
> 
> ------------------------------
> 
> Message: 6
> Date: Wed, 31 Dec 2008 11:35:29 +0400
> From: Elvis Dowson <elvis.dowson at mac.com>
> Subject: Re: [vtkusers] Please help.
> To: femi_folorunso at yahoo.com
> Cc: VTK Users <vtkusers at vtk.org>
> Message-ID:
> <C09BBE3B-8ED2-4F7E-9502-73826865ABA3 at mac.com>
> Content-Type: text/plain; charset="us-ascii";
> Format="flowed";
> 	DelSp="yes"
> 
> Hi Femi,
> 		Here are some steps to get your started. If you get
> stuck, send an  
> email and will try to help you out.
> 
> Download VTK
> 
> You can start by going to
> http://www.vtk.org/get-software.php and  
> download the vtk sources. Download the vtk-5.2.1.zip
> package. Also  
> download the VTK data for running the examples
> vtkdata-5.2.1.zip.
> 
> Download CMake
> 
> The vtk system will require the CMake package to create
> makefiles for  
> your specific platform or IDE (e.g. Microsoft Visual
> Studio). So go to
> http://www.cmake.org/cmake/resources/software.html 
>   and download the CMake installed
> cmake-2.6.2-win32-x86.zip
> 
> Download ActiveTCL
> 
> Most of the VTK examples are written using tcl and C/C++.
> So, to  
> quickly run some of the samples you will need to have TCL
> installed.  
> You can download it from
> http://www.activestate.com/Products/activetcl/index.mhtml 
> . Download the AS package for Windows.
> 
> Build VTK from sources
> 
> VTK is a set of C++ classes, with wrappers provided to
> interface it  
> with other interpreted languages like Tcl and Java. So, the
> core VTK  
> classes run at native speed, even when interfaced with Tcl
> or Java.
> 
> You first need to compile the VTK sources and create the
> VTK libraries  
> (either static or dynamic link libraries). VTK uses the
> CMake system,  
> which is cross platform make  system, to generate a
> platform specific  
> make file, in your case for Windows, probably using Visual
> Studio.
> 
> When configuring VTK with CMake, you will provide options,
> such as  
> whether you want to create the Tcl, Java or Python language
> bindings,  
> etc.
> 
> See this link for more information on how to do this:
> http://www.cs.auckland.ac.nz/~jli023/vtk/BuildandinstallVTKbinaries.htm
> 
> Its a bit out-dated, but the overall procedure remains the
> same.
> 
> Once you complete this, CMake will create a Visual Studio
> project and  
> you can open it and build the VTK libraries.
> 
> Using VTK
> 
> You can quickly check out the VTK examples by running the
> Tcl scripts,  
> or you can compile one of the C/C++ examples. When trying
> to create a  
> C/C++ VTK application, be aware that you need to specify
> the path to  
> the required VTK include files and the VTK library files.
> 
> So, in essence, you need to write you C++ application that
> uses the  
> VTK libraries, and link to those libraries.
> 
> At this stage, I would highly recommend ordering the VTK
> books. It is  
> very nicely written and will save you a lot of time. VTK is
> a great  
> system. The books you should consider buying are
> a. The VTK User Guide
> b. The Visualization Toolkit - 4th Edition.
> 
> 
> Best regards,
> 
> Elvis Dowson
> -------------- next part --------------
> An HTML attachment was scrubbed...
> URL:
> <http://www.vtk.org/pipermail/vtkusers/attachments/20081231/4151b7bd/attachment-0001.htm>
> 
> ------------------------------
> 
> Message: 7
> Date: Wed, 31 Dec 2008 11:39:59 +0400
> From: Elvis Dowson <elvis.dowson at mac.com>
> Subject: Re: [vtkusers] Please help.
> To: femi_folorunso at yahoo.com
> Cc: VTK Users <vtkusers at vtk.org>
> Message-ID:
> <8AD092E9-1BB6-4D95-ABAB-E910CAC4F7EA at mac.com>
> Content-Type: text/plain; charset=US-ASCII; format=flowed;
> delsp=yes
> 
> Hi,
>         You can also check out the following instructions:
> http://www.vtk.org/Wiki/VTK_Building_VTK
> 
> You can also find an archive of all the VTK discussions
> here : http://www.nabble.com/VTK-f14272.html 
>   . This is a useful link, since you will find answers to
> many  
> problems and their solutions. '
> 
> Best regards,
> 
> Elvis Dowson
> 
> 
> ------------------------------
> 
> Message: 8
> Date: Wed, 31 Dec 2008 17:34:57 +0800
> From: " ? " <chenbk85 at qq.com>
> Subject: [vtkusers] help: different interactor with
> different
> 	interactorstyle in every viewport in the renderwindow
> To: " vtkusers " <vtkusers at vtk.org>, "
> chenbk85 " <chenbk85 at qq.com>
> Message-ID: <tencent_2AC1D5A74B85F492669D764C at qq.com>
> Content-Type: text/plain; charset="gbk"
> 
> Hi, all!
>  
> how can i realize a interactor tool in every viewport which
> has different interactorstyle(i.e,different subclass of
> vtkInteractorStyle) in the viewport?
>  
> thank you. chenbk85
> -------------- next part --------------
> An HTML attachment was scrubbed...
> URL:
> <http://www.vtk.org/pipermail/vtkusers/attachments/20081231/a4a73b03/attachment-0001.htm>
> 
> ------------------------------
> 
> Message: 9
> Date: Wed, 31 Dec 2008 18:06:22 +0530
> From: "Shailender Kanwar"
> <shailender.kanwar at gmail.com>
> Subject: [vtkusers] How to copy a vtkRenderer object
> To: vtkusers at vtk.org
> Message-ID:
> 	<94a853f60812310436r45887391x2fdcda7316b66919 at mail.gmail.com>
> Content-Type: text/plain; charset="utf-8"
> 
> Hi all,
> 
> I am trying to show four views of the same actor in the one
> render window
> from different sides.
> My problem is that I need four renderers having the same
> actor but I have
> only one renderer associated with the actor.
> 
> I want to know if their is any way to copy or clone the
> existing renderer so
> that I dont need to create each renderer seperately and add
> the actor to it.
> 
> Thanks,
> 
> Shailender Kanwar
> -------------- next part --------------
> An HTML attachment was scrubbed...
> URL:
> <http://www.vtk.org/pipermail/vtkusers/attachments/20081231/0523d504/attachment-0001.htm>
> 
> ------------------------------
> 
> Message: 10
> Date: Wed, 31 Dec 2008 09:57:33 -0500
> From: "David Cole" <david.cole at kitware.com>
> Subject: Re: [vtkusers] different versions of VTK
> To: liu <liuwenqing306 at gmail.com>
> Cc: vtkusers at vtk.org
> Message-ID:
> 	<f435c2c50812310657i12af242dkadeca7f788c8e3d1 at mail.gmail.com>
> Content-Type: text/plain; charset="iso-8859-1"
> 
> Either you did not rebuild your program against the new
> header files or you
> have another (older) copy of VTK dll's in your PATH
> somewhere.
> 
> If you run your program within the Microsoft debugger, it
> will list the full
> paths of all the dll's that it loads in its Output
> window. That will help
> you determine where the other VTK dll's are if they are
> in your PATH.
> 
> 
> HTH,
> David
> 
> 
> 2008/12/31 liu <liuwenqing306 at gmail.com>
> 
> >  I've used VTK5.0.3 before. Recently, I tried to
> use the VTK5.2.0.
> > However, I can't run my projects any more. There
> is no warning and error but
> > it can't run. There are messages such as "Can
> not locate the program 's
> > entrance point?SetProgressText at vtkAlgorithm@UAEXPBD at Z
> in the dynamic link
> > libraries vtkFiltering.dll ".I have no idea what
> the reasons are. Before
> > installing the VTK5.2.0, I deleted all the old VTK
> DLLs and copy the new
> > DLLs to the system. But it doesn't work. Could
> anyone tell me why and how to
> > deal with the problems .Thank you very much.
> >
> > _______________________________________________
> > This is the private VTK discussion list.
> > Please keep messages on-topic. Check the FAQ at:
> > http://www.vtk.org/Wiki/VTK_FAQ
> > Follow this link to subscribe/unsubscribe:
> > http://www.vtk.org/mailman/listinfo/vtkusers
> >
> >
> -------------- next part --------------
> An HTML attachment was scrubbed...
> URL:
> <http://www.vtk.org/pipermail/vtkusers/attachments/20081231/71bf04a7/attachment-0001.htm>
> 
> ------------------------------
> 
> Message: 11
> Date: Wed, 31 Dec 2008 10:02:43 -0500
> From: "David Cole" <david.cole at kitware.com>
> Subject: Re: [vtkusers] Please help.
> To: femi_folorunso at yahoo.com
> Cc: vtkusers at vtk.org
> Message-ID:
> 	<f435c2c50812310702w386cea9bk4415020734ca67eb at mail.gmail.com>
> Content-Type: text/plain; charset="iso-8859-1"
> 
> Perhaps this:
> http://www.vtk.org/Wiki/VTK_FAQ#What.27s_the_best_way_to_learn_VTK.3F
> 
> ...or some of the other FAQ answers will help you decide
> how to get started.
> 
> 
> HTH,
> David
> 
> 
> 
> On Wed, Dec 31, 2008 at 1:15 AM, Femi Ayinde
> <femi_folorunso at yahoo.com>wrote:
> 
> > Dear Sir/Ma,
> > I am completely new to VTK. I have a Vista based
> system and dont know how
> > to get started.
> >
> > Please offer any assistance to me
> >
> > Regards
> >
> >  Femi
> > --- On Tue, 12/30/08, vtkusers-request at vtk.org
> <vtkusers-request at vtk.org>
> > wrote:
> >
> > > From: vtkusers-request at vtk.org
> <vtkusers-request at vtk.org>
> > > Subject: vtkusers Digest, Vol 56, Issue 30
> > > To: vtkusers at vtk.org
> > > Date: Tuesday, December 30, 2008, 9:00 AM
> > > Send vtkusers mailing list submissions to
> > >       vtkusers at vtk.org
> > >
> > > To subscribe or unsubscribe via the World Wide
> Web, visit
> > >      
> http://www.vtk.org/mailman/listinfo/vtkusers
> > > or, via email, send a message with subject or
> body
> > > 'help' to
> > >       vtkusers-request at vtk.org
> > >
> > > You can reach the person managing the list at
> > >       vtkusers-owner at vtk.org
> > >
> > > When replying, please edit your Subject line so
> it is more
> > > specific
> > > than "Re: Contents of vtkusers
> digest..."
> > >
> > >
> > > Today's Topics:
> > >
> > >    1. VTK 5.2.1 (David Cole)
> > >    2. Re: VTK 5.2 Tag file? (David Cole)
> > >    3. Minimum Spanning Trees Re: Building VTK-BGL
> > > algorithms    (using
> > >       cmake) (Aytekin Vargun)
> > >    4. SplitExtent - Large ImageData (Paul Jhin)
> > >
> > >
> > >
> ----------------------------------------------------------------------
> > >
> > > Message: 1
> > > Date: Mon, 29 Dec 2008 12:10:09 -0500
> > > From: "David Cole"
> <david.cole at kitware.com>
> > > Subject: [vtkusers] VTK 5.2.1
> > > To: vtk-developers
> <vtk-developers at vtk.org>, vtk
> > > <vtkusers at vtk.org>
> > > Message-ID:
> > >      
> <f435c2c50812290910m5b59dadfnbcaae289d27a54d2 at mail.gmail.com>
> > > Content-Type: text/plain;
> charset="iso-8859-1"
> > >
> > > Dear VTK users and developers,
> > >
> > > The VTK 5.2.1 patch release is now available for
> download
> > > from the VTK
> > > web site: http://www.vtk.org/get-software.php.
> The
> > > following changes
> > > are included in this release.
> > >
> > > *changes from 5.2.0 to 5.2.1:*
> > > 1) Fix Borland compile problem in
> vtkConvertSelection.cxx
> > > 2) Fix links on main Doxygen page
> > > 3) Eliminate compiler warnings in generated code
> > > 4) Invoke EndInteractionEvent *after* the
> WidgetState is
> > > changed
> > > 5) Fix issue 7511: vtkSmoothPolyDataFilter crash
> > > 6) Fix issue 7512: make vtkPlaneWidget sphere
> resizing
> > > smoother
> > > 7) Fix issue 7518: vtkDataReader memory errors
> > > 8) Fix sharedforward with a space in the path.
> Thanks to
> > > Brad King.
> > > 9) Enable kwsys' SystemInfo
> > > 10) Add install rules for vtkExportKit.cmake and
> > > vtkKit.cmake.in
> > > 11) Add install rules for vtkEncodeString and
> > > vtkTestDriver.h
> > > 12) Fix incorrect documentation tag file name
> > > 13) Fix problem with passing null object to java
> wrapped
> > > methods
> > > 14) Get GL_MAX_TEXTURE_SIZE from OpenGL rather
> than using a
> > > hard coded value
> > > 15) Propagate render window size changes to the
> render
> > > window interactor
> > > 16) Fix issue 7638: ensure correct resource
> context when
> > > switching OpenGL
> > >       contexts on Windows
> > > 17) Add missing WM_SETCURSOR handler to
> > > vtkWin32OpenGLRenderWindow
> > > 18) Improvements to FindMySQL.cmake
> > > 19) Improve vtkAVIWriter: Allow programmatically
> setting
> > > the compressor
> > > 20) Improve vtkAVIWriter: Allow user to choose
> codec
> > > 21) Fix crash: do not pass invalid parameters to
> strftime
> > > 22) Add Tcl/Tk 8.6 support
> > > 23) Fix issue 7887: numerical error in
> vtkContourValues
> > > 24) Fix issue 7705: vtkfreetype compile problem
> on Mac
> > > 25) Fix issue with compiling
> vtkOpenGLExtensionManager on
> > > Solaris 10
> > > 26) Implement GetBounds in
> > > Widgets/vtkPolygonalHandleRepresentation3D
> > > 27) Remove vtklibxml2 dependency on libhistory
> and
> > > libreadline
> > >
> > > *changes from 5.0.4 to 5.2.0:*
> > > - Infovis kit
> > > - Views kit
> > > - New Widgets architecture and more than a dozen
> new
> > > widgets
> > > - New Utilities: freerange, verdict, libxml2,
> metaio,
> > > sqlite
> > > - Updated Utilities: freetype, zlib
> > > - More than 300 new C++ classes
> > > - More than 100 new C++ tests running on most
> dashboards
> > > - Improvements to PLY file support
> > > - Many bug fixes, including much improved Java
> wrapping
> > > support
> > > - Mac OS X-specific fixes:
> > > -- Defaults to building using Cocoa instead of
> Carbon
> > > -- Can now be compiled against the 10.5 SDK
> > > -- Can now be built as a Universal Binary
> > > -- Initial support for Resolution Independence in
> 10.5
> > >
> > > We hope you enjoy this new release of VTK.
> > >
> > > - David
> > > -------------- next part --------------
> > > An HTML attachment was scrubbed...
> > > URL:
> > > <
> >
> http://www.vtk.org/pipermail/vtkusers/attachments/20081229/ed329651/attachment-0001.htm
> > >
> > >
> > > ------------------------------
> > >
> > > Message: 2
> > > Date: Mon, 29 Dec 2008 13:24:14 -0500
> > > From: "David Cole"
> <david.cole at kitware.com>
> > > Subject: Re: [vtkusers] VTK 5.2 Tag file?
> > > To: "Peter F Bradshaw"
> <pfb at exadios.com>
> > > Cc: VTK users <vtkusers at vtk.org>
> > > Message-ID:
> > >      
> <f435c2c50812291024h24374b94x1ec140c1e5145ce0 at mail.gmail.com>
> > > Content-Type: text/plain;
> charset="iso-8859-1"
> > >
> > > With the new patch release for VTK 5.2.1, there
> is now a
> > > documentation tag
> > > file available at:
> > > http://www.vtk.org/doc/release/5.2/vtk5.2.1.tag
> > >
> > > Please try it out and let me know if you
> encounter any
> > > problems using it.
> > >
> > > Thanks,
> > > David
> > >
> > >
> > > On Tue, Oct 21, 2008 at 11:07 AM, David Cole
> > > <david.cole at kitware.com> wrote:
> > >
> > > > I've committed changes to CVS HEAD and
> the VTK-5-2
> > > branch to make sure the
> > > > documentation tag file name is correct
> w.r.t. the
> > > version number of VTK.
> > > > Doing that broke the *nightly* (CVS HEAD)
> doxygen
> > > propagation script on Oct.
> > > > 8, but tomorrow we should see the nightly
> > > documentation updated properly
> > > > again.
> > > >
> > > > Next time we do a patch release for VTK 5.2,
> I will
> > > make sure we upload a
> > > > tag file for it, too.
> > > >
> > > >
> > > > Thanks,
> > > > David
> > > >
> > > >
> > > > On Wed, Sep 3, 2008 at 8:18 AM, Peter F
> Bradshaw
> > > <pfb at exadios.com> wrote:
> > > >
> > > >> Hi David;
> > > >>
> > > >> On Wed, 3 Sep 2008, David Cole wrote:
> > > >>
> > > >> > No. There is no tag file on the
> server.
> > > >> >
> > > >> > In investigating the documentation
> creation
> > > process.... it turns out
> > > >> there
> > > >> > is a tag file on the machine where
> doxygen
> > > was run, but there are some
> > > >> bits
> > > >> > of the doc build process that need
> some
> > > attention: it has old version
> > > >> > numbers in it and is named
> > > "vtk4.tag"... I will put it on my list
> to
> > > >> make
> > > >> > sure that next time we upload a
> patch release
> > > there will be a correct
> > > >> tag
> > > >> > file with the docs.
> > > >> >
> > > >> > Sorry for the inconvenience,
> > > >>
> > > >> No worries, it is not a show stopper.
> Thanks.
> > > >>
> > > >> > David
> > > >> >
> > > >> >
> > > >> > On Wed, Sep 3, 2008 at 3:12 AM,
> Peter F
> > > Bradshaw <pfb at exadios.com>
> > > >> wrote:
> > > >> >
> > > >> > > Hi;
> > > >> > >
> > > >> > > Is there a Doxygen Tag File
> associated
> > > with the documentation at
> > > >> > >
> http://www.vtk.org/doc/release/5.2/html/
> > > ?
> > > >> > >
> > > >> > > Thanks.
> > > >> > >
> > > >> > > Cheers
> > > >> > >
> > > >>
> > > >> Cheers
> > > >>
> > > >> --
> > > >> Peter F Bradshaw: http://www.exadios.com
> (public
> > > keys avaliable there).
> > > >> Personal site:
> http://personal.exadios.com
> > > >> "I love truth, and the way the
> government
> > > still uses it occasionally to
> > > >>  keep us guessing." - Sam Kekovich.
> > > >>
> _______________________________________________
> > > >> This is the private VTK discussion list.
> > > >> Please keep messages on-topic. Check the
> FAQ at:
> > > >> http://www.vtk.org/Wiki/VTK_FAQ
> > > >> Follow this link to
> subscribe/unsubscribe:
> > > >>
> http://www.vtk.org/mailman/listinfo/vtkusers
> > > >>
> > > >
> > > >
> > > -------------- next part --------------
> > > An HTML attachment was scrubbed...
> > > URL:
> > > <
> >
> http://www.vtk.org/pipermail/vtkusers/attachments/20081229/a706e366/attachment-0001.htm
> > >
> > >
> > > ------------------------------
> > >
> > > Message: 3
> > > Date: Tue, 30 Dec 2008 10:42:26 -0500
> > > From: "Aytekin Vargun"
> <varguna at gmail.com>
> > > Subject: [vtkusers] Minimum Spanning Trees Re:
> Building
> > > VTK-BGL
> > >       algorithms      (using cmake)
> > > To: "Jeff Baumes"
> <jeff.baumes at kitware.com>
> > > Cc: vtkusers at vtk.org
> > > Message-ID:
> > >      
> <fe9846b90812300742s7e434e63ge5e9901e6fa700a7 at mail.gmail.com>
> > > Content-Type: text/plain;
> charset="iso-8859-1"
> > >
> > > Thanks a lot Jeff,
> > > It looks like I had several versions of VTK and
> this was
> > > causing problems.
> > >
> > > Now I have another problem. I am trying to use
> minimum
> > > spanning tree
> > > programs. I first tried to use
> > > vtkBoostPrimMinimumSpanningTree but I am
> > > getting the following error message:
> > >
> > > "The Prim minimal spanning tree filter is
> still under
> > > development...  Use at
> > > your own risk."
> > >
> > > I checked where the error message is and then
> assumed that
> > > I was getting
> > > this message since the implementation is not
> complete yet.
> > > But should I
> > > still see some output on the screen?
> > >
> > > I then tried to use vtkKruskalMinimumSpanningTree
> which
> > > looks like in better
> > > shape (whose output is a vtkSelectionAlgorithm).
> But I am
> > > failed to display
> > > its output since its output is not a tree but a
> forest
> > > whereas Prim's
> > > version produces a vtkTree . Then how can I
> display each
> > > subtree? One way of
> > > doing this probably is to cast the result to a
> graph and
> > > then display the
> > > resulting graph.
> > >
> > > I will greatly appreciate if anyone shares
> his/her
> > > experiences.
> > > Thanks a lot.
> > >
> > > Here is a simplified piece of code I am trying to
> run:
> > >
> > >   vtkMutableUndirectedGraph*
> > > g=vtkMutableUndirectedGraph::New();
> > >
> > >     // This is used for finding minimum-spanning
> trees
> > >     vtkIntArray* edgeWeightsArr =
> vtkIntArray::New();
> > >    
> edgeWeightsArr->SetName("EdgeWeights");
> > >
> > >   VTK_CREATE(vtkRenderer, ren);
> > >
> > >   VTK_CREATE(vtkPoints, pts);
> > >   g->AddVertex();
> > >   pts->InsertNextPoint(0, 1, 0);
> > >   g->AddVertex();
> > >   pts->InsertNextPoint(0.5, 1, 0);
> > >   g->AddVertex();
> > >   pts->InsertNextPoint(0.25, 0.5, 0);
> > >   g->AddVertex();
> > >   pts->InsertNextPoint(0, 0, 0);
> > >   g->AddVertex();
> > >   pts->InsertNextPoint(0.5, 0, 0);
> > >   g->AddVertex();
> > >   pts->InsertNextPoint(1, 0, 0);
> > >   g->AddVertex();
> > >   pts->InsertNextPoint(0.75, 0.5, 0);
> > >   g->SetPoints(pts);
> > >
> > >   g->AddEdge(0, 1);
> > >   edgeWeightsArr->InsertNextValue(1);
> > >   g->AddEdge(0, 2);
> > >   edgeWeightsArr->InsertNextValue(1);
> > >   g->AddEdge(1, 2);
> > >   edgeWeightsArr->InsertNextValue(1);
> > >   g->AddEdge(2, 3);
> > >   edgeWeightsArr->InsertNextValue(1);
> > >   g->AddEdge(2, 4);
> > >   edgeWeightsArr->InsertNextValue(1);
> > >   g->AddEdge(3, 4);
> > >   edgeWeightsArr->InsertNextValue(1);
> > >
> > >  
> g->GetEdgeData()->AddArray(edgeWeightsArr);
> > >
> > >  
> //VTK_CREATE(vtkBoostPrimMinimumSpanningTree,mst);
> > >  
> VTK_CREATE(vtkBoostKruskalMinimumSpanningTree,mst);
> > >   mst->SetInput(g);
> > >  
> mst->SetEdgeWeightArrayName("EdgeWeights");
> > >   mst->Update();
> > >
> > >   // HOW TO DISPLAY
> > >
> > >
> > >
> > > On Tue, Dec 23, 2008 at 3:14 PM, Jeff Baumes
> > > <jeff.baumes at kitware.com>wrote:
> > >
> > > > > When I compile the sample file, I get
> the first
> > > error for the following
> > > > > line:
> > > > >  
> VTK_CREATE(vtkBoostBiconnectedComponents,
> > > biconn);
> > > > >
> > > > > (On CMake, I had set VTK_USE_BOOST set
> to ON when
> > > building VTK)
> > > >
> > > > First, make sure that your app is linking
> against
> > > vtkInfovis. If it
> > > > is, it appears that the Boost algorithms are
> not being
> > > compiled into
> > > > the vtkInfovis library you are using. Ensure
> that the
> > > vtkInfovis you
> > > > are linking against is the one in the build
> where you
> > > turned
> > > > VTK_USE_BOOST on. In Visual Studio, you can
> check your
> > > VTK build by
> > > > looking at the source files under
> vtkInfovis. Make
> > > sure the vtkBoost*
> > > > files are there.
> > > >
> > > > Jeff
> > > >
> > >
> > >
> > >
> > > --
> > > My web page: http://www.cs.rpi.edu/~vargua
> > > -------------- next part --------------
> > > An HTML attachment was scrubbed...
> > > URL:
> > > <
> >
> http://www.vtk.org/pipermail/vtkusers/attachments/20081230/fe11239b/attachment-0001.htm
> > >
> > >
> > > ------------------------------
> > >
> > > Message: 4
> > > Date: Tue, 30 Dec 2008 13:57:40 -0200
> > > From: "Paul Jhin"
> <paul.jhin1 at gmail.com>
> > > Subject: [vtkusers] SplitExtent - Large ImageData
> > > To: vtkusers at vtk.org
> > > Message-ID:
> > >      
> <fcec38790812300757k48d193aaj32d827182514a04d at mail.gmail.com>
> > > Content-Type: text/plain;
> charset="iso-8859-1"
> > >
> > > Hi,
> > >
> > > How do I use the method SplitExtent?
> > >
> > > I would divide into small parts to process,
> because I have
> > > a very large
> > > ImageData.
> > >
> > > Code:
> > >
> > >     smooth = vtk.vtkImageGaussianSmooth()
> > >     smooth.SplitExtent( ???? )
> > >
> > > and then as a separate procedure?
> > >
> > >
> > > Regards,
> > > Paul Jhin
> > > -------------- next part --------------
> > > An HTML attachment was scrubbed...
> > > URL:
> > > <
> >
> http://www.vtk.org/pipermail/vtkusers/attachments/20081230/0678f9bd/attachment-0001.htm
> > >
> > >
> > > ------------------------------
> > >
> > > _______________________________________________
> > > vtkusers mailing list
> > > vtkusers at vtk.org
> > > http://www.vtk.org/mailman/listinfo/vtkusers
> > >
> > >
> > > End of vtkusers Digest, Vol 56, Issue 30
> > > ****************************************
> >
> >
> >
> > _______________________________________________
> > This is the private VTK discussion list.
> > Please keep messages on-topic. Check the FAQ at:
> > http://www.vtk.org/Wiki/VTK_FAQ
> > Follow this link to subscribe/unsubscribe:
> > http://www.vtk.org/mailman/listinfo/vtkusers
> >
> -------------- next part --------------
> An HTML attachment was scrubbed...
> URL:
> <http://www.vtk.org/pipermail/vtkusers/attachments/20081231/9bd80700/attachment-0001.htm>
> 
> ------------------------------
> 
> _______________________________________________
> vtkusers mailing list
> vtkusers at vtk.org
> http://www.vtk.org/mailman/listinfo/vtkusers
> 
> 
> End of vtkusers Digest, Vol 56, Issue 31
> ****************************************


      



More information about the vtkusers mailing list