Hi,<br>it seems that you allocate correctly a 3 components array in ImageData, but the one you fill in is not the former !<br>your 'scalars' is another float array, which you fill with InsertTupe1, i.e. *one* component.<br>
You have to specify the data type for your vtkImageData and use, for instance, the SetScalarComponentFromFloat<br>function, that is member of vtkImageData.<br><br>I think you will find lots of example on the VTK wiki that do such a fill.<br>
<br>HTH<br>Jerome<br><br><div class="gmail_quote">2010/3/20 Андрей Глухов <span dir="ltr"><<a href="mailto:realandron@gmail.com">realandron@gmail.com</a>></span><br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
<span><span title="Как создать цветное vtkImageData."></span><span title="Если я set SetNumberOfScalarComponents(3) и заполняю массив с помощью vtkMath.Random то изображение выводится цветное.">If I set SetNumberOfScalarComponents (3) and fills the array with vtkMath.Random a color image is displayed,but</span><span title="А если я подставляю конкретные значения, то изображение выводится в серых оттенках."> if I substituted specific values, the image is displayed in grayscale. </span><span title="Как правильно создавать массив?">How to create an array?</span></span><br clear="all">
//code<br> vtkImageData vol = new vtkImageData();<br><div style="text-align: left;"> vol.SetDimensions(512, 512, 1);<br> vol.SetSpacing(10, 10, 10);<br> vol.SetOrigin(0, 0, 0);<br>
vol.AllocateScalars();<br> vol.SetNumberOfScalarComponents(3);<br><br> vtkFloatArray scalars = new vtkFloatArray();<br> for (int i = 0; i < 512; i++)<br> {<br> for (int j = 0; j < 512; j++)<br>
{<br> scalars.InsertTuple1(i * 512 + j,vtkMath.Random(0, 2000));//<span><span title="Почему серое при моих значениях???">Why grayscale with my values??</span></span><br>
}<br> }<br><br> vol.GetPointData().SetScalars(scalars);<br> vol.Update();<br><br> vtkImageViewer viewer = new vtkImageViewer();<br> viewer.SetInput(vol);<br>
viewer.SetSize(512, 512);<br> viewer.Render();<br></div><font color="#888888">-- <br>С Уважением,<br>Андрей.<br>Best regards, Andrew<br>
</font><br>_______________________________________________<br>
Powered by <a href="http://www.kitware.com" target="_blank">www.kitware.com</a><br>
<br>
Visit other Kitware open-source projects at <a href="http://www.kitware.com/opensource/opensource.html" target="_blank">http://www.kitware.com/opensource/opensource.html</a><br>
<br>
Please keep messages on-topic and check the VTK FAQ at: <a href="http://www.vtk.org/Wiki/VTK_FAQ" target="_blank">http://www.vtk.org/Wiki/VTK_FAQ</a><br>
<br>
Follow this link to subscribe/unsubscribe:<br>
<a href="http://www.vtk.org/mailman/listinfo/vtkusers" target="_blank">http://www.vtk.org/mailman/listinfo/vtkusers</a><br>
<br></blockquote></div><br>