Top "Scikit-image" questions

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

bins must increase monotonically

I just want to draw Matplotlib histograms from skimage.exposure but I get a ValueError: bins must increase monotonically. The …

python matplotlib scikit-image
Skimage: how to show image

I am novice at skimage and I try to show the image in my ipython notebook:\ from skimage import data, …

python scikit-image
crop image in skimage?

I'm using skimage to crop a rectangle in a given image, now I have (x1,y1,x2,y2) as the …

python image-processing scikit-image
Interactive pixel information of an image in Python?

Short version: is there a Python method for displaying an image which shows, in real time, the pixel indices and …

python image image-processing matplotlib scikit-image
How to extract green channel from RGB image in Python using Scikit-Image library?

I am extremely new to scikit-image (skimage) library in Python for image processing (started few minutes ago!). I have used …

python image image-processing scikit-image imread
Wiener Filter for image deblur

I am trying to implement the Wiener Filter to perform deconvolution on blurred image. My implementation is like this import …

python image-processing convolution scikit-image motion-blur
Save numpy array as image with high precision (16 bits) with scikit-image

I am working with 2D floating-point numpy arrays that I would like to save to greyscale .png files with high …

python image-processing numpy scipy scikit-image
detect rectangle in image and crop

I have lots of scanned images of handwritten digit inside a rectangle(small one). Please help me to crop each …

python opencv image-processing scikit-image
Split text lines in scanned document

I am trying to find a way to break the split the lines of text in a scanned document that …

python opencv ocr scikit-image
rgb to yuv conversion and accessing Y, U and V channels

I have been looking this conversion for a while. What are the ways of converting RGB image to YUV image …

python image opencv image-processing scikit-image