Skip to content

Commit

Permalink
docs(compare-images): baseline-images option grammar
Browse files Browse the repository at this point in the history
  • Loading branch information
thewtex committed Mar 21, 2024
1 parent 27fb987 commit 87205d7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/compare-images/compare-double-images.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ CompareImages(itk::wasm::Pipeline & pipeline, const TImage * testImage)

using InputImageType = itk::wasm::InputImage<ImageType>;
std::vector<InputImageType> baselineImages;
pipeline.add_option("-b,--baseline-images", baselineImages, "Baseline images compare against")->required()->expected(1,-1)->type_name("INPUT_IMAGE");
pipeline.add_option("-b,--baseline-images", baselineImages, "Baseline images to compare against")->required()->expected(1,-1)->type_name("INPUT_IMAGE");

itk::wasm::OutputTextStream metrics;
pipeline.add_option("metrics", metrics, "Metrics for the baseline with the fewest number of pixels outside the tolerances.")->type_name("OUTPUT_JSON");
Expand Down

0 comments on commit 87205d7

Please sign in to comment.