How to convert a wand image object to numpy array (without OpenCV)?
As of Wand 0.5.3 this is supported directly
import numpy as np
from wand.image import Image
with Image(filename='rose:') as img:
array = np.array(img)
print(array.shape) #=> (70, 46, 3)