aboutsummaryrefslogtreecommitdiff
path: root/include/lib/seg/util.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/lib/seg/util.h')
-rw-r--r--include/lib/seg/util.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/lib/seg/util.h b/include/lib/seg/util.h
index db46e5a..4d6b6e4 100644
--- a/include/lib/seg/util.h
+++ b/include/lib/seg/util.h
@@ -26,12 +26,12 @@ void closeup(MaskData_t** mask, uint32_t width, uint32_t height, size_t count);
// Combine Label Masks
// For all empty spaces in the destination, put the extra label if it exists
// Allocates an array if destination is unallocated
-ImageMask* combine_masks(ImageMask *destination, ImageMask *extra_labels);
+Mask* combine_masks(Mask *destination, Mask *extra_labels);
// Process Tif File to Labels
// width, height will be overwritten with image dimensions
// starting_label_p will be incremented for each label found in the image
-ImageMask* tif_to_labels(char* tif_file_name, uint32_t *width, uint32_t *height, MaskData_t *starting_label_p);
+Mask* tif_to_labels(char* tif_file_name, uint32_t *width, uint32_t *height, MaskData_t *starting_label_p);
// Convert mask to bitmap
Bitmap* image_mask_data_to_bitmap(MaskData_t* buffer, uint32_t width, uint32_t height);