Top "Masked-array" questions

Masked arrays are NumPy arrays that may have missing or invalid entries.

How to properly mask a numpy 2D array?

Say I have a two dimensional array of coordinates that looks something like x = array([[1,2],[2,3],[3,4]]) Previously in my work so …

python numpy matrix mask masked-array
How can I change the value of a masked array in numpy?

In my code, at some point I try to modify a value of a masked array, yet python seems to …

python arrays numpy masked-array
Create mask from skimage contour

I have an image that I found contours on with skimage.measure.find_contours() but now I want to create …

python contour scikit-image masked-array