image analysis python

Solutions on MaxInterview for image analysis python by the best coders in the world

showing results for - "image analysis python"
Lotta
01 Jan 2020
1import matplotlib.pyplot as plt   
2%matplotlib inline
3        
4from skimage import data,filters
5        
6image = data.coins()   # ... or any other NumPy array!  
7edges = filters.sobel(image)  
8plt.imshow(edges, cmap='gray')