中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

OpenCV C++版圖像閾值處理技巧

發布時間:2024-08-26 17:49:54 來源:億速云 閱讀:84 作者:小樊 欄目:編程語言

OpenCV是一個開源的計算機視覺庫,它提供了大量的圖像處理功能。在C++中使用OpenCV進行圖像閾值處理時,可以利用其內置的函數來實現多種閾值處理技巧。

  1. 簡單閾值處理:
#include <opencv2/opencv.hpp>
#include<iostream>

using namespace cv;
using namespace std;

int main() {
    Mat src = imread("input.jpg", IMREAD_GRAYSCALE);
    Mat dst;

    double threshold_value = 128;
    double max_value = 255;
    int threshold_type = THRESH_BINARY;

    threshold(src, dst, threshold_value, max_value, threshold_type);

    imwrite("output.jpg", dst);

    return 0;
}
  1. 自適應閾值處理(Adaptive Thresholding):
#include <opencv2/opencv.hpp>
#include<iostream>

using namespace cv;
using namespace std;

int main() {
    Mat src = imread("input.jpg", IMREAD_GRAYSCALE);
    Mat dst;

    int block_size = 25;
    double constant = 5;
    int threshold_type = THRESH_BINARY;

    adaptiveThreshold(src, dst, 255, ADAPTIVE_THRESH_MEAN_C, threshold_type, block_size, constant);

    imwrite("output.jpg", dst);

    return 0;
}
  1. Otsu閾值處理:
#include <opencv2/opencv.hpp>
#include<iostream>

using namespace cv;
using namespace std;

int main() {
    Mat src = imread("input.jpg", IMREAD_GRAYSCALE);
    Mat dst;

    double threshold_value = 0;
    double max_value = 255;
    int threshold_type = THRESH_BINARY | THRESH_OTSU;

    threshold(src, dst, threshold_value, max_value, threshold_type);

    imwrite("output.jpg", dst);

    return 0;
}
  1. 雙峰閾值處理(Triangle Thresholding):
#include <opencv2/opencv.hpp>
#include<iostream>

using namespace cv;
using namespace std;

double triangleThreshold(Mat& src) {
    int hist[256] = {0};
    for (int i = 0; i < src.rows; i++) {
        for (int j = 0; j < src.cols; j++) {
            hist[src.at<uchar>(i, j)]++;
        }
    }

    int total = src.rows * src.cols;
    int accumulator[256] = {0};
    for (int i = 0; i < 256; i++) {
        accumulator[i] = hist[i] + (i == 0 ? 0 : accumulator[i - 1]);
    }

    double max_dist = 0;
    int threshold = 0;
    for (int i = 0; i < 256; i++) {
        if (accumulator[i] == 0 || accumulator[i] == total) continue;
        double dist = (double)(total - accumulator[i]) * i - (double)accumulator[i] * (255 - i);
        if (dist > max_dist) {
            max_dist = dist;
            threshold = i;
        }
    }

    return threshold;
}

int main() {
    Mat src = imread("input.jpg", IMREAD_GRAYSCALE);
    Mat dst;

    double threshold_value = triangleThreshold(src);
    double max_value = 255;
    int threshold_type = THRESH_BINARY;

    threshold(src, dst, threshold_value, max_value, threshold_type);

    imwrite("output.jpg", dst);

    return 0;
}

這些示例展示了如何在C++中使用OpenCV進行不同類型的圖像閾值處理。你可以根據需要選擇合適的閾值處理技巧。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

c++
AI

微博| 肥乡县| 苍溪县| 平乡县| 错那县| 唐河县| 铁岭县| 安塞县| 宜阳县| 平安县| 鹤峰县| 阿图什市| 宿州市| 合水县| 永和县| 城口县| 汶川县| 永昌县| 安福县| 濮阳市| 江门市| 荣成市| 淄博市| 南平市| 丰镇市| 图木舒克市| 疏勒县| 合山市| 全椒县| 伊通| 安仁县| 卫辉市| 麦盖提县| 惠州市| 唐山市| 宁陕县| 铜鼓县| 盐池县| 友谊县| 恩平市| 六枝特区|