Hi,<br><br>I was creating a image source (subclass of vtkImageAlgorithm) which conceptually looks something like this.<br><br>int vtkCustomImageSource::RequestData(<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; vtkInformation *vtkNotUsed(request),<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; vtkInformationVector **vtkNotUsed(inputVector),
<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; vtkInformationVector *outputVector<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; )<br>{<br>&nbsp;&nbsp;&nbsp; // get the info object<br>&nbsp;&nbsp;&nbsp; vtkInformation *outInfo = outputVector-&gt;GetInformationObject(0);<br>&nbsp;&nbsp;&nbsp; <br>&nbsp;&nbsp;&nbsp; // get the ouptut<br>&nbsp;&nbsp;&nbsp; vtkImageData *output = vtkImageData::SafeDownCast(outInfo-&gt;Get(vtkDataObject::DATA_OBJECT()));
<br>&nbsp;&nbsp;&nbsp; output-&gt;SetDimensions(10, 10, 1);<br>&nbsp;&nbsp;&nbsp; output-&gt;SetNumberOfScalarComponents(1);<br>&nbsp;&nbsp;&nbsp; output-&gt;SetSpacing(1,1,1);<br>&nbsp;&nbsp;&nbsp; output-&gt;AllocateScalars();<br><br>&nbsp;&nbsp;&nbsp; vtkIdType index = 0;<br>&nbsp;&nbsp;&nbsp; for(int i=0; i&lt;10; i++)
<br>&nbsp;&nbsp;&nbsp; {<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; for(int j=0; j&lt;10; j++)<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; for(int k=0; k&lt;1; k++)<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; double* point = output-&gt;GetPoint(index++);<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; double dist = sqrt( point[0]*point[0] + point[1]*point[1] + point[2]*point[2] );
<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; output-&gt;SetScalarComponentFromDouble(i, j, k, 0, dist);<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }<br>&nbsp;&nbsp;&nbsp; }<br><br>&nbsp;&nbsp;&nbsp; return 1;<br>}<br><br>The custom image source is similar in concept to the code written above (although not the same). But the above image source did not seem to work. I connected vtkCustomImageSource to vtkDataSetMapper and expected to see a colored box. But I saw absolotely no output. 
<br><br>Then I connected vtkCustomImageSource to a vtkOutlineFilter to see a outline of the data set. The surprising thing is that I see cube ! As the width, height and depth of the cube are equal. <br><br>I would be very thankful to anyone who can point out my mistake in the code.
<br><br>Best Regards,<br>Prashanth<br><br><br><br><br><br>