-
Notifications
You must be signed in to change notification settings - Fork 76
Description
Hi,
Recently I have segmented the image in the "examples" folder (/examples/torrey_pines_beach/torrey_pines_beach_image.jpg). I attempted to segment two images of different dimensions separately: one being the original-sized image (assuming the variable name after cv2 reading is img), and the other being an image with its height reduced by several pixels (e.g., img[:958, :, :], the origianal height is 960). During the segmentation, I set remove_edge_grains=True. In the end, I discovered that the grain segmentation results for the two images were not entirely identical, with some grains showing inconsistent segmentation, which led to differences in the calculated average area of all grains. What might be the possible reasons for this discrepancy?
Thank you!