Hi all, I am playing around with image inpainting (http://en.wikipedia.org/wiki/Inpainting) using the very simple approach outlined here: http://www.cs.columbia.edu/~bmbowen/papers/inpainting.pdf
The entire algorithm, in pseudocode, is initialize Ω; // A mask signifying the area of the image to be inpainted for (iter =0; iter < num_iteration; iter++) convolve masked regions with kernel; Doing a little bit of research I found that Tim Holy's Images.jl package already has a function called imfilter that takes an image and a kernel. But I couldn't find a way to pass along mask information – I don't want to apply the kernel to every pixel in the image, only those within the masked region. Is there a way to do this using the functionality in base Julia or in an existing package? ~ Yuri
