博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
时间序列识别代码调试版本1
阅读量:5957 次
发布时间:2019-06-19

本文共 2441 字,大约阅读时间需要 8 分钟。

#include 
//#include
#include
#include
#include
#include
//#include
//#include
//#include
//#include
#include
#include
#include
using namespace std;using namespace cv;//FeatureEvaluatorint main(){ /************************************************************************************ 参数设置 *************************************************************************************/ //some parameters: int positive_num = 1000; int negative_num = 9000; vector
v_positive_img; vector
v_negative_img; //先考虑训练0 int test_char = 0; //正例、负例 string all_class_path = "C:\\Users\\cong\\Desktop\\研一实战\\项目\\图像中时间数字识别\\OCR\\result\\"; string img_txt; for (int i = 0; i < 10; i++) { //数字转字符 stringstream ss; ss << i; string test_char_str = ss.str(); img_txt = all_class_path + "result" + test_char_str + ".txt"; string path; ifstream finPos(img_txt); if (test_char == i) { //vector
channels; //用来装一幅图的N个通道;还没初始化 getline(finPos, path); //应该把文件中的图片个数也记录下来,由于该次的数据集,0~9个数一样,因此,可以考虑先不这么做 int img_num = 0; //把path,第一行字符变成数字,还没有完成 for (int j = 0; j
channels; //用来装一幅图的N个通道;还没初始化 getline(finPos, path); //应该把文件中的图片个数也记录下来,由于该次的数据集,0~9个数一样,因此,可以考虑先不这么做 int img_num = 0; //把path,第一行字符变成数字,还没有完成 for (int j = 0; j
myRect; //float scaleFactor; //Size minSize; //Size maxSize; //float threshold; //int slidingStep; //vector
values; //myICFDetector.detect(img_test, myRect, scaleFactor, 10, 50, threshold, slidingStep, values); /* C++: void ICFDetector::detect(const Mat& image, vector
& objects, float scaleFactor, Size minSize, Size maxSize, float threshold, int slidingStep, std::vector
& values) C++: detect(const Mat& img, std::vector
& objects, float minScaleFactor, float maxScaleFactor, float factorStep, float threshold, int slidingStep, std::vector
& values) Parameters: image – image for detection objects – output array of bounding boxes scaleFactor – scale between layers in detection pyramid minSize – min size of objects in pixels maxSize – max size of objects in pixels minScaleFactor – min factor by which the image will be resized maxScaleFactor – max factor by which the image will be resized factorStep – scaling factor is incremented each pyramid layer according to this parameter slidingStep – sliding window step values – output vector with values of positive samples */ return 0;}

 

转载于:https://www.cnblogs.com/Wanggcong/p/4929595.html

你可能感兴趣的文章
mybatis主键返回的实现
查看>>
org.openqa.selenium.StaleElementReferenceException
查看>>
数论之 莫比乌斯函数
查看>>
linux下查找某个文件位置的方法
查看>>
python之MySQL学习——数据操作
查看>>
Harmonic Number (II)
查看>>
长连接、短连接、长轮询和WebSocket
查看>>
day30 模拟ssh远程执行命令
查看>>
做错的题目——给Array附加属性
查看>>
Url.Action取消字符转义
查看>>
HBase 笔记3
查看>>
Linux嵌入式GDB调试环境搭建
查看>>
java分析jvm常用指令
查看>>
【Linux】Linux 在线安装yum
查看>>
oracle 管理操作 (转)
查看>>
DEV 等待窗口
查看>>
lombok
查看>>
Dev-FAT-UAT-PRO
查看>>
Android开发学习总结(五)——Android应用目录结构分析(转)
查看>>
[PHP]PHP rpc框架hprose测试
查看>>