pip install visvis
python
import visvis as vv
python
image = vv.imread('image.jpg')
python
vv.imshow(image)
python
cropped_image = image[100:300, 200:400]
python
resized_image = vv.imresize(image, (500, 500))
python
rotated_image = vv.imrotate(image, 45)
python
vv.plot(image.histogram)
python
vol_data = vv.imread('volume_data.nii')
vv.volshow(vol_data)