I’ve searched the “bgfg_gaussmix2.cpp” code, it says in gaussian mixture model, it stores mixture weight (w), mean ( nchannels values ) and covariance for each gaussian mixture of each pixel background model. I want to know the order of its storage, for instance, is it “weight, mean, covariance”, or ” mean, covariance, weight”, or something else?
Thanks in advance.
I’ve searched the bgfg_gaussmix2.cpp code, it says in gaussian mixture model, it stores mixture
Share
If you are speeking about the gaussian mixture structure CvPBGMMGaussian, the storing order is
The three dimensions are packed in a float array.
Here is the definition of this structure :
If you are not speeking about this structure, please be more precise in your question.