Skip to content

Commit

Permalink
ENH: Add dimension 4.
Browse files Browse the repository at this point in the history
  • Loading branch information
ntustison committed Apr 12, 2024
1 parent 06717e3 commit 91a793e
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 91a793e

Please sign in to comment.