Is there an equivalent python function for each of the following (maybe in the PIL??):

edge(image, 'canny')

strel('line',..)

strel('diamond',1)

imdilate(...)

imfil(...)

imerode(...)

medfilt2(...)

All of my simulation code is in python, but not the IC generation! I wanna get my IC generation into python so I don't have to run matlab every time I run a sim.

Thanks,

tylerthemiler

link|improve this question

There are many useful tools on luispedro. Specifically, Python Morphology Toolbox for image morphing (i.e. erode, dilate, ect) and a lot more functions on that sites other package, Mahotas. – tylerthemiler Aug 26 '11 at 16:56
feedback

2 Answers

up vote 3 down vote accepted

There are lots of image processing libraries for Python, though they are spread across a number of packages:

Just go through the documentation pages and look for an equivalent to each of the functions you listed. I think you will find edge detection, morphological operations, flood filling, and filtering functions all available in OpenCV (which is by far the most comprehensive)

Note: they are not all compatible with each other (some use NumPy to store the images, others don't).

link|improve this answer
Thanks! I found the other ones since I posted this, but I have never seen OpenCV, I will check it out :) – tylerthemiler Aug 26 '11 at 17:11
@tylerthemiler: To be exact, you will want the python-bindings to OpenCV library – Amro Aug 26 '11 at 17:23
Ok, I found a lot of what I need in pymorph, I will look into the pyhton-bindings if I get stuck using that! – tylerthemiler Aug 26 '11 at 17:28
PIL and OpenCV do not use numpy. All others do (and are therefore compatible with each other). – luispedro Aug 31 '11 at 19:07
feedback

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

link|improve this answer
Yeah, unfortunately it is. There are a few alternatives though. Mahotas has some good functions. There is also BioIMageXD that is specifically for bio-imaging. – tylerthemiler Aug 26 '11 at 16:52
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.