Skip to content

Commit

Permalink
less verbose
Browse files Browse the repository at this point in the history
  • Loading branch information
oguyon committed Oct 24, 2023
1 parent ddd5a76 commit 68ddfcf
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/COREMOD_arith/imfunctions.c
Original file line number Diff line number Diff line change
Expand Up @@ -1263,7 +1263,7 @@ errno_t arith_img_function_2_1(
uint64_t nbpix2 = 1;
for ( uint8_t axis = 0; axis < outimg->naxis; axis++)
{
printf("Checking axis %u\n", axis);
//printf("Checking axis %u\n", axis);

in1expand[axis] = 1;
in2expand[axis] = 1;
Expand Down Expand Up @@ -1298,14 +1298,14 @@ errno_t arith_img_function_2_1(
if( size1 == 1 )
{
in1expand[axis] = 0;
printf("Expanding im1 axis %d to %u\n", axis, size2);
//printf("Expanding im1 axis %d to %u\n", axis, size2);
outimg->size[axis] = size2;

}
else if ( size2 == 1)
{
in2expand[axis] = 0;
printf("Expanding im2 axis %d to %u\n", axis, size1);
//printf("Expanding im2 axis %d to %u\n", axis, size1);
outimg->size[axis] = size1;
}
else
Expand All @@ -1316,7 +1316,7 @@ errno_t arith_img_function_2_1(
}
}

printf(" size %5u %5u %5u\n", size1, size2, outimg->size[axis]);
//printf(" size %5u %5u %5u\n", size1, size2, outimg->size[axis]);

nbpix *= outimg->size[axis];
}
Expand Down

0 comments on commit 68ddfcf

Please sign in to comment.