Here's what I have so far:
from wand.image import Image
from wand.display import display
img=Image(filename='filename.ras')
display(img)
next I want to loop over a list of 2D indices and change the pixel color of each of these corresponding points in img to red. The color table of 'filename.ras' is entirely greyscale.
Probably an easy question, but since I can't find any tutorials on this I thought I might as well ask. Thanks.