From 2fe858c22d27722130339c0d26de00aa78ef1f4d Mon Sep 17 00:00:00 2001 From: Christian C Date: Sun, 23 Mar 2025 15:50:03 -0700 Subject: Shorter type names --- src/prog.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/prog.c b/src/prog.c index 87b7bb3..3335268 100644 --- a/src/prog.c +++ b/src/prog.c @@ -88,7 +88,7 @@ int main(int argc, char** argv) uint32_t width, height; MaskData_t starting_label = 1; MaskData_t *masks = NULL; - ImageMask *masks_im = NULL; + Mask *masks_im = NULL; // Expect a directory to be passed as the first argument if (directory != NULL) { // Ensure the directory exists @@ -118,7 +118,7 @@ int main(int argc, char** argv) //----------------------------------------------- //-PROCESS-TIFF-TO-LABELS------------------------ //----------------------------------------------- - ImageMask *file_im = tif_to_labels(fpath, &width, &height, &starting_label); + Mask *file_im = tif_to_labels(fpath, &width, &height, &starting_label); MaskData_t *file_labels = file_im->image[0]; if (file_labels == NULL) { free(fpath); -- cgit v1.2.1