资源简介
从二进制文件中读取mnist数据集并将其保存为图片格式
代码片段和文件信息
#include “ReadMnistData.h“
int main()
{
ReadMnistData rmd;
/*读取训练文件并保存成图片格式*/
string filename_train_images = “C:\\Users\\lyf\\Desktop\\mnist\\train-images-idx3-ubyte“; //train images 文件路径
string filename_train_labels = “C:\\Users\\lyf\\Desktop\\mnist\\train-labels-idx1-ubyte“; //train labels 文件路径
string save_train_image_path = “C:\\Users\\lyf\\Desktop\\mnist\\train_images\\“; //train images 保存路径
//string filename_train_images = “C:\\Users\\lyf\\Desktop\\train-images-idx3-ubyte“; //train images 文件路径
//string filename_train_labels = “C:\\Users\\lyf\\Desktop\\train-labels-idx1-ubyte“; //train labels 文件路径
//string save_train_image_path = “C:\\Users\\lyf\\Desktop\\train_images\\“; //train images 保存路径
vector vec_train_images; //保存读取的train images
vector vec_train_labels; //保存读取的train labels
rmd.Read_Mnist_Images(filename_train_images vec_train_images); //读取train images
cout << “-----------------------------“ << endl;
rmd.Read_Mnist_Labels(filename_train_labels vec_train_labels); //读取train labels
cout << “-----------------------------“ << endl;
rmd.Save_Mnist_Images(save_train_image_path vec_train_images vec_train_labels); //保存train_images
//==================================================================================
/*读取测试文件并保存成图片格式*/
// string filename_test_images = “C:\\Users\\lyf\\Desktop\\mnist\\t10k-images-idx3-ubyte“; //test images 文件路径
//// string filename_test_images = “C:\\Users\\lyf\\Desktop\\t10k-images-idx3-ubyte“; //test images 文件路径
// string filename_test_labels = “C:\\Users\\lyf\\Desktop\\mnist\\t10k-labels-idx1-ubyte“; //test labels 文件路径
//// string filename_test_labels = “C:\\Users\\lyf\\Desktop\\t10k-labels-idx1-ubyte“; //test labels 文件路径
// string save_test_image_path = “C:\\Users\\lyf\\Desktop\\mnist\\test_images\\“; //test images 保存路径
//// string save_test_image_path = “C:\\Users\\lyf\\Desktop\\test_images\\“; //test images 保存路径
// vector vec_test_images; //保存读取的test images
// vector vec_test_labels; //保存读取的test labels
//
// rmd.Read_Mnist_Images(filename_test_images vec_test_images); //读取test images
// cout << “-----------------------------“ << endl;
// rmd.Read_Mnist_Labels(filename_test_labels vec_test_labels); //读取test labels
// cout << “-----------------------------“ << endl;
// rmd.Save_Mnist_Images(save_test_image_path vec_test_images vec_test_labels); //保存test_images
return 0;
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 2615 2017-08-05 20:49 读取mnist数据集并保存成图片代码\Main.cpp
文件 4556 2017-08-05 20:58 读取mnist数据集并保存成图片代码\ReadMnistData.cpp
文件 625 2017-08-05 10:04 读取mnist数据集并保存成图片代码\ReadMnistData.h
文件 379 2017-08-05 11:28 读取mnist数据集并保存成图片代码\Readme.txt
目录 0 2017-08-05 21:02 读取mnist数据集并保存成图片代码\
- 上一篇:模仿CIFAR数据集格式制作自己的数据集代码修改版
- 下一篇:DWM1000中文手册
相关资源
- 根据图书ISBN读取书名等信息
- 信号的生成、采集、保存以及检测的
- labview读取mat格式文件
- 亚马逊国际站的商品图片及视频并保
- 读取shp文件,并显示地图
- 调用webservice,通过post传参读取返回的
- 基于LCD1602读取DS18B20序列号proteus仿真
- 通过485Modbus读取DS18B20温度和控制LED(
- Qt读取txt文件的内容,保存到数组,并
- pytorch:实现简单的GAN(MNIST数据集)
- 使用tensorflow实现VGG网络训练mnist数据
- 在.NET中读取嵌入和使用资源文件的方
- Pytorch通过保存为ONNX模型转TensorRT5的实
- vue实现文件上传读取及功能
- sct15单片机读取mpl3115a2高度温度
-
AS3.0读取xm
l外调图片并滚动 - 多路DS18B20测温+读取序列号
- FPGA读取NANDFLASH的ID
- 读取探空数据
- 读取bmp图片文件,并获取任意一点的
- 读取shp文件
- VS2017下用OpenCV实时播放RTSP视频流并截
- 《合成孔径雷达成像算法与实现》一
- WEB页面一个上传Excel文件并将内容保存
- Qt5读取串口数据
- delphi 运用两种方法读取电脑的所有串
- stm32f1对MLX90614ESF读取数据
- Labview编写的温湿度采集,显示,保存
- 编辑过程中自动保存插件10.0_V2.0.rar
- 读取VLP-16原始扫描文件,获得三维点
评论
共有 条评论