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

Popular posts from this blog

'hasOwnProperty' in javascript -

How to put a lock and transaction on table using spring 4 or above using jdbcTemplate and annotations like @Transactional? -

How to understand 2 main() functions after using uftrace to profile the C++ program? -