getting this error in both header files
Element ‘1’: conversion from ‘int’ to ‘bool’ requires a narrowing conversion
I would like to know if I should be using the ITK header files from within the SITK code, or from the ITK library itself?
getting this error in both header files
Element ‘1’: conversion from ‘int’ to ‘bool’ requires a narrowing conversion
I would like to know if I should be using the ITK header files from within the SITK code, or from the ITK library itself?
I changed the code from std::vector m_WhichDimensions{ std::vector(3, true) }
to
std::vector m_WhichDimensions{ true, true, true };
Hello,
Thank you for posting the error you encountered. Could you please provide the following information:
Thank you for the additional information to help address the issue.
I built the latest version 2.5.3
OS is WIndows10 x64, MSVC compiler
Used the Superbuild with cmake
I already posted the solution