Top "Scikit-image" questions

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

Skimage - Weird results of resize function

I am trying to resize a .jpg image with skimage.transform.resize function. Function returns me weird result (see image …

python image image-resizing scikit-image
Image filtering with scikit-image?

I'm moving to python from a Matlab background, and there are a few elementary operations I've yet to conquer in …

python python-imaging-library scikit-image
Convert image from float64 to uint8 makes the image look darker

I have images of type float64 generated by GANs, and I save them through skimage.io.imsave. The process works …

python image tensorflow image-processing scikit-image
How to Correctly mask 3D Array with numpy

I'm trying to mask a 3D array (RGB image) with numpy. However, my current approach is reshaping the masked array (…

python numpy scikit-image
Python - greyscale image to 3 channels

I have code that looks like this from skimage import io as sio test_image = imread('/home/username/pat/…

python image numpy image-processing scikit-image
Scikit image: resize() got an unexpected keyword argument 'anti_aliasing'

I am trying to use the resize function using aliasing exactly as described in the documentation: http://scikit-image.org/docs/…

python image-processing scikit-image
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
Extract blocks or patches from NumPy Array

I have a 2-d numpy array as follows: a = np.array([[1,5,9,13], [2,6,10,14], [3,7,11,15], [4,8,12,16]] I want to extract it into patches of 2 by 2 …

numpy scipy scikit-learn scikit-image
hog() got an unexpected keyword argument 'visualize'

I am running the scikit-image Histogram of Gradients example The example code is as follows: import matplotlib.pyplot as plt …

python scikit-image