diff options
author | Christian C <cc@localhost> | 2025-03-23 15:50:03 -0700 |
---|---|---|
committer | Christian C <cc@localhost> | 2025-03-23 15:50:03 -0700 |
commit | 2fe858c22d27722130339c0d26de00aa78ef1f4d (patch) | |
tree | de0a52aab272ba4bb1a9189150d1509bb1b38089 /src | |
parent | 4bd07fca29619cf95f9ae224e9832e017c7d77b8 (diff) |
Shorter type names
Diffstat (limited to 'src')
-rw-r--r-- | src/prog.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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); |