gmm - Can we use a mixing proportions probeties of in matlab as the weight matrix of the Gaussian component -
can use mixing proportions properties of gmdistribution class in matlab weight matrix of gaussian component?
in work, need use gmm represent color distribution of object's pixels of image. did find weight, mean , covariance matrix of kth gaussian component. question can use gmm_obj.pcomponents gmm weight?
options = statset('display','final','maxiter',500); gmm_obj = fitgmdist(uvobj,c,'regularize',1e-4,'replicates',1,'options',options); objmeans = gmm_obj.mu; objcovariances = gmm_obj.sigma; objproportions = gmm_obj.pcomponents;
Comments
Post a Comment