Operator Reference
get_params_class_gmm (Operator)
get_params_class_gmm
— Return the parameters of a Gaussian Mixture Model.
Signature
get_params_class_gmm( : : GMMHandle : NumDim, NumClasses, MinCenters, MaxCenters, 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
- 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.
Possible Predecessors
create_class_gmm
,
read_class_gmm
Possible Successors
add_sample_class_gmm
,
train_class_gmm
See also
evaluate_class_gmm
,
classify_class_gmm
Module
Foundation