- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试实现 Floyd-Steinberg dithering algorithm (在带有 MSVC 2015 c++ 编译器的 Qt Creator 上使用 OpenCV 4.1.2)。
我在尝试更新 cv::Mat
对象值时遇到问题,但我无法这样做。虽然我找到了解决它的方法,但我仍然不明白为什么 Mat img
在函数 dithering
[line: 90] 中获胜不会更改,但如果使用注释 [line: 105] 而不是 [line: 104],代码将起作用。
我的问题是: 为什么会这样?是不是因为 cv::Mat
以某种方式传递了指针或缩小后的彩色图像的地址?或者只是一些 OpenCV 魔法?
图像和结果: Original Image Reduced Image Result Image(No Error) Result Image(With Error)
1. #include <vector>
2. #include <sstream>
3. #include <iostream>
4.
5. #include <opencv2/core.hpp>
6. #include <opencv2/opencv.hpp>
7. #include <opencv2/highgui.hpp>
8. #include <opencv2/imgcodecs.hpp>
9. #include <opencv2/core/matx.hpp>
10.#include <opencv2/core/utility.hpp>
11.
12.
13. using namespace std;
14. using namespace cv;
15.
16.
17. Mat init(int argc, char *argv[]);
18. Mat reduceVal(Mat src);
19. uchar reduceVal(uchar);
20. Mat dithering(Mat src);
21. uchar addError(uchar pixel, int error, float numerator, float denominator);
22.
23.
24. int main(int argc, char *argv[])
25. {
26. Mat image = init(argc, argv);
27. if (image.empty()) {
28. cout << "Wrong argumnets or no image data\n";
29. return -1;
30. }
31.
32. namedWindow("Colored Image", WINDOW_AUTOSIZE);
33. imshow("Colored Image", image);
34.
35. Mat reducedImage(image.rows, image.cols, image.type());
36. reducedImage = reduceVal(image.clone());
37. namedWindow("Reduced Value Image", WINDOW_AUTOSIZE);
38. imshow("Reduced Value Image", reducedImage);
39.
40. Mat ditheredImage(image.rows, image.cols, image.type());
41. ditheredImage = dithering(image.clone());
42. namedWindow("Dithert Image", WINDOW_AUTOSIZE);
43. imshow("Dithert Image", ditheredImage);
44.
45. imwrite("reducedImage.png", reducedImage);
46. imwrite("floyedSteinberg_image.png", ditheredImage);
47. waitKey(0);
48. return 0;
49. }
50.
51. Mat init(int argc, char *argv[])
52. {
53. if (argc < 2) {
54. cout << "Huston we have a problem" << endl;
55. return Mat();
56. }
57. string imageName = argv[1];
58. Mat image = imread(imageName, IMREAD_COLOR);
59. return image;
60. }
61.
62. Mat reduceVal(Mat img)
63. {
64. int rows = img.rows;
65. img = img.reshape(0, 1);
66. for (int i = 0; i < img.cols; i++) {
67. for (int k = 0; k < 3; k++) {
68. uchar colorVal = img.at<Vec3b>(i)[k];
69. if (colorVal < (255 - 51)) {
70. colorVal = uchar(colorVal / 51 + 0.5) * 51;
71. } else {
72. colorVal = 255;
73. }
74. img.at<Vec3b>(i)[k] = colorVal;
75. }
76. }
77. return img.reshape(0, rows).clone();
78. }
79.
80. uchar reduceVal(uchar colorVal)
81. {
82. if (colorVal < (255 - 51)) {
83. return uchar(colorVal / 51 + 0.5) * 51;
84. } else {
85. return 255;
86. }
87. }
88.
89.
90. Mat dithering(Mat img)
91. {
92. uchar oldPixel, newPixel;
93. int quantError;
94. Mat imageNew(img.rows, img.cols, img.type());
95. imageNew = reduceVal(img.clone());
96. imshow("dithering begin ", img);
97. imshow("Reduced Image", imageNew);
98. for (int r = 0; r < img.rows - 1; r++) {
99. for (int c = 1; c < img.cols - 1; c++) {
100. Point anchor(c, r);
101. for (int k = 0; k < img.channels(); k++) {
102. Point pt = anchor;
103. oldPixel = img.at<Vec3b>(pt)[k];
104. newPixel = imageNew.at<Vec3b>(pt)[k];
105. // newPixel = reduceVal(oldPixel);
106. img.at<Vec3b>(pt)[k] = newPixel;
107. quantError = oldPixel - newPixel;
108. pt = Point(anchor.x + 1, anchor.y);
109. img.at<Vec3b>(pt)[k] = addError(img.at<Vec3b>(pt)[k], quantError, 7.0f, 16.0f);
110. pt = Point(anchor.x - 1, anchor.y + 1);
111. img.at<Vec3b>(pt)[k] = addError(img.at<Vec3b>(pt)[k], quantError, 3.0f, 16.0f);
112. pt = Point(anchor.x, anchor.y + 1);
113. img.at<Vec3b>(pt)[k] = addError(img.at<Vec3b>(pt)[k], quantError, 5.0f, 16.0f);
114. pt = Point(anchor.x + 1, anchor.y + 1);
115. img.at<Vec3b>(pt)[k] = addError(img.at<Vec3b>(pt)[k], quantError, 1.0f, 16.0f);
116. }
117. }
118. }
119. return img;
120. }
121.
122. uchar addError(uchar pixel, int error, float numerator, float denominator)
123. {
124. int sum = pixel + static_cast<int>(error * (numerator / denominator));
125. if (sum > 255) {// making sure that 'sum' belongs to [0,255]
126. return uchar(255);
127. } else if (sum < 0) {
128. return 0;
129. } else {
130. return uchar(sum);
131. }
132. }
最佳答案
您的代码在循环的每次迭代中修改 img
的数据。我的意思是当你处理(x,y)
, 像素(x+1,y)
,(x-1,y+1)
,( x,y+1)
和(x+1,y+1)
被改变并存储在img
中。所以在下一次迭代中,您使用上一步的修改值计算新值(这是使用的情况newPixel = reduceVal(oldPixel);)
。
-------->
|
| C x you iterate from top to bottom, from left to right
| x x x so error value is propagated with next iterations
\ /
上述情况不会发生
newPixel = imageNew.at<Vec3b>(pt)[k];
因为您正在读取未使用 addError
调用计算的像素值 -这些值不受邻居值的影响。
关于c++ - 图像像素值未在 CV::Mat 中更新(OpenCV 4.1.2;C++),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59311078/
我到处都找了很多,找不到我的问题的答案。我试图从这个线程复制一个文本检测软件(Extracting text OpenCV)但是在代码的末尾有一条消息错误说没有匹配的矩形,即使我已经在上面绘制了一个并
我已经彻底搜索过,但没有找到直接的答案。 将 opencv 矩阵 (cv::Mat) 作为参数传递给函数,我们传递的是智能指针。我们对函数内部的输入矩阵所做的任何更改也会改变函数范围之外的矩阵。 我读
在我的应用程序中,我有一个通过引用接收 cv::Mat 对象的函数。这是函数的声明: void getChains(cv::Mat &img,std::vector &chains,cv::
我正在使用 Qt 编写一个 GUI 程序,并使用 OpenCV 进行一些视频处理。我在主 GUI 线程的标签中显示 OpenCV 进程(在单独的线程中)的结果。 我遇到的问题是 cv::waitKey
Mat a = (Mat_(3,3) = 2 int dims; //! the number of rows and columns or (-1, -1) when the arr
我尝试运行下面的代码,但出现错误。我正在为名为“Mat::at”的 OpenCV 函数创建一个包装器,并尝试使用“G++”将其编译为 Ubuntu Trusty 上的“.so”。我在下面列出了“.cp
我在 C# 中使用 EmguCV,当我想从网络摄像头抓取帧时遇到问题,语句中出现红色下划线: imgOrg = capturecam.QueryFrame(); error: Cannot impli
我正在尝试从另外两个矩阵生成一个 cv::Mat C,以便获得第三个矩阵,该矩阵由通过组合矩阵 A 和 B 的一维点生成的二维点构成。 我的问题是,我尝试的所有操作都只是连接矩阵,并没有真正将每个点与
我用 cv.imread在 python 中读取 png 文件。然后当我使用 cv.imwrite立即保存图像的功能我然后发现图像中的颜色略有变化。我正在尝试在此图像上执行字符识别,而 OCR 在 p
我尝试将 cv::bitwise_not 转换为 double 值的 cv::Mat 矩阵。我申请了 cv::bitwise_not(img, imgtemp); img是0和1的CV_64F数据。但
我正在尝试使用函数 cv.glmnet 找到最佳的 lambda(使用 RIDGE 回归)以预测某些对象的归属类别。所以我使用的代码是: CVGLM<-cv.glmnet(x,y,nfolds=34,
我有这个方法: static void WriteMatVect(const std::string& filename, const std::vector& mats); ... void Fil
下面的转换是我想要做的。 对于源图像中的每个图 block ,我知道每个角的坐标,并且我知道输出图像中每个对应角的坐标,所以我可以调用 cvWarpPerspective 扭曲每个图 block ,然
我必须在C++ / CLI中的托管和非托管代码中都使用OpenCV。 我正在尝试在托管代码中使用Emgu CV来包装OpenCV对象,但是在进行转换时遇到了麻烦。 我该怎么做: Emgu::CV::M
我正在尝试在 cv::Mat 中使用 CV_32FC4,以便它存储 RGBA32 图像。但是当我使用 cv::imwrite 将其保存为 png 文件时,结果文件始终是一个空图像。 例如,我创建了这样
无法在 VS 2017 中设置 OpenCV。我做错了什么?是的,我已将所有其他帖子设为红色。 代码: #include "opencv2/highgui/highgui.hpp" u
我有两个(相同大小,相同类型)cv:Mat 让我们称它们为 A,B。我还有另一个 cv::Mat,它是一个掩码(0 和 1 值或其他值,0 和 255 也适用)让我们称它为 M。 我需要构造一个新的
使用 OpenCV 中实现的 Scalar 类,我不明白这段代码有什么区别: Mat test; test = Scalar::all(0); 还有这个: Mat test = Scalar::all
我对这行代码感到困惑: cv::Mat_::iterator 我知道 Mat_ 属于 cv 命名空间和 vec3b 也。但是之后的最后一个 :: 操作符和 iterator 让我感到困惑!它也属于 c
我想优雅地将 Mat 转换为 Vec3f。目前我是这样做的: Mat line; Vec3f ln; ln[0] = line.
我是一名优秀的程序员,十分优秀!