7 Star 10 Fork 2

zyz913614263/SVM-手写数字识别

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
stdafx.h 502 Bytes
一键复制 编辑 原始数据 按行查看 历史
// stdafx.h : 标准系统包含文件的包含文件,
// 或是经常使用但不常更改的
// 特定于项目的包含文件
//
#pragma once
#include <stdio.h>
#include <tchar.h>
#include<opencv/cv.h>
#include<opencv/highgui.h>
#include<vector>
#include <windows.h>
#include <stdlib.h>
#include <iostream>
using namespace std;
using namespace cv;
// TODO: 在此处引用程序需要的其他头文件
class NumTrainData
{
public:
NumTrainData()
{
memset(data, 0, sizeof(data));
result = -1;
}
public:
float data[64];
int result;
};
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/zendu/SVM-ShouXieShuZiShiBie.git
git@gitee.com:zendu/SVM-ShouXieShuZiShiBie.git
zendu
SVM-ShouXieShuZiShiBie
SVM-手写数字识别
master

搜索帮助