comparison OrthancStone/Sources/Toolbox/BucketAccumulator1D.h @ 1892:cdf91ad891a5

estimated geometry of rt-struct
author Sebastien Jodogne <s.jodogne@gmail.com>
date Wed, 19 Jan 2022 13:50:28 +0100
parents 3716d72161d2
children 07964689cb0b
comparison
equal deleted inserted replaced
1891:3716d72161d2 1892:cdf91ad891a5
36 private: 36 private:
37 struct Bucket 37 struct Bucket
38 { 38 {
39 size_t count_; 39 size_t count_;
40 std::list<double> values_; 40 std::list<double> values_;
41
42 Bucket() :
43 count_(0)
44 {
45 }
41 }; 46 };
42 47
43 Internals::BucketMapper mapper_; 48 Internals::BucketMapper mapper_;
44 std::vector<Bucket> buckets_; 49 std::vector<Bucket> buckets_;
45 bool storeValues_; 50 bool storeValues_;