Top "Scikit-image" questions

scikit-image is a Python image processing toolbox for SciPy.

Alternative to scipy.misc.imresize()

I want to use an old script which still uses scipy.misc.imresize() which is not only deprevated but removed …

python-3.x numpy scipy scikit-image
How to crop or remove white background from an image

I am trying to compare images using OpenCV and Python. Consider these images: Both feature an identical pair of shoes, …

python opencv python-imaging-library scikit-image
skimage: Why does rgb2gray from skimage.color result in a colored image?

When I tried to convert the image to gray scale using: from skimage.io import imread from skimage.color import …

python image-processing scikit-image
Transform an image to a bitmap

I'm trying to create like a bitmap for an image of a letter but I'm not having the desired result. …

python numpy computer-vision scikit-image
ImportError: cannot import name 'structural_similarity' error

In my image comparision code following: https://www.pyimagesearch.com/2014/09/15/python-compare-two-images/ While using from skimage.measure import structural_similarity as …

python-3.x scikit-image
Implementing GLCM texture feature with scikit-image and Python

I am trying to implement a texture image as described in this tutorial using Python and skimage. The issue is …

python textures scikit-image glcm
Load custom image from file system in scikit-image

I am new to Python and I am trying to do the tutorial, shown on the official page. My goal …

python image filesystems threshold scikit-image
Calculating entropy from GLCM of an image

I am using skimage library for most of image analysis work. I have an RGB image and I intend to …

python numpy entropy scikit-image glcm
The kernel appears to have died. It will restart automatically

When running: from skimage import data in jupyter notebook I always get the error : "The kernel appears to have died. …

python-3.x anaconda jupyter-notebook scikit-image
How can i convert images from scikit-image to opencv2 and other libraries?

I tried to find contour with cv2 python library in a skeletonized image created with scikit-image and i got this …

python opencv image-processing contour scikit-image