Commit 4fd16e81728a572a60d60a55ebcc7d6cea9b0a0d
1 parent
e0fd9222
Updated point append
Showing
1 changed file
with
1 additions
and
1 deletions
openbr/plugins/metadata/averagepoints.cpp
| @@ -41,7 +41,7 @@ class AveragePointsTransform : public UntrainableMetadataTransform | @@ -41,7 +41,7 @@ class AveragePointsTransform : public UntrainableMetadataTransform | ||
| 41 | if (!metaName.isEmpty()) | 41 | if (!metaName.isEmpty()) |
| 42 | dst.set(metaName, p); | 42 | dst.set(metaName, p); |
| 43 | if (append) | 43 | if (append) |
| 44 | - dst.points().append(p); | 44 | + dst.appendPoint(p); |
| 45 | } | 45 | } |
| 46 | }; | 46 | }; |
| 47 | 47 |