Running HelloWorld example of itk in Visual Studio 2013
问题 I have installed itk on my system using the answer in this link. So, I have bin, include, lib, share sub-folders in C:\Program Files (x86)\ITK. (Small question : does bin sub-folder only have "itkTestDriver.exe" file?) Now, I am trying to run HelloWorld example. I have created a project which consists of HelloWorld.cpp. #include "stdafx.h" #include "itkImage.h" #include <iostream> int main() { typedef itk::Image< unsigned short, 3 > ImageType; ImageType::Pointer image = ImageType::New(); std: