fixed calculate eta

This commit is contained in:
Mazzoleni Alice Francesca
2025-04-16 09:30:26 +02:00
parent 15e52565a9
commit f161df3591
4 changed files with 88 additions and 11 deletions

View File

@@ -297,7 +297,7 @@ class ClusterVector<Cluster<T, ClusterSizeX, ClusterSizeY, CoordType>> {
* @param frame_number frame number of the clusters. Default is 0, which is
* also used to indicate that the clusters come from many frames
*/
ClusterVector(size_t capacity = 300, uint64_t frame_number = 0)
ClusterVector(size_t capacity = 300, int32_t frame_number = 0)
: m_frame_number(frame_number) {
m_data.reserve(capacity);
}