<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
  <channel>
    <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/169379</link>
    <title>MATLAB Central Newsreader - isosurface visualization</title>
    <description>Feed for thread: isosurface visualization</description>
    <language>en-us</language>
    <copyright>&amp;copy;1994-2008 by The MathWorks, Inc.</copyright>
    <webmaster>webmaster@mathworks.com</webmaster>
    <generator>MATLAB Central Newsreader</generator>
    <docs>http://blogs.law.harvard.edu/tech/rss</docs>
    <ttl>60</ttl>
    <image>
      <title>The MathWorks</title>
      <url>http://www.mathworks.com/images/membrane_icon.gif</url>
    </image>
    <item>
      <pubDate>Fri, 16 May 2008 08:56:03 -0400</pubDate>
      <title>isosurface visualization</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/169379#432437</link>
      <author>misty m.</author>
      <description>hi,&lt;br&gt;
i would like to do some 3d volume visualization. i have CT &lt;br&gt;
images of drilled (in a bone) hole.&lt;br&gt;
from each of images i've found contours of drilled hole-so &lt;br&gt;
i've got (x,y) coefficients of each hole. i decided the &lt;br&gt;
distance between holes = 1. so i've got 3d coeffiecients &lt;br&gt;
for my solid, x,y-coefs of hole and z-distance. &lt;br&gt;
i would like to do the visualization using 'isosurface', &lt;br&gt;
cause i like its effects most, but..&lt;br&gt;
&lt;br&gt;
fv = isosurface(X,Y,Z,V,isovalue)&lt;br&gt;
&lt;br&gt;
X,Y,Z - i've got&lt;br&gt;
V - i do not have volume&lt;br&gt;
isovalue - what describes it? what value should it have?&lt;br&gt;
&lt;br&gt;
i would be really gratefull for any suggestions,&lt;br&gt;
&amp;nbsp;kind regards &lt;br&gt;
</description>
    </item>
    <item>
      <pubDate>Fri, 16 May 2008 12:52:24 -0400</pubDate>
      <title>Re: isosurface visualization</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/169379#432481</link>
      <author>Michael Garrity</author>
      <description>"misty m." &amp;lt;donotspam@smth.be&amp;gt; wrote in message news:g0ji72$1o5$1@fred.mathworks.com...&lt;br&gt;
&amp;gt; hi,&lt;br&gt;
&amp;gt; i would like to do some 3d volume visualization. i have CT&lt;br&gt;
&amp;gt; images of drilled (in a bone) hole.&lt;br&gt;
&amp;gt; from each of images i've found contours of drilled hole-so&lt;br&gt;
&amp;gt; i've got (x,y) coefficients of each hole. i decided the&lt;br&gt;
&amp;gt; distance between holes = 1. so i've got 3d coeffiecients&lt;br&gt;
&amp;gt; for my solid, x,y-coefs of hole and z-distance.&lt;br&gt;
&amp;gt; i would like to do the visualization using 'isosurface',&lt;br&gt;
&amp;gt; cause i like its effects most, but..&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; fv = isosurface(X,Y,Z,V,isovalue)&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; X,Y,Z - i've got&lt;br&gt;
&amp;gt; V - i do not have volume&lt;br&gt;
&amp;gt; isovalue - what describes it? what value should it have?&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; i would be really gratefull for any suggestions,&lt;br&gt;
&amp;gt; kind regards&lt;br&gt;
&lt;br&gt;
No, isosurface works directly from the CT images. You stack&lt;br&gt;
them up to form a 3D array V, and then give that to isosurface.&lt;br&gt;
The isovalue is the level at which you've drawn your contours.&lt;br&gt;
&lt;br&gt;
I don't know of a MATLAB function for building a surface&lt;br&gt;
between a set of contours. There are some tricky cases there&lt;br&gt;
when you have a different number of sample points in adjacent&lt;br&gt;
contours or when the topology changes between contours.&lt;br&gt;
&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;-MPG-&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
</description>
    </item>
    <item>
      <pubDate>Fri, 16 May 2008 13:11:01 -0400</pubDate>
      <title>Re: isosurface visualization</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/169379#432487</link>
      <author>mark b.</author>
      <description>that explains a lot!&lt;br&gt;
thanks!&lt;br&gt;
</description>
    </item>
    <item>
      <pubDate>Fri, 16 May 2008 13:34:02 -0400</pubDate>
      <title>Re: isosurface visualization</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/169379#432494</link>
      <author>misty m.</author>
      <description>ok, so is there any function that can gives similar effects &lt;br&gt;
as isosurface but fot x,y,z coeffiecients? &lt;br&gt;
when i try surf:&lt;br&gt;
[A,B,C]=meshgrid(a,b,c)&lt;br&gt;
(where a,b,c are my coeffiecients)&lt;br&gt;
surf(A,B,C) i got:&lt;br&gt;
??? CData must be an M-by-N matrix or M-by-N-by-3 array.&lt;br&gt;
&lt;br&gt;
Error in ==&amp;gt; surf at 81&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;hh = double(graph3d.surfaceplot(args{:},'parent',cax));&lt;br&gt;
&lt;br&gt;
i think that my main problem is that i do not clearly &lt;br&gt;
understand what 'meshgrid' is for. if i have a,b,c coefs &lt;br&gt;
why do i need to do any matrixes? i have a mesh of my &lt;br&gt;
coefs, why can't i simply put them into surf() or mesh() &lt;br&gt;
function?&lt;br&gt;
&lt;br&gt;
the other thing is that i've found such a function &lt;br&gt;
surf2patch. it returned me:&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;faces: [9216x4 double]&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;vertices: [9409x3 double]&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;facevertexcdata: [9409x1 double]&lt;br&gt;
&lt;br&gt;
can You please explain me, what are these? can i use them &lt;br&gt;
to plot my solid?&lt;br&gt;
&lt;br&gt;
kind regards&lt;br&gt;
</description>
    </item>
  </channel>
</rss>
