Top "Scikit-image" questions

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

skewing or shearing an image in python

I need to shear and skew some images using python. I've come across this skimage module but I don't seem …

python image-processing numpy transformation scikit-image
Convert image to array for CNN

I am trying to categorize the dog breeding identification using CNN. I have converted the images to gray scale and …

python neural-network keras conv-neural-network scikit-image
What to choose to begin with ComputerVision: Scikit-image or OpenCV?

My goal is to recognize specific types of traffic signs: red circles on video in real time.

python opencv computer-vision image-recognition scikit-image
skimage resize giving weird output

I'm resizing an image using skimage.transform.resize but I'm getting a really weird output and I can't figure out …

python matplotlib scikit-image
ImportError cannot import name BytesIO when import caffe on ubuntu

I am trying to make caffe running on my machine equipped with Ubuntu 12.04LTS. After finishing all the steps on …

python python-2.7 ubuntu scikit-image caffe
How to correctly use cv2.imwrite to save an image in openCV with cv2.selectROI

I am trying out OpenCV's ROI function. With this I am trying to crop out a section of an image …

python numpy opencv image-processing scikit-image
Image does not load as grayscale (skimage)

I'm trying to load an image as grayscale as follows: from skimage import data from skimage.viewer import ImageViewer img = …

python grayscale scikit-image imread
Uniform LBP with scikit-image local_binary_pattern function

I'm using the local_binary_pattern from skimage.feature with uniform mode like this: >>> from skimage.feature …

python feature-extraction scikit-image
scikit-image: write a ndarray to image with imsave, read back with imread, data don't match

here is the minimum working example: import numpy as np from skimage.io import imsave, imread image = np.array([[[109, 232, 173], [ 55, 35, 144]], [[ 43, 124, 185], [234, 127, 246]]], dtype=…

python scikit-image
Why is Gaussian Filter different between cv2 and skimage?

I've got an image that I apply a Gaussian Blur to using both cv2.GaussianBlur and skimage.gaussian_filter libraries, …

python image opencv scikit-image gaussianblur