Skip to content

Commit 6e7901f

Browse files
committed
Release v0.3.3
1 parent 4ec1f5d commit 6e7901f

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

include/pca.hpp

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -275,14 +275,12 @@ void compute_selected_features(
275275
pca.val(2) * std::abs(pca.v2(2))};
276276

277277
feature_results[output_id] = unary_vector(2) / unary_vector.norm();
278-
// TODO: Jakteristics compute this as feature_results[output_id] = real_t(1.0) -
279-
// std::abs(pca.v2(2));
280-
// It seems to be the most common formula for the verticality in the literature
281278
}
282279
break;
283280
case EFeatureID::Verticality:
284281
// The verticality as defined in most of the papers
285282
// http://lareg.ensg.eu/labos/matis/pdf/articles_revues/2015/isprs_wjhm_15.pdf
283+
// It's the way it's computed in jakteristics
286284
feature_results[output_id] = real_t(1.0) - std::abs(pca.v2(2));
287285
break;
288286
case EFeatureID::Eigentropy:

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ build-backend = "scikit_build_core.build"
88

99
[project]
1010
name = "pgeof"
11-
version = "0.3.2"
11+
version = "0.3.3"
1212
readme = "README.md"
1313
description = "Compute the geometric features associated with each point's neighborhood:"
1414
requires-python = ">=3.8,<3.14"

0 commit comments

Comments
 (0)