- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
当我尝试使用 imwrite 保存图像时出现以下错误:
Files that help describe the problem:
C:\Users\jalal\AppData\Local\Temp\WER64CE.tmp.WERInternalMetadata.xml
C:\Users\jalal\AppData\Local\Temp\WER7092.tmp.appcompat.txt
C:\Users\jalal\AppData\Local\Temp\WER70C2.tmp.mdmp
Read our privacy statement online:
http://go.microsoft.com/fwlink/?linkid=104288&clcid=0x0409
If the online privacy statement is not available, please read our privacy statement offline:
C:\Windows\system32\en-US\erofflps.txt
这是我的全部代码(代码有效——imshow 显示模糊图像):
#include <opencv2/core/core.hpp>
#include <opencv2/imgcodecs.hpp>
#include <opencv2/highgui/highgui.hpp>
#include <iostream>
#include <string>
using namespace cv;
using namespace std;
//void tintImageBlue(Mat& image);
int main()
{
Mat image;
Mat channels[3];
image = imread("mona1.jpg", IMREAD_GRAYSCALE);
split(image, channels);
//image = 0.2*channels[0] + 0.4*channels[1] + 0.4*channels[2]; //gives us a black and white image (grey)
image = 0.2126*channels[0] + 0.7152*channels[1] + 0.0722*channels[2]; //wikipedia formula
//Colorimetric (luminance-preserving) conversion to grayscale
if (image.empty()) // Check for invalid input
{
cout << "Could not open or find the image" << std::endl;
return 0;
}
float neighbors[8];
float neighbors_mean = 0;
float neighbors_sum;
for (int iter = 0; iter < 3; iter++){
for (int i = 0; i < image.rows; i++) {
for (int j = 0; j < image.cols; j++) {
neighbors[0] = (((i - 1) >= 0 && (j - 1) >= 0) ? image.at<uchar>(i - 1, j - 1) : 0.0f);
neighbors[1] = (((i - 1) >= 0) ? image.at<uchar>(i - 1, j) : 0.0f);
neighbors[2] = (((i - 1) >= 0 && (j + 1) < image.cols) ? image.at<uchar>(i - 1, j + 1) : 0.0f);
neighbors[3] = (((j + 1) < image.cols) ? image.at<uchar>(i, j + 1) : 0.0f);
neighbors[4] = (((i + 1) < image.rows && (j + 1) < image.cols) ? image.at<uchar>(i + 1, j + 1) : 0.0f);
neighbors[5] = (((i + 1) < image.rows && (j - 1) >= 0) ? image.at<uchar>(i + 1, j) : 0.0f);
neighbors[6] = (((i + 1) < image.rows && (j - 1) >= 0) ? image.at<uchar>(i + 1, j - 1) : 0.0f);
neighbors[7] = (((j - 1) >= 0) ? image.at<uchar>(i, j - 1) : 0.0f);
neighbors_sum = neighbors[0] + neighbors[1] + neighbors[2] + neighbors[3] +
neighbors[4] + neighbors[5] + neighbors[6] + neighbors[7];
neighbors_mean = neighbors_sum / 8.0f;
image.at<uchar>(i, j) = neighbors_mean;
neighbors_sum = 0;
neighbors_mean = 0;
}
}
}
//tintImageBlue(image);
//namedWindow("Grey Mona", WINDOW_AUTOSIZE); // Create a window for display.
//imshow("Grey Mona", image); // Show our image inside it.
//resizeWindow("Grey Mona",800, 1000);
//waitKey(0); // Wait for a keystroke in the window
imwrite("10_iteration_blurring.jpg", image);
return 0;
}
但是使用 imwrite 它变得没有响应。我应该如何解决这个问题?
最佳答案
这对我有用:
imwrite("10_iteration_blurring.bmp", image);
关于c++ - OpenCV3.1 中的 imwrite 不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46207926/
今天有小伙伴给我留言问到,try{...}catch(){...}是什么意思?它用来干什么? 简单的说 他们是用来捕获异常的 下面我们通过一个例子来详细讲解下
我正在努力提高网站的可访问性,但我不知道如何在页脚中标记社交媒体链接列表。这些链接指向我在 facecook、twitter 等上的帐户。我不想用 role="navigation" 标记这些链接,因
说现在是 6 点,我有一个 Timer 并在 10 点安排了一个 TimerTask。之后,System DateTime 被其他服务(例如 ntp)调整为 9 点钟。我仍然希望我的 TimerTas
就目前而言,这个问题不适合我们的问答形式。我们希望答案得到事实、引用资料或专业知识的支持,但这个问题可能会引发辩论、争论、投票或扩展讨论。如果您觉得这个问题可以改进并可能重新打开,visit the
我就废话不多说了,大家还是直接看代码吧~ ? 1
Maven系列1 1.什么是Maven? Maven是一个项目管理工具,它包含了一个对象模型。一组标准集合,一个依赖管理系统。和用来运行定义在生命周期阶段中插件目标和逻辑。 核心功能 Mav
我是一名优秀的程序员,十分优秀!