We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The typedef typedef itk::Matrix < double, 3, 3 > DirectionType; is defined twice: here and here, hence a compilation error.
typedef itk::Matrix < double, 3, 3 > DirectionType;
Possible fix:
In file direction_cosines.h delete DirectionType definition and add itk_image.h header
direction_cosines.h
itk_image.h
.... #include "itk_image.h" #include "plm_math.h" #define DIRECTION_COSINES_IDENTITY_THRESH 1e-9 #define DIRECTION_COSINES_EQUALITY_THRESH 1e-9 namespace itk { template<class T, unsigned int NRows, unsigned int NColumns> class Matrix; } //typedef itk::Matrix < double, 3, 3 > DirectionType; ....
The text was updated successfully, but these errors were encountered:
Here is the Pull Request for possible Plastimatch fix.
Sorry, something went wrong.
Pull Request for Plastimatch update is #220.
No branches or pull requests
The typedef
typedef itk::Matrix < double, 3, 3 > DirectionType;
is defined twice: here and here, hence a compilation error.Possible fix:
In file
direction_cosines.h
delete DirectionType definition and additk_image.h
headerThe text was updated successfully, but these errors were encountered: