@@ -334,16 +334,17 @@ ClusterImageStatistics(std::vector<std::string> args, std::ostream * /*out_strea
334334 std::cout << " Given an ROI and Label Image, find the max and average value \n in a value image where the value "
335335 " > some user-defined threshold \n and the cluster size is larger than some min size. \n "
336336 << std::endl;
337- std::cout << " Usage: \n " << std::endl;
337+ std::cout << " Usage: " << std::endl;
338338 std::cout << argv[0 ]
339- << " ImageDimension ROIMask.ext LabelImage.ext OutPrefix MinimumClusterSize ValueImageThreshold "
340- " Image1WithValuesOfInterest.ext ... ImageNWithValuesOfInterest.ext \n \n "
339+ << " ImageDimension ROIMask.ext LabelImage.ext OutPrefix { MinimumClusterSize=1} { ValueImageThreshold=0} "
340+ " Image1WithValuesOfInterest.ext ... ImageNWithValuesOfInterest.ext"
341341 << std::endl;
342- std::cout << " ROIMask.ext -- overall region of interest \n \n LabelImage.ext -- labels for the sub-regions, e.g. "
343- " Brodmann or just unique labels (see LabelClustersUniquely ) \n \n OutputPrefix -- all output has "
344- " this prefix \n \n MinimumClusterSize -- the minimum size of clusters of interest \n \n "
345- " ValueImageThreshold -- minimum value of interest \n \n Image*WithValuesOfInterest.ext --- "
346- " image(s) that define the values you want to measure \n " ;
342+ std::cout << " ROIMask.ext -- overall region of interest" << std::endl;
343+ std::cout << " LabelImage.ext -- labels for sub-regions (see LabelClustersUniquely)" << std::endl;
344+ std::cout << " OutPrefix -- prefix for all output files" << std::endl;
345+ std::cout << " MinimumClusterSize -- minimum cluster size in voxels (default: 1)" << std::endl;
346+ std::cout << " ValueImageThreshold -- minimum value of interest (default: 0)" << std::endl;
347+ std::cout << " Image*WithValuesOfInterest.ext -- image(s) that define the values to measure" << std::endl;
347348 if (argc >= 2 && (std::string (argv[1 ]) == std::string (" --help" ) || std::string (argv[1 ]) == std::string (" -h" )))
348349 {
349350 return EXIT_SUCCESS ;
0 commit comments