Projects tagged ‘imaging’ and ‘python’


[14 total ]

21 Users
   

Insight Segmentation and Registration Toolkit (ITK) is an open-source software system to support the Visible Human Project. Currently under active development, ITK employs leading-edge segmentation ... [More] and registration algorithms in two, three, and more dimensions. [Less]
Created over 3 years ago.

14 Users

The Python Imaging Library (PIL) adds image processing capabilities to your Python interpreter. This library supports many file formats, and provides powerful image processing and graphics capabilities.
Created about 1 year ago.

3 Users

The Open Source Health Information Platform (OSHIP) is an implementation of the http://www.openEHR.org healthcare specifications written in Python/C. Uses the Zope Component Architecture ... [More] http://www.ohloh.net/projects/zope3 and Grok https://www.ohloh.net/p/grok But! OSHIP isn't limited to the openEHR model. It can be used to develop applications in concert with any information model or connect directly to any existing application in order to extend the capabilities and interface opportunities for that application. OSHIP is part of the Multi-Level Health Information Modeling suite of tolls and specifications open source projects found here: https://launchpad.net/mlhim [Less]
Created about 1 year ago.

1 Users
 

Opticks is a software framework that enables video and image processing. It allows users to load numerous types of video and image file formats, geo-reference image data, display and playback video ... [More] and images, build algorithms to process images and video, and save the results as new images and video. Additionally, the Opticks public API allows software engineers to develop and add new software plug-ins, thereby expanding and customizing the Opticks functionality. [Less]
Created over 2 years ago.

1 Users
 

Some contributions to be integrated in ITK
Created about 1 year ago.

1 Users

We are aiming for a comprehensive scalable software solution for electronic medical practice with emphasis on privacy protection, secure patient centric record sharing, decision support and ease of use.
Created over 3 years ago.

0 Users

This app is remake of Ajax Image Editor using PHP. http://www.ajaxprogrammer.com/?p=9 The functionality of creating galleries was added. It's quite messy right now. requiresPIL sorl TODOsmake it one application not yet tested very well
Created 4 months ago.

0 Users

IntroductionFrom time to time, I have had to develop custom widgets, which other people might find a use for. A lot of these came about in projects related to image processing and interfaces used in ... [More] pharmaceutical / medical applications, so there might be a recognisable "theme" to my widgets. Don't be put off by this, there are also UI elements not specifically tied to any field. I will try and keep all the widgets self-contained so that they can be downloaded individually. LicenseThe license used here is BSD, until google adds the wxwidgets/wxpython license. If you need to relicense the code under a different license, please contact me. WidgetsThe following widgets are made available: A wxpython control to choose a Look-up table LutCtrl A dynamic task bar graph icon IconBar my version of foldable panels (XP style) FoldPanel my version of treebook TreeBook ColumnSorterMixin with a Virtual wx.ListCtrl VirtualList serial mouse polling SerialMouse my additions to the venerable PyPlot ... and more. When I get round to it, that is. LinksAnother great resource for custom widgets may be found here: http://xoomer.alice.it/infinity77/main/freeware.html Thank you ever so much Andrea! ;-) Until I gather all the source code in this repository, you will find code in these places: http://dayindayout.byus.net/egor/index.php?section=code http://wiki.wxpython.org/LutCtrl http://aspn.activestate.com/ASPN/Cookbook/Python/Recipe/475155 http://aspn.activestate.com/ASPN/Cookbook/Python/Recipe/426407 http://aspn.activestate.com/ASPN/Cookbook/Python/Recipe/496929 http://aspn.activestate.com/ASPN/Cookbook/Python/Recipe/496933 I think that's about it! [Less]
Created 12 months ago.

0 Users

snipstrip.pyTool to split comic strip images into individual rows or frames thus making it easier to read comics on handheld devices such as mobile phones, PDAs and handheld multimedia players. For ... [More] example: using this module, you can split command_line_fu.png from xkcd.com ... to ... API Usage:Initialization:>>> from snipstrip import ComicPage >>> p = ComicPage('some_comic.png') To snip off the rows within the comic page ... >>> rows = p.get_by_row() # returns all the rows from the comic >>> for row in rows: ... p.page.crop(row).show() # displays snipped rows in sequence ... To snip the frames of any row >>> frames = p.get_by_frame(row) # returns all the frames from the row >>> for frame in p.frames[row]: ... self.page.crop(frame).show() # displays snipped frames ... To 'parse' the entire ComicPage in one go >>> p.process() # call p.get_by_frame() over all p.get_by_row() rowsCLI Usage:$ python snipstrip.py [...] where arguments are comic strip imagesTODOImproved the commandline Distutils-lify the module Complete the dump() method to serialize the process()ed data [Less]
Created 12 months ago.

0 Users

An animated overlay rendering engine for Python using Cairo.
Created 5 months ago.