newbie here! I'm working with python plus opencv and skimage packages. I've segmented an image in superpixels using:
segments = slic(image, n_segments=numSegments, sigma=1, convert2lab=True)
Now I'd like to get the coordinates associated with each superpixel's centroid, how can I do that?