<html><div style='background-color:'><P>Hi All,</P>
<P>Is any one knows how to compute a geodesic distance (surface distance)&nbsp;from one vertex to an other vertex in a given vtkPolyData? Is this computation available in VTK?<BR></P>
<P>Joseph.<BR></P><BR><BR>
<DIV>&nbsp;</DIV><BR><BR><BR>&gt;From: vtkusers-request@vtk.org<BR>&gt;Reply-To: vtkusers@vtk.org<BR>&gt;To: vtkusers@vtk.org<BR>&gt;Subject: vtkusers Digest, Vol 14, Issue 12<BR>&gt;Date: Mon, 6 Jun 2005 12:00:56 -0400 (EDT)<BR>&gt;<BR>&gt;Send vtkusers mailing list submissions to<BR>&gt; vtkusers@vtk.org<BR>&gt;<BR>&gt;To subscribe or unsubscribe via the World Wide Web, visit<BR>&gt; http://www.vtk.org/mailman/listinfo/vtkusers<BR>&gt;or, via email, send a message with subject or body 'help' to<BR>&gt; vtkusers-request@vtk.org<BR>&gt;<BR>&gt;You can reach the person managing the list at<BR>&gt; vtkusers-owner@vtk.org<BR>&gt;<BR>&gt;When replying, please edit your Subject line so it is more specific<BR>&gt;than "Re: Contents of vtkusers digest..."<BR>&gt;<BR>&gt;<BR>&gt;Today's Topics:<BR>&gt;<BR>&gt; 1. Re: vtk and video (Simon Drouin)<BR>&gt; 2. can i pass an array like argument to 
vtkBMPreader (med ali)<BR>&gt; 3. Do to use STL Vector effectively? (Munenori Yoshioka)<BR>&gt; 4. VTK CVS build on OSX 10.4 fails...any ideas? (Dan White)<BR>&gt; 5. Stretching and shrinking 2D images (julien.barneoud@kodak.com)<BR>&gt;<BR>&gt;<BR>&gt;----------------------------------------------------------------------<BR>&gt;<BR>&gt;Message: 1<BR>&gt;Date: Mon, 06 Jun 2005 09:34:12 -0400<BR>&gt;From: Simon Drouin &lt;sdrouin@bic.mni.mcgill.ca&gt;<BR>&gt;Subject: Re: [vtkusers] vtk and video<BR>&gt;To: Perrine Guillemot &lt;guillemot_perrine@yahoo.fr&gt;<BR>&gt;Cc: Marwan Darwish &lt;darwish@aub.edu.lb&gt;, vtkusers@vtk.org<BR>&gt;Message-ID: &lt;42A450D4.4060505@bic.mni.mcgill.ca&gt;<BR>&gt;Content-Type: text/plain; charset=ISO-8859-1; format=flowed<BR>&gt;<BR>&gt;Perrine Guillemot wrote:<BR>&gt;<BR>&gt; &gt;Hi everybody,<BR>&gt; &gt;<BR>&gt; &gt;Can anyone please explain me how to 
use vtkVideoSource<BR>&gt; &gt;or where can I find some examples for using this<BR>&gt; &gt;class?<BR>&gt; &gt;<BR>&gt; &gt;<BR>&gt;Here's the simplest piece of code you can write to grab a video frame.<BR>&gt;<BR>&gt;/* Create the source. Replace the vtkVideoSource::New() with<BR>&gt;vtkMILVideoSource::New() or vtkWin32VideoSource::New() depending on the<BR>&gt;type of frame grabber you use. */<BR>&gt;vtkVideoSource * source = vtkVideoSource::New();<BR>&gt;<BR>&gt;// image size<BR>&gt;source-&gt;SetFrameSize( 640, 480, 1 );<BR>&gt;<BR>&gt;// will output grayscale image.<BR>&gt;source-&gt;SetOutputFormatToLuminance();<BR>&gt;<BR>&gt;// 15 frames/sec<BR>&gt;source-&gt;SetFrameRate(15);<BR>&gt;<BR>&gt;// Set parameter in frame grabber hardware, mainly<BR>&gt;source-&gt;Initialize();<BR>&gt;<BR>&gt;// Grab a frame to the buffer ( warning: it is not available in the<BR>&gt;output unless you 
update the pipeline ).<BR>&gt;source-&gt;Grab();<BR>&gt;<BR>&gt;then you can use source-&gt;GetOutput() to get the current frame.<BR>&gt;<BR>&gt;If you have any more questions, please ask.<BR>&gt;<BR>&gt;s.<BR>&gt;<BR>&gt;<BR>&gt;------------------------------<BR>&gt;<BR>&gt;Message: 2<BR>&gt;Date: Mon, 6 Jun 2005 16:00:30 +0200 (CEST)<BR>&gt;From: med ali &lt;daalyusmo@yahoo.fr&gt;<BR>&gt;Subject: [vtkusers] can i pass an array like argument to vtkBMPreader<BR>&gt;<BR>&gt;To: xujf@sjtu.edu.cn, vtkusers@vtk.org<BR>&gt;Message-ID: &lt;20050606140030.53862.qmail@web26409.mail.ukl.yahoo.com&gt;<BR>&gt;Content-Type: text/plain; charset="iso-8859-1"<BR>&gt;<BR>&gt;<BR>&gt;Hi all,<BR>&gt;<BR>&gt;<BR>&gt;<BR>&gt;i want use vtkBMPReader but not directly on the files<BR>&gt;<BR>&gt; instead of passing the prefix of slices can i pass the array data of pixels to 
vtkBMPReader<BR>&gt;<BR>&gt;/*<BR>&gt;<BR>&gt;bmp= vtkBMPReader::New();<BR>&gt;<BR>&gt;bmp-&gt;SetFilePrefix (prefix);<BR>&gt;<BR>&gt;bmp-&gt;SetFileNameSliceOffset(1);<BR>&gt;<BR>&gt;bmp-&gt;SetFilePattern("%s%d.bmp");<BR>&gt;<BR>&gt;*/<BR>&gt;<BR>&gt;<BR>&gt;---------------------------------<BR>&gt; Découvrez le nouveau Yahoo! Mail : 1 Go d'espace de stockage pour vos mails, photos et vidéos !<BR>&gt;Créez votre Yahoo! Mail<BR>&gt;-------------- next part --------------<BR>&gt;An HTML attachment was scrubbed...<BR>&gt;URL: http://public.kitware.com/pipermail/vtkusers/attachments/20050606/e1b465cd/attachment-0001.htm<BR>&gt;<BR>&gt;------------------------------<BR>&gt;<BR>&gt;Message: 3<BR>&gt;Date: Mon, 6 Jun 2005 23:03:17 +0900<BR>&gt;From: "Munenori Yoshioka" &lt;munenori@indigo.plala.or.jp&gt;<BR>&gt;Subject: [vtkusers] Do to use STL Vector effectively?<BR>&gt;To: 
&lt;vtkusers@vtk.org&gt;<BR>&gt;Message-ID: &lt;001301c56aa0$7d2f9870$0c01a8c0@osaka&gt;<BR>&gt;Content-Type: text/plain; charset="iso-2022-jp"<BR>&gt;<BR>&gt;Hello to all user.<BR>&gt;<BR>&gt;For instance, what method do you use by the method of most smoothly<BR>&gt;displaying the memory data of 512*512*1 stored in STL Vector?<BR>&gt;<BR>&gt;Thanks very much to everyone that helps.<BR>&gt;<BR>&gt;Munenori Yoshioka, in japan munenori@indigo.plala.or.jp<BR>&gt;<BR>&gt;<BR>&gt;<BR>&gt;------------------------------<BR>&gt;<BR>&gt;Message: 4<BR>&gt;Date: Mon, 6 Jun 2005 18:05:02 +0300<BR>&gt;From: Dan White &lt;dan@chalkie.org.uk&gt;<BR>&gt;Subject: [vtkusers] VTK CVS build on OSX 10.4 fails...any ideas?<BR>&gt;To: vtkusers@vtk.org<BR>&gt;Message-ID: &lt;C3CE123D-AEA6-44A4-962D-E5DDCBEE0C0A@chalkie.org.uk&gt;<BR>&gt;Content-Type: text/plain; charset=ISO-8859-1; delsp=yes; 
format=flowed<BR>&gt;<BR>&gt;Hi,<BR>&gt;<BR>&gt; I am trying to make a VTK CVS build on an apple G5 with 10.4 Tiger.<BR>&gt; using the apple supplied gcc 4<BR>&gt; for this project:<BR>&gt; www.bioimagexd.org<BR>&gt;<BR>&gt; I'm getting errors in the linking stage...<BR>&gt; looks like some symbol has the same name in the gcc libs as in<BR>&gt;vtk or<BR>&gt; something:<BR>&gt;<BR>&gt; when building libvtkImaging.dylib I get<BR>&gt; ld: multiple definitions of symbol<BR>&gt; in<BR>&gt; libgcc.a and libgcc_s.dylib<BR>&gt; the symbols are<BR>&gt; ___divdi3<BR>&gt; and<BR>&gt; ___udivdi3<BR>&gt;<BR>&gt; Before killing myself trying to fix it,<BR>&gt;<BR>&gt; I wondered if you had any good tips for getting the OSX 10.4<BR>&gt;build to<BR>&gt;<BR>&gt; work with the current CVS<BR>&gt;<BR>&gt; cheers<BR>&gt;<BR>&gt; Dan<BR>&gt;<BR>&gt;<BR>&gt;<BR>&gt;Dr. Daniel James White BSc. (Hons.) 
PhD<BR>&gt;Bioimaging Coordinator<BR>&gt;Nanoscience Centre and Department of Biological and Environmental<BR>&gt;Sciences<BR>&gt;Division of Molecular Recognition<BR>&gt;Ambiotica C242<BR>&gt;PO Box 35<BR>&gt;University of Jyväskylä<BR>&gt;Jyväskylä<BR>&gt;FIN 40014<BR>&gt;Finland<BR>&gt;<BR>&gt;+358 14 260 4183 (work)<BR>&gt;+358 468102840 (mobile)<BR>&gt;http://www.bioimagexd.org<BR>&gt;http://www.chalkie.org.uk<BR>&gt;dan@chalkie.org.uk<BR>&gt;white@cc.jyu.fi<BR>&gt;<BR>&gt;<BR>&gt;<BR>&gt;<BR>&gt;------------------------------<BR>&gt;<BR>&gt;Message: 5<BR>&gt;Date: Mon, 6 Jun 2005 17:09:43 +0200<BR>&gt;From: julien.barneoud@kodak.com<BR>&gt;Subject: [vtkusers] Stretching and shrinking 2D images<BR>&gt;To: vtkusers@vtk.org<BR>&gt;Message-ID:<BR>&gt; &lt;OF7781A066.AC89291C-ONC1257018.0052CB93-C1257018.005349B9@knotes.kodak.com&gt;<BR>&gt;<BR>&gt;Content-Type: text/plain; 
charset="us-ascii"<BR>&gt;<BR>&gt;Hi Tanya,<BR>&gt;<BR>&gt;Thanks for your help. I am now also using the same classes as you did ...<BR>&gt;Thank you very much.<BR>&gt;<BR>&gt;Regards,<BR>&gt;<BR>&gt;<BR>&gt;Julien BARNEOUD<BR>&gt;-------------- next part --------------<BR>&gt;An HTML attachment was scrubbed...<BR>&gt;URL: http://public.kitware.com/pipermail/vtkusers/attachments/20050606/38abd10e/attachment-0001.html<BR>&gt;<BR>&gt;------------------------------<BR>&gt;<BR>&gt;_______________________________________________<BR>&gt;vtkusers mailing list<BR>&gt;vtkusers@vtk.org<BR>&gt;http://www.vtk.org/mailman/listinfo/vtkusers<BR>&gt;<BR>&gt;<BR>&gt;End of vtkusers Digest, Vol 14, Issue 12<BR>&gt;****************************************<BR></div></html>