From 70e11d4a0a257afa7e04b11e6240fd6386d4ad0f Mon Sep 17 00:00:00 2001 From: tbaudier Date: Tue, 13 Nov 2018 11:40:44 +0100 Subject: [PATCH] Precise information about SUV peak in comments and output --- tools/clitkSUVPeak.ggo | 6 ++++-- tools/clitkSUVPeakGenericFilter.txx | 2 +- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/tools/clitkSUVPeak.ggo b/tools/clitkSUVPeak.ggo index 8412941..3aac2ae 100644 --- a/tools/clitkSUVPeak.ggo +++ b/tools/clitkSUVPeak.ggo @@ -1,8 +1,10 @@ #File clitkSUVPeak.ggo package "clitkSUVPeak" version "2.0" -#This tool supports multiple images on the input, or even 4D, but all images must be of the same type and dimensions. -purpose "Compute statistics on an image, or on part of an image specified by a mask and label(s). The tool also supports multichannel images, which is useful, e.g., for vector fields. All channels are processed (separately) by default, but only one channel may be chosen." +purpose "This tool Compute the SUV Peak. +The output is the position of the SUV Peak (in mm) and its value. +The filter use a normalized sphere of 1 cc with 1 for voxel inside, 0 for outside. +And for voxels that intercepted the sphere, it computes the intersection volume using Monte Carlo simulation." option "config" - "Config file" string no option "verbose" v "Verbose" flag off diff --git a/tools/clitkSUVPeakGenericFilter.txx b/tools/clitkSUVPeakGenericFilter.txx index 127a071..498b09b 100644 --- a/tools/clitkSUVPeakGenericFilter.txx +++ b/tools/clitkSUVPeakGenericFilter.txx @@ -120,7 +120,7 @@ void SUVPeakGenericFilter::UpdateWithInputImageType() } typename ImageType::PointType p; output->TransformIndexToPhysicalPoint(index, p); - std::cout<<"SUV Peak found in "<< p << " with the value " << max << std::endl; + std::cout<<"SUV Peak found in "<< p << " mm with the value " << max << std::endl; } //-------------------------------------------------------------------- -- 2.45.0