I'm trying to export the results of the scikit-image.measure.find_contours() function as a shapefile or geojson after running on a satellite image.
The output is an array like (row, column) with coordinates along the contours, of which there are many.
How do I plot the coordinates of the various contours, and export this to a shapefile (can set appropriate projection etc.)?
My current code where 'mask' is my processed image:
from skimage import measure
import matplotlib.pyplot as plt
contours = measure.find_contours(mask, 0.5)
plt.imshow(mask)
for n, contour in enumerate(contours):
plt.plot(contour[:,1], contour[:, 0], linewidth=1)
Something along the lines of the following, adapted from a post by the primary developer of
rasterio
andfiona
, should work, though I'm sure you'll need to adapt a little more. It usesrasterio.features.shapes
to identify contiguous regions in an image that have some value and return the associated coordinates, based on the transform of the raster. It then writes those records to a shapefile usingfiona
.