File tree Expand file tree Collapse file tree 2 files changed +2
-4
lines changed
Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Original file line number Diff line number Diff 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:
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ build-backend = "scikit_build_core.build"
88
99[project ]
1010name = " pgeof"
11- version = " 0.3.2 "
11+ version = " 0.3.3 "
1212readme = " README.md"
1313description = " Compute the geometric features associated with each point's neighborhood:"
1414requires-python = " >=3.8,<3.14"
You can’t perform that action at this time.
0 commit comments