Skip to Main Content Skip to Search
Login
File Exchange
MATLAB Newsgroup
Link Exchange
  Blogs  
 Contest 
MathWorks.com

Thread Subject: image of head

Subject: image of head

From: Jon

Date: 1 Apr, 2008 22:40:19

Message: 1 of 5

I have brain data that I would like to overlay on an image
of a head. The head can be translucent and should be 3D so
that I can rotate the head in space and see structures
within. Can someone please tell me how or direct me to
references on how to create this type of head image. Thank
you, Jon Hauris

Subject: image of head

From: Bryan

Date: 1 Apr, 2008 23:57:01

Message: 2 of 5

"Jon " <jon.f.hauris@baesystems.com> wrote in message
<fsudkj$ctq$1@fred.mathworks.com>...
> I have brain data that I would like to overlay on an image
> of a head. The head can be translucent and should be 3D so
> that I can rotate the head in space and see structures
> within. Can someone please tell me how or direct me to
> references on how to create this type of head image. Thank
> you, Jon Hauris

do you have two volumetric datasets that are of the same
head? if so, there are many examples of how to do this in
the functional mri literature. there is even a relevant
example in the matlab documentation. just look for "mri
image visualization" in the documentation, and you will find
something that will help. the help document title is
"Techniques for Visualizing Scalar Volume Data." this is
not exactly what you asked for, but a slight modification
will get you to what i think is your desired result.
basically, what you want is to draw a set of 'nested'
isosurfaces of your data, assuming they are registered (i.e.
in the same coordinate system). to do this, you will need
to find an 'isovalue' that gives you a good representation
of the surface of the head, and an isovalue that gives you a
good representation of the surface of the brain (or any
brain structure you wish to visualize). it would look
something like this:

p1 = patch(isosurface(headImage, headIsoValue),
'edgecolor','none','facealpha',.25); hold on

p2 = patch(isosurface(brainImage, brainIsoValue));


obviously you will want to modify the 'facecolor' properties
of p1 and p2 to suit your needs.

bryan

Subject: image of head

From: ImageAnalyst

Date: 2 Apr, 2008 01:06:53

Message: 3 of 5

On Apr 1, 6:40=A0pm, "Jon " <jon.f.hau...@baesystems.com> wrote:
> I have brain data that I would like to overlay on an image
> of a head. =A0The head can be translucent and should be 3D so
> that I can rotate the head in space and see structures
> within. =A0Can someone please tell me how or direct me to
> references on how to create this type of head image. =A0Thank
> you, Jon Hauris
---------------------------------------------------
Jon:
Use Amira. It's the best volume visualization program available.
http://www.amiravis.com/

Subject: image of head

From: Bryan

Date: 2 Apr, 2008 01:32:01

Message: 4 of 5

ImageAnalyst <imageanalyst@mailinator.com> wrote in message
<1c2cba86-7b52-428b-bae6-012d1cfbf662@b1g2000hsg.googlegroups.com>...
> ---------------------------------------------------
> Jon:
> Use Amira. It's the best volume visualization program
available.
> http://www.amiravis.com/

i most certainly agree... but it costs about $6K (USD)! not
that matlab is any cheaper (i am continually amazed at the
price of a commercial matlab licesne), i assume jon already
has matlab, and the cost of amira might make it unavailable.

bryan

Subject: image of head

From: ImageAnalyst

Date: 2 Apr, 2008 02:39:52

Message: 5 of 5

On Apr 1, 9:32=A0pm, "Bryan " <cssm...@gmail.com> wrote:
> ImageAnalyst <imageanal...@mailinator.com> wrote in message
>
> <1c2cba86-7b52-428b-bae6-012d1cfbf...@b1g2000hsg.googlegroups.com>...
>
> > ---------------------------------------------------
> > Jon:
> > Use Amira. =A0It's the best volume visualization program
> available.
> >http://www.amiravis.com/
>
> i most certainly agree... but it costs about $6K (USD)! =A0not
> that matlab is any cheaper (i am continually amazed at the
> price of a commercial matlab licesne), i assume jon already
> has matlab, and the cost of amira might make it unavailable.
>
> bryan

You may or may not be right because of your assumption. That was an
assumption I didn't make. Because he didn't mention anything about
his budget I didn't make any assumptions about it. But I agree that
for most us $5-6k is not pocket change.

Tags for this Thread

Everyone's Tags:

Add a New Tag:

Separated by commas
Ex.: root locus, bode

What are tags?

A tag is like a keyword or category label associated with each thread. Tags make it easier for you to find threads of interest.

Anyone can tag a thread. Tags are public and visible to everyone.

Tag Activity for This Thread
Tag Applied By Date/Time
patch Bryan 1 Apr, 2008 20:00:14
alpha Bryan 1 Apr, 2008 20:00:14
isosurface Bryan 1 Apr, 2008 20:00:14
image Jon 1 Apr, 2008 18:45:07
mri Jon 1 Apr, 2008 18:45:07
eeg Jon 1 Apr, 2008 18:45:07
head Jon 1 Apr, 2008 18:45:06
rssFeed for this Thread

envelope graphic E-mail this page to a colleague

Public Submission Policy
NOTICE: Any content you submit to MATLAB Central, including personal information, is not subject to the protections which may be afforded information collected under other sections of The MathWorks, Inc. Web site. You are entirely responsible for all content that you upload, post, e-mail, transmit or otherwise make available via MATLAB Central. The MathWorks does not control the content posted by visitors to MATLAB Central and, does not guarantee the accuracy, integrity, or quality of such content. Under no circumstances will The MathWorks be liable in any way for any content not authored by The MathWorks, or any loss or damage of any kind incurred as a result of the use of any content posted, e-mailed, transmitted or otherwise made available via MATLAB Central. Read the complete Disclaimer prior to use.
Related Topics