OpenCV25(绘制线和显示文字,Mat类型)

这篇博客介绍了如何利用OpenCV库从文本文件读取数据,并将这些数据以线条和文字的形式呈现到图像上,展示了OpenCV在图像处理中的应用。
摘要由CSDN通过智能技术生成

本程序的功能是读取txt中数据,然后在显示到对应的图像上。


// 视频.cpp : 定义控制台应用程序的入口点。
//

#include "stdafx.h"
#include "highgui.h"
#include "cv.h"
#include "cxcore.h"
#include <iostream>
#include <fstream>
#include <vector>

using namespace std;
using namespace cv;


int _tmain(int argc, _TCHAR* argv[])
{
	char cpath[500] = {0};
	// 使用的数据
	ifstream in("xxx.txt"); 

	char* num = {NULL};
	char c;
	vector<int> XYais;
	bool hasNum(0);
	int dv(0);
	bool lessthan0(0);
// * 获得X和Y的坐标
	while(in.get(c))
	{
		....
		}
		if( c == ',' && hasNum){
			if(lessthan0)
				dv = -dv;
			XYais.push_back(dv);
			hasNum = 0;dv = 0;lessthan0 = 0;
		}
	}

// * 载入图像,绘制点
	ofstream f;
	f.open("llll.txt");

	int xp,yp;
	cout<<XYais.size()<<endl;
	int j = 0;char showMsg[20] = ""; 
	for(int i=0; i< XYais.size(); i&
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值