From 33c586279eca6ce4b1ed8f5b8f9e9da014ac2c60 Mon Sep 17 00:00:00 2001 From: Timo Kaiser <34896723+TimoK93@users.noreply.github.com> Date: Wed, 21 Aug 2024 14:36:15 +0200 Subject: [PATCH 1/2] added pypi installing --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 24a20ad..9c57ef8 100644 --- a/README.md +++ b/README.md @@ -41,7 +41,7 @@ installed automatically are listed in the [requirements.txt](requirements.txt). The package can be installed via pip: ```bash -pip install git+https://github.com/CellTrackingChallenge/py-ctcmetrics.git +pip install py-ctcmetrics ``` or from the source code: From 9f90f26e0ce6444769fa2c889ed19ecbdd4495e3 Mon Sep 17 00:00:00 2001 From: Timo Kaiser <34896723+TimoK93@users.noreply.github.com> Date: Thu, 22 Aug 2024 08:10:15 +0200 Subject: [PATCH 2/2] added link to the paper --- README.md | 8 ++++---- setup.py | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 9c57ef8..60e30cb 100644 --- a/README.md +++ b/README.md @@ -5,17 +5,17 @@ # Py-CTCMetrics A python implementation of the metrics used in the paper -[CHOTA: A Higher Order Accuracy Metric for Cell Tracking](...) by -*Kaiser et al.*. The code is +[CHOTA: A Higher Order Accuracy Metric for Cell Tracking](https://arxiv.org/abs/2408.11571) by +*Timo Kaiser et al.*. The code is designed to evaluate tracking results in the format of the [Cell-Tracking-Challenge](https://celltrackingchallenge.net/) but can also be used for custom results. The repository contains the metrics of the [Cell-Tracking-Challenge](https://celltrackingchallenge.net/), the [MOTChallenge](https://motchallenge.net/), and the -[CHOTA](...) metric. +[CHOTA](https://arxiv.org/abs/2408.11571) metric. -Detailed descriptions of the metrics can be found in the [paper](...). +Detailed descriptions of the metrics can be found in the [paper](https://arxiv.org/abs/2408.11571). --- diff --git a/setup.py b/setup.py index 4a194e9..2ea7885 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ setup( name="py-ctcmetrics", - version="1.0.0", + version="1.0.1", packages=find_packages(), install_requires=[ "numpy",