opencv,从图片上用鼠标拾取4个点的坐标,并将其保存在vector<Point>中,有问题,请教! 10

用opencv,从图片上用鼠标拾取4个点的坐标,先将其存入vector<Point>中,然后将其保存在txt中,但是拾取的坐标都不能保存上,求指教!代码:#include... 用opencv,从图片上用鼠标拾取4个点的坐标,先将其存入vector<Point>中,然后将其保存在txt中,但是拾取的坐标都不能保存上,求指教!
代码:
#include <opencv2/core/core.hpp>
#include <opencv2/highgui/highgui.hpp>
#include <opencv2/imgproc/imgproc.hpp>

#include <stdio.h>
#include <vector>
#include <iostream>
#include <fstream>

using namespace std;
using namespace cv;

Mat org;
int n=0;
vector<Point> capturePoint;

void on_mouse(int event,int x,int y,int flags,void *ustc)//event鼠标事件代号,x,y鼠标坐标,flags拖拽和键盘操作的代号
{
Point pt;//坐标点;
char coordinateName[16];

if (event == CV_EVENT_LBUTTONDOWN)//左键按下,读取坐标,并在图像上该点处划圆
{
pt = Point(x,y);
cout<<x<<" "<<y<<endl;
capturePoint.push_back(pt);
cout<<capturePoint[n].x<<" "<<capturePoint[n].y<<endl;
cout<<"n="<<n<<endl;
n++;
circle(org,pt,2,Scalar(255,0,0,0),CV_FILLED,CV_AA,0);//划圆
sprintf(coordinateName,"(%d,%d)",x,y);
putText(org,coordinateName,pt,FONT_HERSHEY_SIMPLEX,0.5,Scalar(0,0,0,255),1,8);//在窗口上显示坐标
if(n>=4)
{
imshow("org",org);
cvDestroyAllWindows();
}
}
}

int main()
{
org = imread("1-3.jpg",1);
namedWindow("org",1);//定义一个org窗口
setMouseCallback("org",on_mouse,0);//调用回调函数
imshow("org",org);
cout<<n<<endl;
cout<<capturePoint.size()<<endl;
ofstream file("sample.txt");
if(!file)
{
cout << "open file error!";
return 1;
}
vector<Point>::iterator it=capturePoint.begin();
for(;it!=capturePoint.end();++it)
{
file<< it->x<<','<<it->y<<endl;
}
file<<endl;
file.close();
waitKey(0);
return 0;
}
展开
 我来答
百度网友706bfad
推荐于2017-11-26 · TA获得超过190个赞
知道小有建树答主
回答量:130
采纳率:0%
帮助的人:89.7万
展开全部
你试试这样修改
int main()
{
    org = imread("1-3.jpg",1);
    namedWindow("org",1);//定义一个org窗口
    setMouseCallback("org",on_mouse,0);//调用回调函数
    imshow("org",org);
    waitKey(0);//移动到这里执行,试一下
    cout<<n<<endl;
cout<<capturePoint.size()<<endl;
ofstream file("sample.txt");
if(!file)
{
cout << "open file error!";
return 1;
}
vector<Point>::iterator it=capturePoint.begin();
for(;it!=capturePoint.end();++it)
{
file<< it->x<<','<<it->y<<endl;
}
file<<endl;
file.close();
   // waitKey(0);移动到imshow("org",org);的下面一行执行
    return 0;
}
追风之叶子
2014-08-04 · TA获得超过153个赞
知道答主
回答量:106
采纳率:0%
帮助的人:60.6万
展开全部
看来是访问不了啊,试试不用迭代器呗
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式