Reading PIL, it looks like it has a few functions that will be useful for implementing a canny filter. The morphological erode/dilate functions are apparently not available.
This should get you started on implementing your own canny filter. It performs a sobel filter in the vertical and horizontal directions. That gets you about halfway through the algorithm. From there, you will need to iterate (x,y) over (width,height) and suppress non-maximum edges. Wikipedia has a good explanation http://en.wikipedia.org/wiki/Canny_edge_detector
import ImageFilter
filtHorizontal = [1, 0, -1, 2, 0, -2, 1, 0, -1]
filtVertical = [1, 2, 1, 0, 0, 0, -1, -2, -1]
im = im.filter(ImageFilter.BLUR)
edgeHorizontal = im.filter((3,3), filtHorizontal)
edgeVertical = im.filter((3,3), filtVertical)
Is PIL the preferred image processing toolkit for python? it looks like it could use some contributions