get_params_class_gmm🔗
Short description🔗
get_params_class_gmm — Return the parameters of a Gaussian Mixture Model.
Signature🔗
get_params_class_gmm( class_gmm GMMHandle, out integer NumDim, out integer NumClasses, out integer MinCenters, out integer MaxCenters, out string CovarType )
Description🔗
get_params_class_gmm returns the parameters of a Gaussian
Mixture Model (GMM) that were specified when the GMM was created
with create_class_gmm. This is particularly useful if the
GMM was read with read_class_gmm. The output of
get_params_class_gmm can, for example, be used to check
whether the feature vectors and/or the target data to be used have
appropriate dimensions to be used with GMM. For a description of
the parameters, see create_class_gmm.
Execution information🔗
Execution information
-
Multithreading type: reentrant (runs in parallel with non-exclusive operators).
-
Multithreading scope: global (may be called from any thread).
-
Processed without parallelization.
Parameters🔗
GMMHandle (input_control) class_gmm → (handle)
GMM handle.
NumDim (output_control) integer → (integer)
Number of dimensions of the feature space.
NumClasses (output_control) integer → (integer)
Number of classes of the GMM.
MinCenters (output_control) integer-array → (integer)
Minimum number of centers per GMM class.
MaxCenters (output_control) integer-array → (integer)
Maximum number of centers per GMM class.
CovarType (output_control) string → (string)
Type of the covariance matrices.
Result🔗
If the parameters are valid, the operator
get_params_class_gmm returns the value 2 (H_MSG_TRUE). If necessary
an exception is raised.
Combinations with other operators🔗
Combinations
Possible predecessors
create_class_gmm, read_class_gmm
Possible successors
add_sample_class_gmm, train_class_gmm
See also
Module🔗
Foundation