pip install visvis
python
import numpy as np
import visvis as vv
python
image = vv.imread("image.jpg")
python
f = vv.figure()
a = vv.imshow(image)
python
resized_image = vv.imresize(image, (width, height))
python
rotated_image = vv.imrotate(image, angle)
python
gray_image = vv.rgb2gray(image)
python
edges_image = vv.filters.sobel(gray_image)
python
f2 = vv.figure()
a2 = vv.imshow(processed_image)