<div dir="ltr"><div><div><div><div><div><div><div><div>Hi everybody.<br></div>I'd like to read a NIFTI image from VTK.<br></div>I downloaded and compiled VTK 6.1.0, but when I include the vtkNIFTIImageReader header file, the compilation gives the error "No such file or directory".<br></div>I've searched for the header file into the VTK directory and it is true, there is no such a file.<br><br></div><div>I've tested with vtkImageReader2 and compilation goes fine, but the NIFTI file read does not seem to go well.<br></div><div><br></div>Does anybody know what the problem could be?<br><br></div>Thanks a lot.<br></div>My best regards.<br></div>/Francisco<br><br></div>P.D.: My CMakeLists.txt contains the next lines:<br><br>cmake_minimum_required(VERSION 2.8)<br><br>project(CV_TFM_CONVEX_HULL)<br><br># Find VTK.<br>find_package(VTK REQUIRED)<br>include(${VTK_USE_FILE})<br><br>set(CV_TFM_CONVEX_HULL_SRC CV_TFM_ConvexHull.cxx)<br><br>add_executable(CV_TFM_CONVEX_HULL ${CV_TFM_CONVEX_HULL_SRC})<br><br>target_link_libraries(CV_TFM_CONVEX_HULL ${VTK_LIBRARIES})<br><br></div>