Skip to content

Commit

Permalink
README fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
kirill-ivanov-a committed Dec 27, 2023
1 parent 454c47b commit 9bc75b9
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 24 deletions.
30 changes: 14 additions & 16 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,32 +11,29 @@

<ul style="font-size: 14pt;">
<li>Summary segmentation metrics <ul style="font-size: 14pt;">
<li><a href="https://prime-slam.github.io/evops-metrics/instance_based/panoptic">Panoptic</a></li>
<li><a href="https://prime-slam.github.io/evops-metrics/full_statistics/full_statistics">Full statistics</a></li>
<li>Panoptic</li>
<li>Full statistics</li>
</ul></li>
<li>Instance-based segmentation metrics
<ul style="font-size: 14pt;">
<li><a href="https://prime-slam.github.io/evops-metrics/#/metrics/instance_based/precision">Precision</a></li>
<li><a href="https://prime-slam.github.io/evops-metrics/#/metrics/instance_based/recall">Recall</a></li>
<li><a href="https://prime-slam.github.io/evops-metrics/#/metrics/instance_based/fScore">F-Score</a></li>
<li><a href="https://prime-slam.github.io/evops-metrics/#/metrics/instance_based/usr">Under segmented ratio</a></li>
<li><a href="https://prime-slam.github.io/evops-metrics/#/metrics/instance_based/osr">Over segmented ratio</a></li>
<li><a href="https://prime-slam.github.io/evops-metrics/#/metrics/instance_based/noise">Noise ratio</a></li>
<li><a href="https://prime-slam.github.io/evops-metrics/#/metrics/instance_based/missed">Missed ratio</a></li>
<li>Precision</li>
<li>Recall</li>
<li>F-Score</li>
<li>Under segmented ratio</li>
<li>Over segmented ratio</li>
<li>Noise ratio</li>
<li>Missed ratio</li>
</ul></li>
<li>Point-based segmentation metrics
<ul style="font-size: 14pt;">
<li><a href="https://prime-slam.github.io/evops-metrics/#/metrics/point_based/iou">Intersection over Union (IoU)</a></li>
<li><a href="https://prime-slam.github.io/evops-metrics/#/metrics/point_based/dice">Dice</a></li>
<li><a href="https://prime-slam.github.io/evops-metrics/#/metrics/point_based/mean">Mean of some metric for matched instances</a></li>
<li>Intersection over Union (IoU)</li>
<li>Dice</li>
<li>Mean of some metric for matched instances</li>
</ul></li>
</ul>

<p style="font-size: 14pt;">
For more, please visit the <a href="https://prime-slam.github.io/evops-metrics">Instanseg documentation</a>.
</p>
<p style="font-size: 14pt;">
You can also find full information about the project on the <a href="https://evops.netlify.app/">Instanseg project website</a>.
For more, please visit the <a href="https://prime-slam.github.io/instanseg-metrics/">Instanseg documentation</a>.
</p>

# Python quick start
Expand Down Expand Up @@ -69,6 +66,7 @@ $ pip show instanseg
```

# Citation
Package is based on metrics package evops provided in the paper:
```
@misc{kornilova2022evops,
title={EVOPS Benchmark: Evaluation of Plane Segmentation from RGBD and LiDAR Data},
Expand Down
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
[tool.poetry]
name = "instanseg"
version = "0.0.0"
description = "Evaluation of Plane Segmentation."
authors = ["Pavel Mokeev", "Dmitriy Jarosh"]
description = "Evaluation of Instance Segmentation."
authors = ["Pavel Mokeev", "Dmitriy Jarosh", "Anastasiia Kornilova", "Arthur Saliou"]
license = "APACHE"
readme = "README.md"
homepage = "https://instanseg.netlify.app/"
homepage = "https://prime-slam.github.io/instanseg-metrics/"
repository = "https://github.com/prime-slam/instanseg-metrics"

[tool.poetry.dependencies]
Expand Down
10 changes: 5 additions & 5 deletions src/instanseg/metrics/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@
# See the License for the specific language governing permissions and
# limitations under the License.

# Label id which depicts that pixel is not a part of any plane
# Label id which depicts that pixel is not a part of any instance
UNSEGMENTED_LABEL = 0

# Threshold for IoU overlap which defines planes as overlapped enough to be treated
# as a matched pair of gt and predicted plane for instance based metrics calculation
# Threshold for IoU overlap which defines instances as overlapped enough to be treated
# as a matched pair of gt and predicted instance for instance based metrics calculation
IOU_THRESHOLD_FULL = 0.75

# Threshold for IoU overlap which defines planes as overlapped enough to be treated
# as a partly matched pair of gt and predicted plane for over and under segmentation calculation
# Threshold for IoU overlap which defines instances as overlapped enough to be treated
# as a partly matched pair of gt and predicted instance for over and under segmentation calculation
IOU_THRESHOLD_PART = 0.2
File renamed without changes.
File renamed without changes.

0 comments on commit 9bc75b9

Please sign in to comment.