ITK beginner

Hi,
I installed ITK and CMAKE.
I have to make a c++ project in Eclipse and I need to include some ITK libraries such as
"itkImage.h" etc. I create a new c++ project in Eclipse, then I include the libraries I need but it says “unresolved inclusion”. What I need to do?

2 Likes

Short version, long version. For generator, choose Eclipse CDT, and you will have an eclipse project which can be opened using Eclipse.

1 Like

Hello and welcome @Scleri,

You can use CMake to do all the configuration step for you. In complement of Dženan links, you can take a look at this CMake Wiki page which cover the use of Eclipse CDT+Cmake.

HTH,

Tim

2 Likes

I managed to do it with an existing project, but I’m not able to understand with a new empty project…

How about this?

thanks!