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
fitQuadriTalus didn’t correctly identify the medial/lateral direction and inferior/superior. An hardcoded fix proposed by Erik Meilak:
In STAPLE_talus.m:
[AuxCSInfo.Y0,AuxCSInfo.Z0] = fitQuadriTalus(talusTri, V_all, debug_plots); %for LEFT FOOT AuxCSInfo.Y0=-AuxCSInfo.Y0; [AuxCSInfo.Y0,AuxCSInfo.Z0] = fitQuadriTalus(talusTri, V_all, debug_plots); %for RIGHT FOOT AuxCSInfo.Z0=-AuxCSInfo.Z0;
The text was updated successfully, but these errors were encountered:
Using the updated fitQuadriTalus.m code a different error is thrown:
Array indices must be positive integers or logical values. Error in fitQuadriTalus (line 114) Edge_sup = quadriV(I_V_sup:I_V_sup+1);
Which indicates that the index of the start vertex of the quadrilateral I_V_sup is never found.
Sorry, something went wrong.
No branches or pull requests
fitQuadriTalus didn’t correctly identify the medial/lateral direction and inferior/superior. An hardcoded fix proposed by Erik Meilak:
In STAPLE_talus.m:
The text was updated successfully, but these errors were encountered: