Day 11 C++ 读取图像文件

1. 在头文件 ImgIOInterface.h 中定义如下函数

#pragma once
#include <string>
#include <fstream>

using namespace std;

/// <summary>
/// 从路径读取图像文件
/// </summary>
/// <param name="path">img path</param>
/// <returns></returns>
pair<char*, int> imgread(std::string path);

/// <summary>
/// 保存图像文件
/// </summary>
/// <param name="buffer"></param>
/// <param name="buflength"></param>
/// <param name="savepath"></param>
void imgsave(char* buffer, int buflength, string savepath);

2. 在cpp文件 ImgIOInterface.cpp 实现头文件中函数

#include "ImgIOInterface.h"
#include <iostream>

pair<char*, int> imgread(std::string path)
{
	ifstream is(path, ifstream::in | ios::binary);  // 读取图像
	is.seekg(0, is.end);
	int length = is.tellg();  // 计算图像长度
	is.seekg(0, is.beg);
	char* buffer = new char[length];  // 创建内存缓存区
	is.read(buffer, length);  // 读取图片
	return { buffer, length };   // 由于后面保存图像文件需要用到length,所以将其return
}

void imgsave(char* buffer, int buflength, string savepath)
{
	std::string  strFile;
	for (size_t i = 0; i < buflength; i++)
	{
		strFile += buffer[i];
	}
	ofstream fout(savepath, ios::binary);
	if (fout)
	{
		fout.write(strFile.c_str(), strFile.size());
		fout.close();
	}
}


3. 在main函数中调用

#include <iostream>
#include <fstream>   // 对应头文件
#include <opencv2/core.hpp>
#include <opencv2/imgproc.hpp>
#include <opencv2/imgcodecs.hpp>
#include <stdio.h>
#include "ImgIOInterface.h"

using namespace std;
using namespace cv;

int main()
{
    /*
	* C++ 读取图像文件
    */
	auto startTime = std::chrono::system_clock::now();

	pair<char*, int> buffer = imgread("4.jpg");

	auto endTime = std::chrono::system_clock::now();

	std::cout << "time:" << std::chrono::duration_cast<std::chrono::microseconds>(endTime - startTime).count() << std::endl;

	imgsave(buffer.first, buffer.second, "save.jpg");

	delete[] buffer.first;
	buffer.first = NULL;

	return 0;

}

运行结果:1920*1080的彩色图像,在Release模式下的运行时间是218us.
在这里插入图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值