comparison OrthancStone/Sources/Toolbox/LinearAlgebra.h @ 1890:6ce81914f7e4

added classes BucketAccumulator1D/2D
author Sebastien Jodogne <s.jodogne@gmail.com>
date Tue, 18 Jan 2022 22:08:55 +0100
parents 7053b8a0aaec
children 187a261d7ae2
comparison
equal deleted inserted replaced
1889:fe4befc9c2b0 1890:6ce81914f7e4
295 Matrix InvertScalingTranslationMatrix(const Matrix& t); 295 Matrix InvertScalingTranslationMatrix(const Matrix& t);
296 296
297 bool IsShearMatrix(const Matrix& shear); 297 bool IsShearMatrix(const Matrix& shear);
298 298
299 Matrix InvertShearMatrix(const Matrix& shear); 299 Matrix InvertShearMatrix(const Matrix& shear);
300
301 double ComputeMedian(std::vector<double>& v);
302
303 float ComputeMedian(std::vector<float>& v);
300 }; 304 };
301 } 305 }