diff --git a/README.md b/README.md index 8714e9c..070b7c7 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,19 @@ -PyDenseCRF +PyDenseCRF2 ========== +NOTE: this code is forked from `https://github.com/lucasb-eyer/pydensecrf`, which is not actively maintained. However, this is a highly useful dependency for our work, [CellSeg3D](https://github.com/AdaptiveMotorControlLab/CellSeg3), thus we am maintaing the package for `pypi` here! + + +Quick start: + +``` +pip install pydensecrf2 +import pydensecrf +``` + +### Original Readme: +---------- + This is a (Cython-based) Python wrapper for [Philipp Krähenbühl's Fully-Connected CRFs](http://web.archive.org/web/20161023180357/http://www.philkr.net/home/densecrf) (version 2, [new, incomplete page](http://www.philkr.net/2011/12/01/nips/)). If you use this code for your reasearch, please cite: diff --git a/setup.py b/setup.py index b091bfd..348cb87 100644 --- a/setup.py +++ b/setup.py @@ -19,13 +19,15 @@ ] setup( - name="pydensecrf", + name="pydensecrf2", version="1.0", description="A python interface to Philipp Krähenbühl's fully-connected (dense) CRF code.", long_description="See the README.md at http://github.com/lucasb-eyer/pydensecrf", - author="Lucas Beyer", + author="Lucas Beyer, Philipp Krähenbühl", author_email="lucasb.eyer.be@gmail.com", - url="http://github.com/lucasb-eyer/pydensecrf", + maintainer="Mackenzie Mathis", + maintainer_email="mackenzie@post.harvard.edu", + url="https://github.com/adaptivemotorcontrollab/pydensecrf", ext_modules=ext_modules, packages=["pydensecrf"], setup_requires=['cython==0.29.36'],