Name : python-pypotrace
| |
Version : 0.1.2
| Vendor : obs://build_opensuse_org/home:jnweiger
|
Release : 1.1
| Date : 2015-04-17 12:14:47
|
Group : Development/Languages/Python
| Source RPM : python-pypotrace-0.1.2-1.1.src.rpm
|
Size : 0.19 MB
| |
Packager : (none)
| |
Summary : The potrace Python bindings
|
Description :
potrace Python bindings =======================
These bindings provide an object oriented API to the `potrace`_ library.
Example usage -------------
The bindings work with input images represented as numpy arrays::
import numpy as np import potrace
data = np.zeros((32, 32), np.uint32) data[8:32-8, 8:32-8] = 1
bmp = potrace.Bitmap(data)
path = bmp.trace()
for curve in path: print \"start_point =\", curve.start_point for segment in curve: print segment end_point_x, end_point_y = segment.end_point if segment.is_corner: c_x, c_y = segment.c else: c1_x, c1_y = segment.c1 c2_x, c2_y = segment.c2
Documentation -------------
The documentation is hosted here: http://packages.python.org/pypotrace
A copy is also included in the ``doc/_build/html`` directory of the source distribution.
Homepage --------
This project is hosted on github: http://github.com/flupke/pypotrace
.. _potrace: http://potrace.sourceforge.net/
|
RPM found in directory: /packages/linux-pbone/ftp5.gwdg.de/pub/opensuse/repositories/home:/jnweiger/openSUSE_13.2/i586 |