Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 25 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,30 @@
# Changelog

## v1.3.1

### Bug fix — `pypatchworkpp.patchworkpp` (Patchwork++)

- `ringwise_flatness` is now cleared at the end of every ring iteration
in `cpp/patchworkpp/src/patchworkpp.cpp`, not only when the ring had
revert candidates. The previous placement leaked flatnesses from
no-candidate rings into the next ring's `temporal_ground_revert` call,
biasing the revert decision threshold. Reported by @KennethBlomqvist
in #69. Closes #69.

### Numerical impact

KITTI 00–10 full sweep (23,201 frames) under the Patchwork++ paper
protocol:

| Build | P | R | F1 |
| ------ | ------- | ------- | ------- |
| v1.3.0 | 95.5494 | 97.1649 | 96.2886 |
| v1.3.1 | 95.5496 | 97.1710 | 96.2918 |

ΔF1 = +0.003 (within run-to-run noise). The bug only triggered when a
ring finished with no revert candidates, which is uncommon on KITTI;
the macro-average impact is negligible but the fix is correctness.

## v1.3.0

### Performance enhancement — `pypatchworkpp.patchwork` (classic Patchwork reimpl)
Expand Down
2 changes: 1 addition & 1 deletion cpp/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
cmake_minimum_required(VERSION 3.11)
project(patchworkpp VERSION 1.3.0)
project(patchworkpp VERSION 1.3.1)

option(USE_SYSTEM_EIGEN3 "Use system pre-installed Eigen" OFF)
option(INCLUDE_CPP_EXAMPLES "Include C++ example codes, which require Open3D for visualization" OFF)
Expand Down
2 changes: 1 addition & 1 deletion python/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "scikit_build_core.build"

[project]
name = "pypatchworkpp"
version = "1.3.0"
version = "1.3.1"
requires-python = ">=3.8"
description = "ground segmentation"
dependencies = [
Expand Down
Loading