在C++中,我們可以使用矩陣類來表示和處理圖像。通常,我們將圖像表示為一個二維矩陣,其中每個元素表示圖像的一個像素。下面是一些基本步驟,說明如何使用C++矩陣類進行圖像處理:
#include <opencv2/opencv.hpp>
using namespace cv;
int main() {
Mat image = imread("input_image.jpg", IMREAD_COLOR);
if (!image.data) {
cout << "No image data."<< endl;
return -1;
}
// 接下來的代碼...
}
class Matrix {
public:
int rows, cols;
vector<vector<double>> data;
Matrix(int rows, int cols) : rows(rows), cols(cols) {
data.resize(rows, vector<double>(cols, 0));
}
// 其他矩陣操作函數(如矩陣加法、乘法等)
};
Matrix convertMatToMatrix(const Mat &mat) {
int rows = mat.rows;
int cols = mat.cols;
int channels = mat.channels();
Matrix matrix(rows, cols);
for (int i = 0; i< rows; ++i) {
for (int j = 0; j< cols; ++j) {
Vec3b pixel = mat.at<Vec3b>(i, j);
matrix.data[i][j] = (pixel[0] + pixel[1] + pixel[2]) / (3 * 255.0);
}
}
return matrix;
}
Matrix blur(const Matrix &matrix, int kernelSize) {
Matrix result(matrix.rows, matrix.cols);
int halfKernel = kernelSize / 2;
for (int i = 0; i< matrix.rows; ++i) {
for (int j = 0; j< matrix.cols; ++j) {
double sum = 0;
int count = 0;
for (int x = i - halfKernel; x <= i + halfKernel; ++x) {
for (int y = j - halfKernel; y <= j + halfKernel; ++y) {
if (x >= 0 && x< matrix.rows && y >= 0 && y< matrix.cols) {
sum += matrix.data[x][y];
count++;
}
}
}
result.data[i][j] = sum / count;
}
}
return result;
}
Mat convertMatrixToMat(const Matrix &matrix) {
int rows = matrix.rows;
int cols = matrix.cols;
Mat mat(rows, cols, CV_8UC3);
for (int i = 0; i< rows; ++i) {
for (int j = 0; j< cols; ++j) {
double value = matrix.data[i][j] * 255;
mat.at<Vec3b>(i, j) = Vec3b(value, value, value);
}
}
return mat;
}
imwrite("output_image.jpg", outputImage);
#include <opencv2/opencv.hpp>
#include<iostream>
#include<vector>
using namespace cv;
using namespace std;
// Matrix類和其他函數定義...
int main() {
Mat image = imread("input_image.jpg", IMREAD_COLOR);
if (!image.data) {
cout << "No image data."<< endl;
return -1;
}
Matrix matrix = convertMatToMatrix(image);
Matrix blurredMatrix = blur(matrix, 5);
Mat outputImage = convertMatrixToMat(blurredMatrix);
imwrite("output_image.jpg", outputImage);
return 0;
}
這只是一個簡單的示例,你可以根據需要實現更多的圖像處理算法。注意,這里的代碼僅用于演示目的,實際應用中可能需要進行更多的錯誤檢查和優化。