Skip to content

Commit 2ebae4d

Browse files
committed
Merge pull request #400 from MRtrix3/5tt_documentation_additions
ACT: minor changes to documentation
2 parents 62ace96 + cf448df commit 2ebae4d

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

cmd/5ttgen.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,8 @@ void usage ()
4545
AUTHOR = "Robert E. Smith (r.smith@brain.org.au)";
4646

4747
DESCRIPTION
48-
+ "concatenate segmentation results from FSL FAST and FIRST into the 5TT format required for ACT";
48+
+ "concatenate segmentation results from FSL FAST and FIRST into the 5TT format required for ACT"
49+
+ "Note: if you need to add a pathological tissue mask, use the 5ttedit command.";
4950

5051
ARGUMENTS
5152
+ Argument ("in_fast_one", "first output PVE image from FAST (should be CSF)").type_image_in()

src/dwi/tractography/ACT/act.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ namespace MR
5858
void verify_5TT_image (const Image::Header& H)
5959
{
6060
if (!H.datatype().is_floating_point() || H.ndim() != 4 || H.dim(3) != 5)
61-
throw Exception ("Image " + H.name() + " is not a valid ACT 5TT image");
61+
throw Exception ("Image " + H.name() + " is not a valid ACT 5TT image (expecting 4D image with 5 volumes and floating-point datatype)");
6262
}
6363

6464

0 commit comments

Comments
 (0)