<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML xmlns:o = "urn:schemas-microsoft-com:office:office" xmlns:w = 
"urn:schemas-microsoft-com:office:word"><HEAD>
<META http-equiv=Content-Type content="text/html; charset=iso-8859-1">
<META content="MSHTML 6.00.2900.2180" name=GENERATOR>
<STYLE>@page Section1 {size: 595.3pt 841.9pt; margin: 70.85pt 3.0cm 70.85pt 3.0cm; }
P.MsoNormal {
        FONT-SIZE: 12pt; MARGIN: 0cm 0cm 0pt; FONT-FAMILY: "Times New Roman"
}
LI.MsoNormal {
        FONT-SIZE: 12pt; MARGIN: 0cm 0cm 0pt; FONT-FAMILY: "Times New Roman"
}
DIV.MsoNormal {
        FONT-SIZE: 12pt; MARGIN: 0cm 0cm 0pt; FONT-FAMILY: "Times New Roman"
}
A:link {
        COLOR: blue; TEXT-DECORATION: underline
}
SPAN.MsoHyperlink {
        COLOR: blue; TEXT-DECORATION: underline
}
A:visited {
        COLOR: purple; TEXT-DECORATION: underline
}
SPAN.MsoHyperlinkFollowed {
        COLOR: purple; TEXT-DECORATION: underline
}
SPAN.EstiloCorreioElectrnico17 {
        COLOR: windowtext; FONT-FAMILY: Arial; mso-style-type: personal-compose
}
DIV.Section1 {
        page: Section1
}
</STYLE>
</HEAD>
<BODY lang=PT vLink=purple link=blue bgColor=#ffffff>
<DIV><FONT face=Arial size=2>How to send TRUE 24 Bit RGB values (in the range 0 
to 255 for&nbsp;each R,G,B plane)&nbsp;to vtkTubeFilter for each X,Y,Z 
coordinate?</FONT></DIV>
<DIV><FONT face=Arial size=2>I can't seem to get the true color representation? 
Is the default some 256 color or something?</FONT></DIV>
<DIV><FONT face=Arial size=2>I am attaching the code&nbsp;I am using.. would be 
really nice if someone could point out what is going wrong.</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
<DIV><FONT face=Arial size=2>Essentially I have a set of 
coordinates&nbsp;alongwith their RGB values and I want a Tube out of 
them..</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
<DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
<DIV><FONT face=Arial size=2>warm regards,</FONT></DIV>
<DIV><FONT face=Arial size=2>- Divya Rathore</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
<DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
<DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
<DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
<DIV><FONT face=Arial size=2>vtkPoints* temp_pts = vtkPoints::New(); // XYZ 
coords<BR>vtkPoints* scalar_rgb = vtkPoints::New(); // RGB values</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
<DIV><FONT face=Arial size=2>// Populate pts and RGB values</FONT></DIV>
<DIV><FONT face=Arial size=2>for(int k=0; k &lt; num_3D_points; 
k++)</FONT></DIV>
<DIV><FONT face=Arial size=2>{</FONT></DIV>
<DIV><FONT face=Arial size=2>&nbsp;&nbsp;&nbsp; temp_pts-&gt;InsertPoint(k, 
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;(double) 
Data[count1++], 
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;(double) 
Data[count1++], 
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;(double) 
Data[count1++]<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;);<BR>&nbsp;&nbsp;&nbsp;&nbsp;scalar_rgb-&gt;InsertPoint(k, 
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;(double) 
DataRGBval[count2++], 
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;(double) 
DataRGBval[count2++], 
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;(double) 
DataRGBval[count2++]<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;); 
// NOTE*** values in DataRGBval[]&nbsp;are in range [0,255] NOT 
[0,1]</FONT></DIV>
<DIV><FONT face=Arial size=2>}</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
<DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
<DIV><FONT face=Arial size=2>// Create the polyline.<BR>vtkCellArray *lines = 
vtkCellArray::New();<BR>int numPoints = 
temp_pts-&gt;GetNumberOfPoints();<BR>lines-&gt;InsertNextCell(numPoints);&nbsp;&nbsp;<BR>for 
(int j = 0; j &lt; numPoints; 
j++)&nbsp;lines-&gt;InsertCellPoint(j);</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
<DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
<DIV><FONT face=Arial size=2>// Insert Scalars.<BR>vtkFloatArray *scalars = 
vtkFloatArray::New();<BR>scalars-&gt;SetNumberOfComponents(3);</FONT></DIV>
<DIV><FONT face=Arial size=2>double pts[3];<BR>for(int j=0; j &lt; numPoints; 
j++)&nbsp;<BR>{<BR>&nbsp;&nbsp;&nbsp;&nbsp;scalar_rgb-&gt;GetPoint(j,pts);<BR>&nbsp;&nbsp;&nbsp;&nbsp;scalars-&gt;InsertTuple3(j, 
(float)pts[0]/255.0, (float)pts[1]/255.0, (float)pts[2]/255.0);<BR>} // division 
by 255.0 so that data is in range [0,1]</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
<DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
<DIV><FONT face=Arial size=2>vtkPolyData *profileData = 
vtkPolyData::New();<BR>profileData-&gt;SetPoints((vtkPoints 
*)(temp_pts));<BR>profileData-&gt;SetLines(lines);<BR>profileData-&gt;GetPointData()-&gt;SetScalars(scalars);<BR>profileData-&gt;BuildLinks();</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
<DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
<DIV><FONT face=Arial size=2>// Add thickness to the resulting 
line.<BR>vtkTubeFilter *axesTubes = 
vtkTubeFilter::New();<BR>axesTubes-&gt;SetNumberOfSides(12);<BR>axesTubes-&gt;SetInput(profileData);<BR>axesTubes-&gt;SetRadius(0.3);</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
<DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
<DIV><FONT face=Arial size=2>vtkPolyDataMapper *axesMapper = 
vtkPolyDataMapper::New();<BR>axesMapper-&gt;SetColorModeToMapScalars(); // This 
is important i 
guess<BR>axesMapper-&gt;SetScalarRange(0,numPoints-1);<BR>axesMapper-&gt;SetInput(axesTubes-&gt;GetOutput());<BR>&nbsp;&nbsp;&nbsp;<BR>vtkActor 
*axesActor = 
vtkActor::New();<BR>axesActor-&gt;SetMapper(axesMapper);</FONT></DIV>
<DIV>&nbsp;</DIV>
<DIV><FONT face=Arial size=2>ren1-&gt;AddActor(axesActor); // add to 
renderer<BR></FONT></DIV></BODY></HTML>