[SOLVED] itkTranslationTransform.h: No such file or directory

When using make on /home/james/ITK/Examples/RegistrationITKv4, I get the error itkTranslationTransform.h: No such file or directory. I’m a bit confused why this occurs, because ITKGroup_Core group is selected by default and itkTranslationTransform belongs to the core group (see screenshot below). What can I do to solve this error?

image

You need to enable BUILD_EXAMPLES when configuring ITK, in order for it to properly build. And that further requires ITK_BUILD_DEFAULT_MODULES. If you are interested in a particular example, you can turn it into a stand-alone project, and then you only need to turn on and build the modules your example is using.

Understood, thank you!