You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
pgk9fzonx/ANNTrain & SVMTrain.txt

11 lines
992 B

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

功能1图片识别训练
车牌识别训练由src/main/java/com.yuxue.train路径下的SVMTrain.java实现。其中最重要的是train方法
实现了通过大量源图像文件和标记的比对建立起xml模型文件doPridect方法借助模型文件和opencv库中的
方法实现了对图片的识别判断。
图片文字识别训练由src/main/java/com.yuxue.train路径下的ANNTrain.java和CnANNTrain.java实现。其
中ANNTrain.java用于数字的识别训练CnANNTrain.java用于文字识别训练两者内容所差无几。两者之中
的train方法都是调用指定路径文件夹内的图片通过opencv库内给定的函数进行识别和标记比对建立模型
predict方法通过借助模型遍历测试样本下的所有文件进行计算预测准确率。
该功能主要用于为后续车牌判断CharsIdentify、字符分割CharsSegment和字符识别CharsRecognise
提供模型数据,提高算法的准确性。