[vtkusers] vtkImageReslice and part of volume
Andrej Gluhov
realandron at gmail.com
Fri Nov 25 04:15:14 EST 2011
I trying to display a part of volume but in render I see all resliced
plane. How I can to display for exmaple only quarter of volume?
//Rotate coordinate axis
vtkMatrix4x4 matrix4x4 = new vtkMatrix4x4();
matrix4x4.Zero();
matrix4x4.SetElement(0, 0, 1);
matrix4x4.SetElement(2, 1, -1);
matrix4x4.SetElement(1, 2, 1);
matrix4x4.SetElement(3, 3, 1);
//{
// 1, 0, 0, 0,
// 0, 0, 1, 0,
// 0,-1, 0, 0,
// 0, 0, 0, 1
//};
//Translate by X and Y
matrix4x4.SetElement(0, 3, X);
matrix4x4.SetElement(1, 3, Y);
_axesTransform.SetMatrix(matrix4x4);
_axesTransform.Update();
--
Best regards, Andrew
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://www.vtk.org/pipermail/vtkusers/attachments/20111125/61581482/attachment.htm>
More information about the vtkusers
mailing list