Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > Python > Re: Imaging libraries in active development?

Reply
Thread Tools

Re: Imaging libraries in active development?

 
 
Luis Pedro Coelho
Guest
Posts: n/a
 
      12-02-2012
Alasdair McAndrew <amc...@gmail.com> on Thu, 29 Nov 2012 wrote:
> Probably the combinations of OpenCV, Scipy.ndimage and scikits-image
> would cover pretty much all of my needs.


Hi,

All of those (+ mahotas, which is the package I wrote & imread which
might be useful for microscopy file formats) will work on numpy arrays
(openCV requires a bit of conversion back and forth, but it will work).
Therefore, it is not much of a bother to mix&match functions from one or
the other library::

import mahotas as mah
import imread
import skimage
import pylab

image = imread.imread("my-fancy-image.jpeg")
filtered = mah.gaussian_filter(image, 4.)
segmented = skimage.segmentation.quickshift(filtered)
pylab.imshow(segmented)
....

I just mixed 4 different packages seamlessly in this example. This will
work flawlessly.

mahotas & skimage are both under very active development, but neither is
unstable (i.e., we keep adding new features, but the existing code is
very reliable). scipy.ndimage is sort of dead: I scavenged its code for
good bits and pieces for mahotas, but nobody is developing ndimage.

If you run into specific issues, the mailing list pythonvision at

https://groups.google.com/forum/#!forum/pythonvision

is a good forum. Plenty of people from different projects lurk there.

HTH,
Luis
 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Imaging libraries in active development? Alasdair McAndrew Python 6 11-29-2012 06:45 PM
standard libraries don't behave like standard 'libraries' Sriram Srinivasan Python 13 11-12-2009 06:05 PM
Using mandatory libraries (custom class loading vs. expanding libraries) Karsten Wutzke Java 21 06-29-2007 09:25 PM
Thunderbird filters "active" but not "active" =?ISO-8859-2?Q?Rafa=B3_=A3o=BFy=F1ski?= Firefox 5 05-18-2005 07:27 AM
License for Java Advanced Imaging libraries Berlin Brown Java 1 04-08-2005 04:18 PM



Advertisments
 



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57