a0c2461170
It includes a couple of algorithms implemented in C++ for speed while operating in numpy arrays. Notable algorithms: - watershed. - thresholding. - convex points calculations. - hit & miss. thinning. - Zernike & Haralick features. - freeimage based numpy image loading (requires freeimage libraries to be installed). - Release the GIL in morphological functions - Convolution WWW: http://packages.python.org/mahotas/ PR: ports/153183 Submitted by: Pedro Garcia Freitas <sawp@sawp.com.br>
24 lines
501 B
Makefile
24 lines
501 B
Makefile
# New ports collection makefile for: py-mahotas
|
|
# Date created: 2010-12-14
|
|
# Whom: Pedro Garcia Freitas <sawp@sawp.com.br>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= mahotas
|
|
PORTVERSION= 0.6.1
|
|
CATEGORIES= graphics python
|
|
MASTER_SITES= CHEESESHOP
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= sawp@sawp.com.br
|
|
COMMENT= An Efficient Image Processing Library for Python
|
|
|
|
BUILD_DEPENDS+= ${PYNUMPY}
|
|
|
|
USE_GCC= 4.5+
|
|
USE_PYTHON= 2.4+
|
|
USE_PYDISTUTILS= easy_install
|
|
PYEASYINSTALL_ARCHDEP= yes
|
|
|
|
.include <bsd.port.mk>
|