编写cpp脚本 将经纬度写入图像中
时间: 2023-05-12 11:05:30 浏览: 169
如何在VC++中键入脚本
3星 · 编辑精心推荐
您可以使用OpenCV库来实现将经纬度写入图像中的功能。以下是一个简单的示例代码:
```cpp
#include <opencv2/opencv.hpp>
#include <iostream>
using namespace cv;
using namespace std;
int main()
{
// 读取图像
Mat image = imread("test.jpg");
// 经纬度信息
double latitude = 39.9042;
double longitude = 116.4074;
// 将经纬度信息转换为字符串
string text = "Latitude: " + to_string(latitude) + ", Longitude: " + to_string(longitude);
// 在图像上绘制文本
putText(image, text, Point(50, 50), FONT_HERSHEY_SIMPLEX, 1, Scalar(0, 0, 255), 2);
// 显示图像
imshow("Image", image);
waitKey(0);
return 0;
}
```
这段代码将经纬度信息转换为字符串,并在图像上绘制文本。您可以根据需要调整文本的位置、字体、颜色等参数。
阅读全文