using FileIO
using Colors
orangify(x) = (x == RGB(1,1,1) ? RGB(1,0.5,0) : x)
orange = map(orangify, load("teapot-bw.jpg"))
save("teapot-osd.jpg", orange)
Top-level
using FileIO orangify(x) = (x == RGB(1,1,1) ? RGB(1,0.5,0) : x) orange = map(orangify, load("teapot-bw.jpg")) No comments
|