I was messing around with image manipulation, mostly using Python. I'm not too worried about performance right now, as I'm just doing it for fun. So far I can upload bitmap images, combine them (according to some function) and do some REALLY crude analysis (find the brightest / darkest points, such things).
I would like to be able to take an image, create a set of control points (which I can more or less do now), and then blur the image, starting from the control point and moving in a certain direction. What I'm not sure about is the lubrication process itself. What is a good algorithm for this?
source
share