Skip to content

Commit

Permalink
Merge pull request #1722 from ANTsX/Overlap4
Browse files Browse the repository at this point in the history
ENH:  Add dimension 4.
  • Loading branch information
ntustison committed Apr 12, 2024
2 parents 06717e3 + 91a793e commit e390e73
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions Examples/LabelOverlapMeasures.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -235,6 +235,11 @@ LabelOverlapMeasures(std::vector<std::string> args, std::ostream * /*out_stream
return LabelOverlapMeasures<3>(argc, argv);
}
break;
case 4:
{
return LabelOverlapMeasures<4>(argc, argv);
}
break;
default:
std::cout << "Unsupported dimension" << std::endl;
return EXIT_FAILURE;
Expand Down

0 comments on commit e390e73

Please sign in to comment.