From 18e5a16528bf8395132ee40ec2d672fc76d6635a Mon Sep 17 00:00:00 2001 From: Douglas Greve Date: Sun, 28 Nov 2021 22:32:15 -0500 Subject: [PATCH] mri_annotation2label.cpp. #DOC. Now prints the path to the output file with --lobes --- mri_annotation2label/mri_annotation2label.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/mri_annotation2label/mri_annotation2label.cpp b/mri_annotation2label/mri_annotation2label.cpp index bfcef1db060..d582d7b38a3 100644 --- a/mri_annotation2label/mri_annotation2label.cpp +++ b/mri_annotation2label/mri_annotation2label.cpp @@ -201,6 +201,7 @@ int main(int argc, char **argv) if(LobesFile) { MRISaparc2lobes(Surf, (int) Ge_lobarDivision); + printf("Writing annot to %s\n",LobesFile); MRISwriteAnnotation(Surf,LobesFile); if(ctabfile != NULL) { Surf->ct->idbase = segbase; @@ -225,6 +226,7 @@ int main(int argc, char **argv) } Surf->vertices[vtxno].annotation = 0; } + printf("Writing border annot to %s\n",BorderAnnotFile); err = MRISwriteAnnotation(Surf,BorderAnnotFile); if(err) { printf("ERROR: cannot write %s\n",BorderAnnotFile);