[vtkusers] Re: vtkusers Digest, Vol 4, Issue 47

Longfei Cong lfcong at nlpr.ia.ac.cn
Thu Aug 19 06:56:39 EDT 2004


----- Original Message -----
From: <vtkusers-request at vtk.org>
To: <vtkusers at vtk.org>
Sent: Wednesday, August 18, 2004 9:54 AM
Subject: vtkusers Digest, Vol 4, Issue 47


> 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. problem compiling my application (Lucas Lorenzo)
>    2. Re: problem compiling my application (Sean McInerney)
>    3. Re: problem compiling my application (Lucas Lorenzo)
>    4. Getting the time for rendering (Nagarajan)
>    5. remove renderwindow (Joeri Nicolaes)
>    6. Re: including vtkPanel in vtk.jar (Arjen Ricksen)
>
>
> ----------------------------------------------------------------------
>
> Message: 1
> Date: Tue, 17 Aug 2004 18:24:13 -0600
> From: Lucas Lorenzo <lucas at cvrti.utah.edu>
> Subject: [vtkusers] problem compiling my application
> To: vtkusers at vtk.org
> Message-ID: <EEDF0E82-F0AC-11D8-B3D3-0003930AB93E at cvrti.utah.edu>
> Content-Type: text/plain; charset="us-ascii"
>
> Hi all,
>
> I'm trying to compile a simple program that reads a volume in the form
> of vtkStructuredPoints and extracts a particular slice (using
> vtkImageReslice) in order to display it:
>
>
> #include "vtkStructuredPointsReader.h"
> #include "vtkLookupTable.h"
> #include "vtkImageReslice.h"
> #include "vtkRenderWindow.h"
> #include "vtkCamera.h"
> #include "vtkActor.h"
> #include "vtkRenderer.h"
> #include "vtkDataSetMapper.h"
> #include "vtkRenderWindowInteractor.h"
>
> int main( int argc, char *argv[] )
> {
>
>    vtkStructuredPointsReader *image_reader =
> vtkStructuredPointsReader::New();
>    image_reader->SetFileName("myfile.vtk");
>
>
>    unsigned short lowval = 0;
>    unsigned short highval = 306;
>    vtkLookupTable *lut = vtkLookupTable::New();
>    lut->SetNumberOfTableValues(1024);
>    lut->SetTableRange(lowval,highval);
>    lut->SetHueRange(1,1);
>    lut->SetSaturationRange(0,0);
>    lut->SetValueRange(0,1);
>    lut->Build();
>
>
>    vtkImageReslice *get_slice = vtkImageReslice::New();
>    get_slice->SetInput(image_reader->GetOutput());
>    get_slice->SetOutputDimensionality(2);
>    get_slice->SetResliceAxesOrigin(0,0,33);
>
>
>    vtkDataSetMapper *im_mapper = vtkDataSetMapper::New();
>    im_mapper->SetInput(get_slice->GetOutput());
>    im_mapper->SetScalarRange(lowval,highval);
>    im_mapper->SetColorModeToMapScalars();
>    im_mapper->SetLookupTable(lut);
>
>
>    vtkActor *imActor = vtkActor::New();
>    imActor->SetMapper(im_mapper);
>
>
>    // Create the RenderWindow, Renderer and both Actors
>    vtkRenderer *ren1 = vtkRenderer::New();
>    vtkRenderWindow *renWin = vtkRenderWindow::New();
>    renWin->AddRenderer(ren1);
>    vtkRenderWindowInteractor *iren = vtkRenderWindowInteractor::New();
>    iren->SetRenderWindow(renWin);
>
>
>    // Add the actors to the renderer, set the background and size
>    ren1->AddActor(imActor);
>    renWin->SetSize(640,640);
>
>
>    // render the image
>    vtkCamera *cam1 = ren1->GetActiveCamera();
>    cam1->Zoom(2.5);
>    renWin->Render();
>
>
>    // deallocate memory:
>    image_reader->Delete();
>    lut->Delete();
>    get_slice->Delete();
>    im_mapper->Delete();
>    imActor->Delete();
>    ren1->Delete();
>    renWin->Delete();
>    iren->Delete();
>
>
>    return 0;
> }
>
> When compiling I have the following error:
>
> Building dependencies. cmake.depends...
> -- Loading VTK CMake commands
> -- Loading VTK CMake commands - done
> Building object file ThresholdVTK.o...
> /private/var/automount/mom/u/lucas/Borrar/ThresholdVTK.cxx: In function
> `int
>     main(int, char**)':
> /private/var/automount/mom/u/lucas/Borrar/ThresholdVTK.cxx:30: error: no
>     matching function for call to `vtkImageReslice::SetInput(
>     vtkStructuredPoints*)'
> /scratch/lucas/bin/VTK-4.4/VTK-binary/include/vtk/
> vtkImageToImageFilter.h:40: error: candidates
>     are: virtual void vtkImageToImageFilter::SetInput(vtkImageData*)
> /private/var/automount/mom/u/lucas/Borrar/ThresholdVTK.cxx:36: error: no
>     matching function for call to
> `vtkDataSetMapper::SetInput(vtkImageData*)'
> /scratch/lucas/bin/VTK-4.4/VTK-binary/include/vtk/vtkDataSetMapper.h:
> 56: error: candidates
>     are: void vtkDataSetMapper::SetInput(vtkDataSet*)
> make[1]: *** [ThresholdVTK.o] Error 1
> make: *** [default_target] Error 2
>
> It is my understanding that  vtkStructuredPoints inherits vtkImageData.
> But I must be missing something here.
> If you guys have any clue about this, please let me know.
> Thanks,
>
> Lucas Lorenzo
>
> PS: the CMakeList.txt file is only this:
>
> PROJECT (ThresholdVTK)
>
> INCLUDE (${CMAKE_ROOT}/Modules/FindVTK.cmake)
> IF (USE_VTK_FILE)
>    INCLUDE(${USE_VTK_FILE})
> ENDIF (USE_VTK_FILE)
>
> ADD_EXECUTABLE(ThresholdVTK ThresholdVTK.cxx)
> TARGET_LINK_LIBRARIES(ThresholdVTK vtkRendering vtkImaging vtkIO)
>
> University of Utah
> Nora Eccles Harrison CardioVascular Research and Training Institute
> Fellows Room
> 95 South 2000 East
> Salt Lake City, UT 84112-5000
>
> e-mail:  lucas at cvrti.utah.edu
> telephone: 801-587-9536
> -------------- next part --------------
> A non-text attachment was scrubbed...
> Name: not available
> Type: text/enriched
> Size: 4377 bytes
> Desc: not available
> Url :
http://public.kitware.com/pipermail/vtkusers/attachments/20040817/10364546/a
ttachment-0001.bin
>
> ------------------------------
>
> Message: 2
> Date: Tue, 17 Aug 2004 20:19:19 -0400
> From: Sean McInerney <seanm at nmr.mgh.harvard.edu>
> Subject: Re: [vtkusers] problem compiling my application
> To: Lucas Lorenzo <lucas at cvrti.utah.edu>
> Cc: vtkusers at vtk.org
> Message-ID: <4122A087.6000500 at nmr.mgh.harvard.edu>
> Content-Type: text/plain; charset=us-ascii; format=flowed
>
> Hi Lucas,
>
> You are missing:
>
> #include "vtkStructuredPoints.h"
>
> See <http://www.vtk.org/Wiki/VTK_FAQ#Forward_declaration_in_VTK_4.x>
>
> -Sean
>
> Lucas Lorenzo wrote:
> > Hi all,
> >
> > I'm trying to compile a simple program that reads a volume in the form
> > of vtkStructuredPoints and extracts a particular slice (using
> > vtkImageReslice) in order to display it:
> >
> >
> > #include "vtkStructuredPointsReader.h"
> > #include "vtkLookupTable.h"
> > #include "vtkImageReslice.h"
> > #include "vtkRenderWindow.h"
> > #include "vtkCamera.h"
> > #include "vtkActor.h"
> > #include "vtkRenderer.h"
> > #include "vtkDataSetMapper.h"
> > #include "vtkRenderWindowInteractor.h"
> >
> > int main( int argc, char *argv[] )
> > {
> >
> >   vtkStructuredPointsReader *image_reader =
> > vtkStructuredPointsReader::New();
> >   image_reader->SetFileName("myfile.vtk");
> >
> >
> >   unsigned short lowval = 0;
> >   unsigned short highval = 306;
> >   vtkLookupTable *lut = vtkLookupTable::New();
> >   lut->SetNumberOfTableValues(1024);
> >   lut->SetTableRange(lowval,highval);
> >   lut->SetHueRange(1,1);
> >   lut->SetSaturationRange(0,0);
> >   lut->SetValueRange(0,1);
> >   lut->Build();
> >
> >
> >   vtkImageReslice *get_slice = vtkImageReslice::New();
> >   get_slice->SetInput(image_reader->GetOutput());
> >   get_slice->SetOutputDimensionality(2);
> >   get_slice->SetResliceAxesOrigin(0,0,33);
> >
> >
> >   vtkDataSetMapper *im_mapper = vtkDataSetMapper::New();
> >   im_mapper->SetInput(get_slice->GetOutput());
> >   im_mapper->SetScalarRange(lowval,highval);
> >   im_mapper->SetColorModeToMapScalars();
> >   im_mapper->SetLookupTable(lut);
> >
> >
> >   vtkActor *imActor = vtkActor::New();
> >   imActor->SetMapper(im_mapper);
> >
> >
> >   // Create the RenderWindow, Renderer and both Actors
> >   vtkRenderer *ren1 = vtkRenderer::New();
> >   vtkRenderWindow *renWin = vtkRenderWindow::New();
> >   renWin->AddRenderer(ren1);
> >   vtkRenderWindowInteractor *iren = vtkRenderWindowInteractor::New();
> >   iren->SetRenderWindow(renWin);
> >
> >
> >   // Add the actors to the renderer, set the background and size
> >   ren1->AddActor(imActor);
> >   renWin->SetSize(640,640);
> >
> >
> >   // render the image
> >   vtkCamera *cam1 = ren1->GetActiveCamera();
> >   cam1->Zoom(2.5);
> >   renWin->Render();
> >
> >
> >   // deallocate memory:
> >   image_reader->Delete();
> >   lut->Delete();
> >   get_slice->Delete();
> >   im_mapper->Delete();
> >   imActor->Delete();
> >   ren1->Delete();
> >   renWin->Delete();
> >   iren->Delete();
> >
> >
> >   return 0;
> > }
> >
> > When compiling I have the following error:
> >
> > Building dependencies. cmake.depends...
> > -- Loading VTK CMake commands
> > -- Loading VTK CMake commands - done
> > Building object file ThresholdVTK.o...
> > /private/var/automount/mom/u/lucas/Borrar/ThresholdVTK.cxx: In function
> > `int
> >    main(int, char**)':
> > /private/var/automount/mom/u/lucas/Borrar/ThresholdVTK.cxx:30: error: no
> >    matching function for call to `vtkImageReslice::SetInput(
> >    vtkStructuredPoints*)'
> > /scratch/lucas/bin/VTK-4.4/VTK-binary/include/vtk/
> > vtkImageToImageFilter.h:40: error: candidates
> >    are: virtual void vtkImageToImageFilter::SetInput(vtkImageData*)
> > /private/var/automount/mom/u/lucas/Borrar/ThresholdVTK.cxx:36: error: no
> >    matching function for call to
> > `vtkDataSetMapper::SetInput(vtkImageData*)'
> > /scratch/lucas/bin/VTK-4.4/VTK-binary/include/vtk/vtkDataSetMapper.h:
> > 56: error: candidates
> >    are: void vtkDataSetMapper::SetInput(vtkDataSet*)
> > make[1]: *** [ThresholdVTK.o] Error 1
> > make: *** [default_target] Error 2
> >
> > It is my understanding that  vtkStructuredPoints inherits vtkImageData.
> > But I must be missing something here.
> > If you guys have any clue about this, please let me know.
> > Thanks,
> >
> > Lucas Lorenzo
> >
> > PS: the CMakeList.txt file is only this:
> >
> > PROJECT (ThresholdVTK)
> >
> > INCLUDE (${CMAKE_ROOT}/Modules/FindVTK.cmake)
> > IF (USE_VTK_FILE)
> >   INCLUDE(${USE_VTK_FILE})
> > ENDIF (USE_VTK_FILE)
> >
> > ADD_EXECUTABLE(ThresholdVTK ThresholdVTK.cxx)
> > TARGET_LINK_LIBRARIES(ThresholdVTK vtkRendering vtkImaging vtkIO)
> >
> > University of Utah
> > Nora Eccles Harrison CardioVascular Research and Training Institute
> > Fellows Room
> > 95 South 2000 East
> > Salt Lake City, UT 84112-5000
> >
> > e-mail:  lucas at cvrti.utah.edu
> > telephone: 801-587-9536
> >
> >
> > ------------------------------------------------------------------------
> >
> > _______________________________________________
> > This is the private VTK discussion list.
> > Please keep messages on-topic. Check the FAQ at:
<http://public.kitware.com/cgi-bin/vtkfaq>
> > Follow this link to subscribe/unsubscribe:
> > http://www.vtk.org/mailman/listinfo/vtkusers
>
>
> ------------------------------
>
> Message: 3
> Date: Tue, 17 Aug 2004 18:37:00 -0600
> From: Lucas Lorenzo <lucas at cvrti.utah.edu>
> Subject: Re: [vtkusers] problem compiling my application
> To: seanm at nmr.mgh.harvard.edu
> Cc: vtkusers at vtk.org
> Message-ID: <B8024B8C-F0AE-11D8-B3D3-0003930AB93E at cvrti.utah.edu>
> Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed
>
> Great !
> Thanks Sean,
>
> Lucas
>
>
> On Aug 17, 2004, at 6:19 PM, Sean McInerney wrote:
>
> > Hi Lucas,
> >
> > You are missing:
> >
> > #include "vtkStructuredPoints.h"
> >
> > See <http://www.vtk.org/Wiki/VTK_FAQ#Forward_declaration_in_VTK_4.x>
> >
> > -Sean
> >
> > Lucas Lorenzo wrote:
> >> Hi all,
> >> I'm trying to compile a simple program that reads a volume in the
> >> form  of vtkStructuredPoints and extracts a particular slice (using
> >> vtkImageReslice) in order to display it:
> >> #include "vtkStructuredPointsReader.h"
> >> #include "vtkLookupTable.h"
> >> #include "vtkImageReslice.h"
> >> #include "vtkRenderWindow.h"
> >> #include "vtkCamera.h"
> >> #include "vtkActor.h"
> >> #include "vtkRenderer.h"
> >> #include "vtkDataSetMapper.h"
> >> #include "vtkRenderWindowInteractor.h"
> >> int main( int argc, char *argv[] )
> >> {
> >>   vtkStructuredPointsReader *image_reader =
> >> vtkStructuredPointsReader::New();
> >>   image_reader->SetFileName("myfile.vtk");
> >>   unsigned short lowval = 0;
> >>   unsigned short highval = 306;
> >>   vtkLookupTable *lut = vtkLookupTable::New();
> >>   lut->SetNumberOfTableValues(1024);
> >>   lut->SetTableRange(lowval,highval);
> >>   lut->SetHueRange(1,1);
> >>   lut->SetSaturationRange(0,0);
> >>   lut->SetValueRange(0,1);
> >>   lut->Build();
> >>   vtkImageReslice *get_slice = vtkImageReslice::New();
> >>   get_slice->SetInput(image_reader->GetOutput());
> >>   get_slice->SetOutputDimensionality(2);
> >>   get_slice->SetResliceAxesOrigin(0,0,33);
> >>   vtkDataSetMapper *im_mapper = vtkDataSetMapper::New();
> >>   im_mapper->SetInput(get_slice->GetOutput());
> >>   im_mapper->SetScalarRange(lowval,highval);
> >>   im_mapper->SetColorModeToMapScalars();
> >>   im_mapper->SetLookupTable(lut);
> >>   vtkActor *imActor = vtkActor::New();
> >>   imActor->SetMapper(im_mapper);
> >>   // Create the RenderWindow, Renderer and both Actors
> >>   vtkRenderer *ren1 = vtkRenderer::New();
> >>   vtkRenderWindow *renWin = vtkRenderWindow::New();
> >>   renWin->AddRenderer(ren1);
> >>   vtkRenderWindowInteractor *iren = vtkRenderWindowInteractor::New();
> >>   iren->SetRenderWindow(renWin);
> >>   // Add the actors to the renderer, set the background and size
> >>   ren1->AddActor(imActor);
> >>   renWin->SetSize(640,640);
> >>   // render the image
> >>   vtkCamera *cam1 = ren1->GetActiveCamera();
> >>   cam1->Zoom(2.5);
> >>   renWin->Render();
> >>   // deallocate memory:
> >>   image_reader->Delete();
> >>   lut->Delete();
> >>   get_slice->Delete();
> >>   im_mapper->Delete();
> >>   imActor->Delete();
> >>   ren1->Delete();
> >>   renWin->Delete();
> >>   iren->Delete();
> >>   return 0;
> >> }
> >> When compiling I have the following error:
> >> Building dependencies. cmake.depends...
> >> -- Loading VTK CMake commands
> >> -- Loading VTK CMake commands - done
> >> Building object file ThresholdVTK.o...
> >> /private/var/automount/mom/u/lucas/Borrar/ThresholdVTK.cxx: In
> >> function  `int
> >>    main(int, char**)':
> >> /private/var/automount/mom/u/lucas/Borrar/ThresholdVTK.cxx:30: error:
> >> no
> >>    matching function for call to `vtkImageReslice::SetInput(
> >>    vtkStructuredPoints*)'
> >> /scratch/lucas/bin/VTK-4.4/VTK-binary/include/vtk/
> >> vtkImageToImageFilter.h:40: error: candidates
> >>    are: virtual void vtkImageToImageFilter::SetInput(vtkImageData*)
> >> /private/var/automount/mom/u/lucas/Borrar/ThresholdVTK.cxx:36: error:
> >> no
> >>    matching function for call to
> >> `vtkDataSetMapper::SetInput(vtkImageData*)'
> >> /scratch/lucas/bin/VTK-4.4/VTK-binary/include/vtk/vtkDataSetMapper.h:
> >> 56: error: candidates
> >>    are: void vtkDataSetMapper::SetInput(vtkDataSet*)
> >> make[1]: *** [ThresholdVTK.o] Error 1
> >> make: *** [default_target] Error 2
> >> It is my understanding that  vtkStructuredPoints inherits
> >> vtkImageData.  But I must be missing something here.
> >> If you guys have any clue about this, please let me know.
> >> Thanks,
> >> Lucas Lorenzo
> >> PS: the CMakeList.txt file is only this:
> >> PROJECT (ThresholdVTK)
> >> INCLUDE (${CMAKE_ROOT}/Modules/FindVTK.cmake)
> >> IF (USE_VTK_FILE)
> >>   INCLUDE(${USE_VTK_FILE})
> >> ENDIF (USE_VTK_FILE)
> >> ADD_EXECUTABLE(ThresholdVTK ThresholdVTK.cxx)
> >> TARGET_LINK_LIBRARIES(ThresholdVTK vtkRendering vtkImaging vtkIO)
> >> University of Utah
> >> Nora Eccles Harrison CardioVascular Research and Training Institute
> >> Fellows Room
> >> 95 South 2000 East
> >> Salt Lake City, UT 84112-5000
> >> e-mail:  lucas at cvrti.utah.edu
> >> telephone: 801-587-9536
> >> ----------------------------------------------------------------------
> >> --
> >> _______________________________________________
> >> This is the private VTK discussion list. Please keep messages
> >> on-topic. Check the FAQ at:
> >> <http://public.kitware.com/cgi-bin/vtkfaq>
> >> Follow this link to subscribe/unsubscribe:
> >> http://www.vtk.org/mailman/listinfo/vtkusers
> >>
> Lucas Lorenzo
>
> University of Utah
> Nora Eccles Harrison CardioVascular Research and Training Institute
> Fellows Room
> 95 South 2000 East
> Salt Lake City, UT 84112-5000
>
> e-mail:  lucas at cvrti.utah.edu
> telephone: 801-587-9536
>
>
>
> ------------------------------
>
> Message: 4
> Date: Wed, 18 Aug 2004 10:46:00 +0530
> From: "Nagarajan" <raman_nagarajan at vsnl.net>
> Subject: [vtkusers] Getting the time for rendering
> To: <vtkusers at vtk.org>
> Message-ID: <000d01c484e2$731444c0$5a02a8c0 at MAINDEV>
> Content-Type: text/plain; charset="iso-8859-1"
>
> Hello users,
>  Lately I have been doing a 256 x 256 x 256 data rendering.  It is for an
application(medical imaging).  From the time the rendering bagins till the
image is shown, there is no clue as to how much time it is going to take.
Is there a way to get it?.  The window appears but the image appears several
seconds later.  I wish to do the following.  From the time the window is
shown, till the image is appearing I want to flash a message that the
process is still going on.  Can some one help me?
>
> Nagarajan
> -------------- next part --------------
> An HTML attachment was scrubbed...
> URL:
http://public.kitware.com/pipermail/vtkusers/attachments/20040818/9bae269c/a
ttachment.html
>
> ------------------------------
>
> Message: 5
> Date: Wed, 18 Aug 2004 09:21:56 +0200
> From: "Joeri Nicolaes" <joeri_vtk at hotmail.com>
> Subject: [vtkusers] remove renderwindow
> To: <vtkusers at vtk.org>
> Message-ID: <BAY1-DAV11cggy9rucg0002f71d at hotmail.com>
> Content-Type: text/plain; charset="iso-8859-1"
>
> Hi all,
>
> I would like to couple a user interaction to showing an image in a new
renderWindow and to removing again this window. But how to remove a
renderWindow? The problem is that when you close the renderWindow (in
Windows) with the cross in the right upper border of the window, the whole
application exits.
>
> Joeri
> -------------- next part --------------
> An HTML attachment was scrubbed...
> URL:
http://public.kitware.com/pipermail/vtkusers/attachments/20040818/ce7b12f1/a
ttachment.htm
>
> ------------------------------
>
> Message: 6
> Date: Wed, 18 Aug 2004 10:53:37 +0200
> From: "Arjen Ricksen" <ricksen at natlab.research.philips.com>
> Subject: Re: [vtkusers] including vtkPanel in vtk.jar
> To: "Songbo Chen" <bobbydog102 at hotmail.com>, <vtkusers at vtk.org>
> Message-ID: <000e01c48500$da4a67a0$498f9182 at ddns.htc.nl.philips.com>
> Content-Type: text/plain; charset="iso-8859-1"
>
> Hello Songbo,
>
> I did that in the first place. Then I got the errors, and read about
including vtkPanel into vtk.jar.
> I'm using the Eclipse environment to compile and run my Java applications.
Is there some special feature of Eclipse that lets you include class files
into jar files?
>   ----- Original Message -----
>   From: Songbo Chen
>   To: Arjen Ricksen
>   Sent: Tuesday 17 August 2004 16:12
>   Subject: Re: [vtkusers] including vtkPanel in vtk.jar
>
>
>   Hi, vtkPanel is not coming with the preinstall version of vtk, you have
to download it separatly from the VTK website. once you download it, just
put it in your application directory. hope this can help you.
>
>     ----- Original Message -----
>     From: Arjen Ricksen
>     To: vtkusers at vtk.org
>     Sent: Tuesday, August 17, 2004 12:33 PM
>     Subject: [vtkusers] including vtkPanel in vtk.jar
>
>
>     Dear all,
>
>     I'm trying to view a simple vtkRenderWindow inside a JFrame by using
vtkPanel. When I run the application I get the same UnsatisfiedLinkError as
Tarik Chowdhury, who posted his problem on Tue Mar 25 08:12:37 EST 2003.
>     I tried the solution of Ramu Chandram, Tue Mar 25 08:29:05 EST 2003,
but I don't know how to "compile with -d option" and how to include
vtkPanel's class file into vtk.jar properly (all classes in vtk.jar seem to
have class files with ".rule" extension, besides their normal class files).
>
>     Can somebody explain me how to implement this solution?
>
>     I'm working on a windows XP system, but I have an XTerm at my
disposal.
>
>     Kind regards,
>
>     Arjen Ricksen
>
>     WGP medewerker COS/SAVG
>     Philips Research Laboratories
>     Prof. Holstlaan 4
>     5656 AA Eindhoven, The Netherlands
>     Building: WO P 46
>     Mailbox: WO 01
>     Tel : +31-40-27 44375
>     Fax: +31-40-27 44675
>     Mailto: ricksen at natlab.research.philips.com
>
>
>
>
> --------------------------------------------------------------------------
--
>
>
>     _______________________________________________
>     This is the private VTK discussion list.
>     Please keep messages on-topic. Check the FAQ at:
<http://public.kitware.com/cgi-bin/vtkfaq>
>     Follow this link to subscribe/unsubscribe:
>     http://www.vtk.org/mailman/listinfo/vtkusers
> -------------- next part --------------
> An HTML attachment was scrubbed...
> URL:
http://public.kitware.com/pipermail/vtkusers/attachments/20040818/a6633ded/a
ttachment.html
>
> ------------------------------
>
> _______________________________________________
> vtkusers mailing list
> vtkusers at vtk.org
> http://www.vtk.org/mailman/listinfo/vtkusers
>
>
> End of vtkusers Digest, Vol 4, Issue 47
> ***************************************




More information about the vtkusers mailing list