Hi,<br><br>I was creating a image source (subclass of vtkImageAlgorithm) which conceptually looks something like this.<br><br>int vtkCustomImageSource::RequestData(<br> vtkInformation *vtkNotUsed(request),<br> vtkInformationVector **vtkNotUsed(inputVector),
<br> vtkInformationVector *outputVector<br> )<br>{<br> // get the info object<br> vtkInformation *outInfo = outputVector->GetInformationObject(0);<br> <br> // get the ouptut<br> vtkImageData *output = vtkImageData::SafeDownCast(outInfo->Get(vtkDataObject::DATA_OBJECT()));
<br> output->SetDimensions(10, 10, 1);<br> output->SetNumberOfScalarComponents(1);<br> output->SetSpacing(1,1,1);<br> output->AllocateScalars();<br><br> vtkIdType index = 0;<br> for(int i=0; i<10; i++)
<br> {<br> for(int j=0; j<10; j++)<br> {<br> for(int k=0; k<1; k++)<br> {<br> double* point = output->GetPoint(index++);<br> double dist = sqrt( point[0]*point[0] + point[1]*point[1] + point[2]*point[2] );
<br> output->SetScalarComponentFromDouble(i, j, k, 0, dist);<br> }<br> }<br> }<br><br> 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>