<html>
<head>
<style><!--
.hmmessage P
{
margin:0px;
padding:0px
}
body.hmmessage
{
font-size: 10pt;
font-family:Tahoma
}
--></style>
</head>
<body class='hmmessage'>
Hi again,<div><br></div><div>the problem is that i got an error at doing itRGB.Set(rgbPixel).</div><div>why is that happening?</div><div>Thanks,</div><div><br><div>
<p align="center"><font color="#000000"><img height="2" src="http://graphics.hotmail.com/greypixel.gif" width="100%" vspace="9"></font></p></div><br><br><br><br><hr id="stopSpelling">From: albagarin1986@hotmail.com<br>To: seth@mech.ubc.ca; insight-users@itk.org<br>Date: Mon, 14 Feb 2011 07:52:29 +0000<br>Subject: Re: [Insight-users] map the colours from the eigenvector<br><br>

<meta http-equiv="Content-Type" content="text/html; charset=unicode">
<meta name="Generator" content="Microsoft SafeHTML">
<style>
.ExternalClass .ecxhmmessage P
{padding:0px;}
.ExternalClass body.ecxhmmessage
{font-size:10pt;font-family:Tahoma;}

</style>


<br><div>Thanks, I needed to save each component in RGB pixels so your pseudo code is useful.&nbsp;</div><div><br>
<p align="center"><font color="#000000"><img height="2" src="http://graphics.hotmail.com/greypixel.gif" width="100%" vspace="9"></font></p></div><br><br><br><br><hr id="ecxstopSpelling">From: seth@mech.ubc.ca<br>Date: Fri, 11 Feb 2011 13:25:25 -0800<br>Subject: [Insight-users] map the colours from the eigenvector<br>To: insight-users@itk.org; albagarin1986@hotmail.com<br><br>Hi Alba,<br>I'm not sure if I understand, is it the magnitude that you want mapped or the direction?&nbsp; You can use ParaView to create visualizations of both from an image of vectors, and that my be the best way to go.&nbsp; ParaView makes some very pretty pictures!<br>

<br>If you want to save each component of the vector to the components of an RGB pixel, you could use iterators to move through the image and save each component of the eigenvector to an RGB pixel as in the following pseudo code (more details in the Software Guide, page 738 on).<br>

<br>RBGIteratorType itRGB(rbgImage, vectorImage-&gt;GetLargestPossibleRegion());<br>ConstVectorIteratorType constItVec(vectorImage, vectorImage-&gt;GetLargestPossibleRegion());<br><br>for ([the whole region])<br>{<br>&nbsp;&nbsp; VectorImageType::PixelType currentVectorPixel = constItVec.Get();<br>

&nbsp;&nbsp; <br>&nbsp;&nbsp; RGBImageType::PixelType currentRGBPixel;<br>&nbsp;&nbsp; currentRGBPixel-&gt;SetBlue(currentVectorPixel[0]); // make sure your vector component type and pixel type match<br>&nbsp;&nbsp; currentRGBPixel-&gt;SetGreen(currentVectorPixel[1]);&nbsp; // you will also want to normalize your vector components by the largest in the image. <br>

&nbsp;&nbsp; currentRGBPixel-&gt;SetRed(currentVectorPixel[2]);<br>&nbsp;&nbsp; <br>&nbsp;&nbsp; itRGB.Set(currentRGBPixel);<br>}<br><br><br>                                               
<br>_____________________________________
Powered by www.kitware.com

Visit other Kitware open-source projects at
http://www.kitware.com/opensource/opensource.html

Kitware offers ITK Training Courses, for more information visit:
http://www.kitware.com/products/protraining.html

Please keep messages on-topic and check the ITK FAQ at:
http://www.itk.org/Wiki/ITK_FAQ

Follow this link to subscribe/unsubscribe:
http://www.itk.org/mailman/listinfo/insight-users</div>                                               </body>
</html>