Skip to content
New issue

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

Fix mismatch ambiguous size compilation error #1209

Merged
merged 2 commits into from
Jul 18, 2021

Commits on Jul 15, 2021

  1. COMP: Use matching sized vectors and matricies

    Prefer to use fixed size vnl_vector_fixed and vnl_matrix_fixed to match the required size for the algorithms.
    
    The previous implementation used generic sized objects and runtime if/else conditionals. Current implementation uses compile time function overloading to accomplish the same behavior.
    hjmjohnson committed Jul 15, 2021
    Configuration menu
    Copy the full SHA
    8c79f52 View commit details
    Browse the repository at this point in the history
  2. COMPL Place WriteImage function in ANTs namespace

    The WriteImage function conflicts with the same named itk::WriteImage function.
    
    Dis-ambiguate by using the ANTs namespace.
    hjmjohnson committed Jul 15, 2021
    Configuration menu
    Copy the full SHA
    c0620bc View commit details
    Browse the repository at this point in the history