前言
发现网上大把都是用python读取mnist的,用C++大都是用opencv读取的,但我不怎么用opencv,因此自己摸索了个使用文件流读取mnist的方法,armadillo仅作为储存矩阵的一种方式。
1. mnist文件
首先避坑,这些文件要解压。
官网截图可知,文件头很简单,只有若干个32位整数,MSB,像素和标签均是无符号字节(即unsigned char)可以先读取文件头,再读取剩下的部分。
2. 读取文件头
我觉得没什么必要啊,直接跳过不行吗
文件头都是32位,那就整四个unsigned char呗。
1
2
|
uchar a, b, c, d; File >> a >> b >> c >> d; |
这样a、b、c、d就保存了一个整数。
1
|
x = ((((a * 256) + b) * 256) + c) * 256 + d; |
然后就得到了呗。
看每个文件有多少文件头,就操作几次(并可以顺便与官方的magic number进行对比),剩下的就是文件的内容了。
3. 读取内容
这部分可以依照之前的方法,一次读取一个字符,再保存至矩阵当中。例如:
1
2
3
4
5
6
7
8
|
uchar a; mat image(28, 28, fill::zeros); // 这是个矩阵! for ( int i = 0; i < 28; i++) //28行28列的图像懒得改了 for ( int j = 0; j < 28; j++) { File >> a; image(i, j) = double (a); } |
这样就读取了一张图片。其余以此类推吧。
4. 完整代码
可以复制,可以修改,也可以用于商用和学术,但是请标注原作者(就是我)。
mnist.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#ifndef MNIST_H #define MNIST_H #include<iostream> #include<fstream> #include<armadillo> #define uchar unsigned char using namespace std; using namespace arma; //小端存储转换 int reverseInt(uchar a, uchar b, uchar c, uchar d); //读取image数据集信息 mat read_mnist_image( const string fileName); //读取label数据集信息 mat read_mnist_label( const string fileName); #endif |
mnist.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
|
//mnist.cpp //作者:C艹 #include "mnist.h" int reverseInt(uchar a, uchar b, uchar c, uchar d) { return ((((a * 256) + b) * 256) + c) * 256 + d; } mat read_mnist_image( const string fileName) { fstream File; mat image; File.open(fileName); if (!File.is_open()) // cannot open file { cout << "文件打不开啊" << endl; return mat(0, 0, fill::zeros); } uchar a, b, c, d; File >> a >> b >> c >> d; int magic = reverseInt(a, b, c, d); if (magic != 2051) //magic number wrong { cout << magic; return mat(0, 0, fill::zeros); } File >> a >> b >> c >> d; int num_img = reverseInt(a, b, c, d); File >> a >> b >> c >> d; int num_row = reverseInt(a, b, c, d); File >> a >> b >> c >> d; int num_col = reverseInt(a, b, c, d); // 文件头读取完毕 image = mat(num_img, num_col * num_row, fill::zeros); for ( int i = 0; i < num_img; i++) for ( int j = 0; j < num_col * num_row; j++) { File >> a; image(i, j) = double (a); } return image; } mat read_mnist_label( const string fileName) { fstream File; mat label; File.open(fileName); if (!File.is_open()) // cannot open file { cout << "文件打不开啊" << endl; return mat(0, 0, fill::zeros); } uchar a, b, c, d; File >> a >> b >> c >> d; int magic = reverseInt(a, b, c, d); if (magic != 2049) //magic number wrong { cout << magic; return mat(0, 0, fill::zeros); } File >> a >> b >> c >> d; int num_lab = reverseInt(a, b, c, d); // 文件头读取完毕 label = mat(num_lab, 10, fill::zeros); for ( int i = 0; i < num_lab; i++) { File >> a; label(i, int (a)) = 1; } return label; } |
总结
到此这篇关于C++基于文件流与armadillo读取mnist的文章就介绍到这了,更多相关C++ armadillo读取mnist内容请搜索服务器之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持服务器之家!
原文链接:https://www.cnblogs.com/wyblikeswsf/p/14748103.html