ITK测试程序

#include "itkImage.h"
#include <iostream>

using namespace std;
using namespace itk;

int main() 
{
    typedef Image<unsigned short, 3> ImageType;

    ImageType::Pointer image = ImageType::New();

    cout << "ITK Hello World!" << endl;

    system("pause");

    return 0;

}

猜你喜欢

转载自blog.csdn.net/caomin1hao/article/details/81131180