This repository has been archived by the owner on Feb 11, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* update setup * update CI, tox * reformat version
- Loading branch information
Showing
14 changed files
with
104 additions
and
54 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,32 @@ | ||
import birl.utilities | ||
|
||
birl.utilities | ||
|
||
__version__ = '0.2.2' | ||
__author__ = 'Jiri Borovec' | ||
__author_email__ = '[email protected]' | ||
__license__ = 'BSD 3-clause' | ||
__home__ = 'https://borda.github.io/BIRL', | ||
__copyright__ = 'Copyright (c) 2014-2019, Jiri Borovec.' | ||
__doc__ = """ | ||
# BIRL: Benchmark on Image Registration methods with Landmark validation | ||
The project aims at automatic evaluation of state-of-the-art image registration | ||
methods based on landmark annotation for given image dataset. In particular, | ||
this project is the main evaluation framework for ANHIR challenge. | ||
## Main Features | ||
* **automatic** execution of image registration on a sequence of image pairs | ||
* integrated **evaluation** of registration performances | ||
* integrated **visualization** of performed registration | ||
* running several image registration experiment in **parallel** | ||
* **resuming** unfinished sequence of registration benchmark | ||
* handling around dataset and **creating own experiments** | ||
* rerun evaluation and visualisation for finished experiments | ||
## References | ||
Borovec, J., Munoz-Barrutia, A., & Kybic, J. (2018). Benchmarking of image | ||
registration methods for differently stained histological slides. | ||
In IEEE International Conference on Image Processing (ICIP) (pp. 3368-3372), | ||
Athens. DOI: 10.1109/ICIP.2018.8451040 | ||
""" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
nose>=1.3.7 | ||
coverage | ||
codecov | ||
pytest>=3.0.5 | ||
pytest-cov | ||
flake8 | ||
check-manifest | ||
codacy-coverage |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,33 +16,33 @@ | |
# Python 3 only projects can skip this import | ||
from io import open | ||
|
||
here = path.abspath(path.dirname(__file__)) | ||
import birl | ||
|
||
with open(path.join(here, 'requirements.txt'), encoding='utf-8') as fp: | ||
requirements = [r.rstrip() for r in fp.readlines() if not r.startswith('#')] | ||
PATH_HERE = path.abspath(path.dirname(__file__)) | ||
|
||
with open(path.join(PATH_HERE, 'requirements.txt'), encoding='utf-8') as fp: | ||
requirements = [rq.rstrip() for rq in fp.readlines() if not rq.startswith('#')] | ||
|
||
# Get the long description from the README file | ||
with open(path.join(here, 'README.md'), encoding='utf-8') as fp: | ||
long_description = fp.read() | ||
# with open(path.join(PATH_HERE, 'README.md'), encoding='utf-8') as fp: | ||
# long_description = fp.read() | ||
|
||
# Arguments marked as "Required" below must be included for upload to PyPI. | ||
# Fields marked as "Optional" may be commented out. | ||
|
||
setup( | ||
name='BIRL', | ||
version='0.2.2', | ||
url='https://borda.github.io/BIRL', | ||
version=birl.__version__, | ||
url=birl.__home__, | ||
|
||
author='Jiri Borovec', | ||
author_email='[email protected]', | ||
license='BSD 3-clause', | ||
author=birl.__author__, | ||
author_email=birl.__author_email__, | ||
license=birl.__license__, | ||
description='Benchmark on Image Registration methods with Landmark validation', | ||
|
||
long_description=long_description, | ||
long_description=birl.__doc__, | ||
long_description_content_type='text/markdown', | ||
|
||
packages=find_packages( | ||
exclude=['docs', 'notebooks', 'scripts*', 'bm_*']), | ||
packages=find_packages(exclude=['docs', 'notebooks', 'scripts*', 'bm_*']), | ||
|
||
keywords='benchmark image registration landmarks', | ||
install_requires=requirements, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters