VTK7版本中图像创建,其中图像参数定义的方式改变
VTK5
img->SetNumberOfScalarComponents(1);
img->SetScalarTypeToUnsignedChar();
img->AllocateScalars();
VTK7
img->AllocateScalars(VTK_UNSIGNED_CHAR, 1);
#include "vtkAutoInit.h"
VTK_MODULE_INIT(vtkRenderingOpenGL2); // VTK was built with vtkRenderingOpenGL2
VTK_MODULE_INIT(vtkInteractionStyle);
/**********************************************************************
文件名: 4.1_ReadSeriesImages1.cpp
Copyright (c) 张晓东, 罗火灵. All rights reserved.
更多信息请访问:
http://www.vtkchina.org (VTK中国)
http://blog.csdn.net/www_doling_net (东灵工作室)
**********************************************************************/
/**********************************************************************
文件名: 4.2_Import3DS.cpp
Copyright (c) 张晓东, 罗火灵. All rights reserved.
更多信息请访问:
http://www.vtkchin