write_class_knn — 将 k-NN 分类器保存在文件中。
write_class_knn writes the k-NN classifier KNNHandle
to the file given by FileName. The classifier can be read again
with read_class_knn。Since the samples are an intrinsic
component of a k-NN-classifier, the operator
write_class_knn saves them within the class file.
In contrast to other classifiers like SVM, there
is no operator for saving the samples separately.
The samples can be retrieved from a k-NN-classifier using
get_sample_class_knn。The default HALCON file extension for the k-NN classifier is 'gnc'.
KNNHandle (输入控制) class_knn → (handle)
k-NN 分类器的句柄。
FileName (输入控制) filename.write → (string)
Name of the file in which the classifier will be written.
File extension:
.gnc
write_class_knn 返回 2 ( H_MSG_TRUE )。
An exception is raised if it was not possible to open file
FileName。
train_class_knn,
read_class_knn
create_class_knn,
read_class_knn
Marius Muja, David G. Lowe: “Fast Approximate Nearest Neighbors with Automatic Algorithm Configuration”; International Conference on Computer Vision Theory and Applications (VISAPP 09); 2009.
基础