当前位置:   article > 正文

图像处理:图片二值化学习,以及代码中如何实现

图片二值化

目录

1、了解下图片二值化的含义

2、进行图像二值化处理的方法

3、如何选择合适的阈值进行二值化

4、实现图片二值化(代码)

(1)是使用C++和OpenCV库实现:

(2)纯C++代码实现,不要借助其他库

(3)图片处理的一个实例:


1、了解下图片二值化的含义

(1)图片二值化是一种图像处理技术,它将彩色或灰度图像转换为只包含两个颜色的图像,通常是黑色和白色。这种转换是通过将图像中的每个像素的灰度值与一个阈值进行比较来实现的。

(2)在二值化过程中,如果像素的灰度值大于或等于阈值,则将该像素设置为白色(或亮色),否则将其设置为黑色(或暗色)。这样,图像中的每个像素都被映射到黑色或白色之一,从而产生了一个只有两种颜色的二值图像。

(3)二值化可以用于很多应用,例如文字识别、图像分割、形状检测等。通过将图像转换为二值图像,可以突出显示目标物体的轮廓和特征,并简化后续的图像处理任务。

2、进行图像二值化处理的方法

进行图像二值化处理的方法有多种,下面介绍两种常用的方法:

(1)全局阈值法(Global Thresholding):

        该方法假设整个图像的前景和背景具有明显的灰度差异,并且通过选择一个全局阈值来将图像分为两个部分。

具体步骤如下:

        1)将彩色或灰度图像转换为灰度图像。

        2)选择一个合适的全局阈值。

        3)遍历图像中的每个像素,如果像素的灰度值大于等于阈值,则将其设置为白色;否则将其设置为黑色。

(2)自适应阈值法(Adaptive Thresholding):

        该方法考虑到图像不同区域的光照条件可能不同,因此使用局部阈值来对图像进行分割。

具体步骤如下:

        1)将彩色或灰度图像转换为灰度图像。

        2)将图像分成多个小的局部区域。

        3)对每个局部区域计算一个适应性阈值。

        4)遍历图像中的每个像素,根据所在的局部区域的阈值将像素设置为黑色或白色。

这些方法可以使用图像处理库或软件实现,例如OpenCV、Python的PIL库等。具体的实现方式和参数选择会根据具体的图像和需求而有所不同。

3、如何选择合适的阈值进行二值化

选择合适的阈值进行图像二值化是一个关键的步骤,下面介绍几种常用的阈值选择方法:

(1)固定阈值法(Fixed Thresholding):该方法是最简单的阈值选择方法,直接根据经验或试验确定一个固定的阈值。例如,将阈值设为128,即大于等于128的像素设置为白色,小于128的像素设置为黑色。

(2)Otsu's 阈值法:Otsu's 阈值法是一种自动选择阈值的方法,它能够找到一个最佳的阈值,使得分割后的图像类间方差最大化。这种方法适用于具有双峰直方图的图像,其中前景和背景的灰度值分布明显不同。

(3)自适应阈值法(Adaptive Thresholding):自适应阈值法根据图像局部区域的灰度特性来选择阈值。它将图像分成多个小的局部区域,并对每个区域计算一个适应性阈值。这种方法适用于光照条件不均匀的图像。

(4)大津法与自适应阈值法的结合:有时候可以结合使用大津法和自适应阈值法,先使用大津法确定一个全局阈值,然后再使用自适应阈值法对图像进行细分割。

选择合适的阈值方法取决于图像的特性和需求。一般来说,如果图像具有明显的前景和背景差异,固定阈值法可能是一个简单有效的选择。如果图像的灰度分布复杂或光照条件不均匀,可以考虑使用自适应阈值法或Otsu's 阈值法。

4、实现图片二值化(代码)

(1)是使用C++和OpenCV库实现:
  1. #include <opencv2/opencv.hpp>
  2. int main()
  3. {
  4. // 读取图像
  5. cv::Mat image = cv::imread("input.jpg", cv::IMREAD_GRAYSCALE);
  6. // 检查图像是否成功读取
  7. if (image.empty()) {
  8. std::cout << "无法读取图像文件" << std::endl;
  9. return -1;
  10. }
  11. // 应用全局阈值法进行二值化
  12. cv::Mat binaryImage;
  13. double thresholdValue = 128; // 阈值设为128
  14. double maxValue = 255; // 最大值设为255
  15. cv::threshold(image, binaryImage, thresholdValue, maxValue, cv::THRESH_BINARY);
  16. // 显示原始图像和二值化后的图像
  17. cv::imshow("Original Image", image);
  18. cv::imshow("Binary Image", binaryImage);
  19. cv::waitKey(0);
  20. return 0;
  21. }
(2)纯C++代码实现,不要借助其他库
  1. #include <iostream>
  2. #include <fstream>
  3. #pragma pack(push, 1)
  4. struct BMPHeader {
  5. char signature[2];
  6. int fileSize;
  7. int reserved;
  8. int dataOffset;
  9. int headerSize;
  10. int width;
  11. int height;
  12. short planes;
  13. short bitsPerPixel;
  14. int compression;
  15. int imageSize;
  16. int xPixelsPerMeter;
  17. int yPixelsPerMeter;
  18. int colorsUsed;
  19. int importantColors;
  20. };
  21. #pragma pack(pop)
  22. bool Bmp2Binarization()
  23. {
  24. // 读取BMP文件头信息
  25. ifstream file(("oldBmp.bmp"), std::ios::binary);
  26. if (!file) {
  27. cout << "无法打开BMP文件" << endl;
  28. return -1;
  29. }
  30. BMPHeader header;
  31. file.read(reinterpret_cast<char*>(&header), sizeof(BMPHeader));
  32. // 检查文件是否为24位真彩色BMP图像
  33. if (header.signature[0] != 'B' || header.signature[1] != 'M') {
  34. cout << "不支持的BMP文件格式" << endl;
  35. return -1;
  36. }
  37. if (header.bitsPerPixel != 24) {
  38. cout << "不支持的像素位数" << endl;
  39. return -1;
  40. }
  41. // 计算图像数据的行字节数
  42. int rowSize = ((header.width * 3 + 3) / 4) * 4;
  43. // 创建存储图像数据的数组
  44. unsigned char* image_data = new unsigned char[rowSize * header.height];
  45. // 读取图像数据
  46. file.read(reinterpret_cast<char*>(image_data), rowSize * header.height);
  47. // 关闭文件
  48. file.close();
  49. // 图像二值化处理
  50. int threshold_value = 128; // 设定阈值
  51. for (int y = 0; y < header.height; y++) {
  52. for (int x = 0; x < header.width; x++) {
  53. int index = y * rowSize + x * 3;
  54. unsigned char r = image_data[index + 2];
  55. unsigned char g = image_data[index + 1];
  56. unsigned char b = image_data[index];
  57. unsigned char gray = static_cast<unsigned char>(0.299 * r + 0.587 * g + 0.114 * b);
  58. if (gray > threshold_value) {
  59. image_data[index + 2] = 255;
  60. image_data[index + 1] = 255;
  61. image_data[index] = 255;
  62. }
  63. else {
  64. image_data[index + 2] = 0;
  65. image_data[index + 1] = 0;
  66. image_data[index] = 0;
  67. }
  68. }
  69. }
  70. // 保存二值化后的图像数据
  71. ofstream output_file("binary_image.bmp", ios::binary);
  72. if (!output_file) {
  73. cout << "无法保存二值化图像文件" << endl;
  74. delete[] image_data;
  75. return -1;
  76. }
  77. std::cout << "成功保存图像文件" << std::endl;
  78. output_file.write(reinterpret_cast<char*>(&header), sizeof(BMPHeader));
  79. output_file.write(reinterpret_cast<char*>(image_data), rowSize * header.height);
  80. // 关闭文件
  81. output_file.close();
  82. // 释放内存
  83. delete[] image_data;
  84. return 0;
  85. }

在上述代码中,我们使用C++的文件输入输出流来读取和保存图像文件。首先,我们读取图像的头信息,并根据宽度和高度计算图像数据的大小。然后,我们分配内存并读取彩色图像数据。接下来,我们将彩色图像转换为灰度图像,通过对每个像素的RGB值求平均来计算灰度值。最后,我们应用阈值进行二值化处理,将灰度值大于等于阈值的像素设置为白色(255),小于阈值的像素设置为黑色(0)。最后,我们保存二值化后的图像。

请注意,上述代码假设输入图像为24位位图(BMP)格式,并且图像文件名为"input.bmp"。你可以根据实际情况修改文件名和图像格式。此外,该代码只适用于处理较小的图像,如果要处理更大的图像,可能需要优化内存使用和读写操作。

(3)jpg图片转化为二值化(纯C++,没有依赖opencv相关的库)

  1. #include <iostream>
  2. #include <fstream>
  3. #pragma pack(push, 1)
  4. struct JPGHeader {
  5. unsigned short marker;
  6. unsigned short length;
  7. };
  8. struct SOF0Segment {
  9. unsigned char precision;
  10. unsigned short height;
  11. unsigned short width;
  12. unsigned char numComponents;
  13. };
  14. struct Component {
  15. unsigned char id;
  16. unsigned char samplingFactors;
  17. unsigned char quantizationTableId;
  18. };
  19. struct DQTSegment {
  20. unsigned char tableInfo;
  21. unsigned char quantizationTable[64];
  22. };
  23. struct SOSegment {
  24. unsigned char numComponents;
  25. Component components[3];
  26. };
  27. #pragma pack(pop)
  28. bool Jpg2Binarization()
  29. {
  30. // 读取JPEG文件
  31. ifstream file("image.jpg", ios::binary);
  32. if (!file) {
  33. cout << "无法打开JPEG文件" << endl;
  34. return -1;
  35. }
  36. // 读取JPEG头信息
  37. JPGHeader header;
  38. file.read(reinterpret_cast<char*>(&header), sizeof(JPGHeader));
  39. if (header.marker != 0xFFD8) {
  40. cout << "不支持的JPEG文件格式" << endl;
  41. return -1;
  42. }
  43. // 找到SOF0段
  44. SOF0Segment sof0;
  45. while (true) {
  46. file.read(reinterpret_cast<char*>(&header), sizeof(JPGHeader));
  47. if (header.marker == 0xFFC0) {
  48. file.read(reinterpret_cast<char*>(&sof0), sizeof(SOF0Segment));
  49. break;
  50. }
  51. else {
  52. file.seekg(header.length - 2, ios::cur);
  53. }
  54. }
  55. // 检查图像是否为灰度图像
  56. if (sof0.numComponents != 1) {
  57. cout << "不支持的JPEG图像格式" << endl;
  58. return -1;
  59. }
  60. // 找到DQT段
  61. DQTSegment dqt;
  62. while (true) {
  63. file.read(reinterpret_cast<char*>(&header), sizeof(JPGHeader));
  64. if (header.marker == 0xFFDB) {
  65. file.read(reinterpret_cast<char*>(&dqt), sizeof(DQTSegment));
  66. break;
  67. }
  68. else {
  69. file.seekg(header.length - 2, ios::cur);
  70. }
  71. }
  72. // 找到SOS段
  73. SOSegment sos;
  74. while (true) {
  75. file.read(reinterpret_cast<char*>(&header), sizeof(JPGHeader));
  76. if (header.marker == 0xFFDA) {
  77. file.read(reinterpret_cast<char*>(&sos), sizeof(SOSegment));
  78. break;
  79. }
  80. else {
  81. file.seekg(header.length - 2, ios::cur);
  82. }
  83. }
  84. // 计算图像数据的宽度和高度
  85. int width = sof0.width;
  86. int height = sof0.height;
  87. // 创建存储图像数据的数组
  88. unsigned char* image_data = new unsigned char[width * height];
  89. // 读取图像数据
  90. for (int y = 0; y < height; y++) {
  91. for (int x = 0; x < width; x++) {
  92. unsigned char value;
  93. file.read(reinterpret_cast<char*>(&value), sizeof(unsigned char));
  94. image_data[y * width + x] = value;
  95. }
  96. }
  97. // 关闭文件
  98. file.close();
  99. // 图像二值化处理
  100. int threshold_value = 128; // 设定阈值
  101. for (int i = 0; i < width * height; i++) {
  102. if (image_data[i] > threshold_value) {
  103. image_data[i] = 255;
  104. }
  105. else {
  106. image_data[i] = 0;
  107. }
  108. }
  109. // 保存二值化后的图像数据
  110. ofstream output_file("binary_image.jpg", ios::binary);
  111. if (!output_file) {
  112. cout << "无法保存二值化图像文件" << endl;
  113. delete[] image_data;
  114. return -1;
  115. }
  116. // 写入JPEG头信息
  117. output_file.write(reinterpret_cast<char*>(&header), sizeof(JPGHeader));
  118. output_file.write(reinterpret_cast<char*>(&sof0), sizeof(SOF0Segment));
  119. // 写入DQT段
  120. output_file.write(reinterpret_cast<char*>(&header), sizeof(JPGHeader));
  121. output_file.write(reinterpret_cast<char*>(&dqt), sizeof(DQTSegment));
  122. // 写入SOS段
  123. output_file.write(reinterpret_cast<char*>(&header), sizeof(JPGHeader));
  124. output_file.write(reinterpret_cast<char*>(&sos), sizeof(SOSegment));
  125. // 写入图像数据
  126. for (int y = 0; y < height; y++) {
  127. for (int x = 0; x < width; x++) {
  128. unsigned char value = image_data[y * width + x];
  129. output_file.write(reinterpret_cast<char*>(&value), sizeof(unsigned char));
  130. }
  131. }
  132. // 关闭文件
  133. output_file.close();
  134. // 释放内存
  135. delete[] image_data;
  136. return 0;
  137. }
(3)图片处理的一个实例:

        1)jpg通过opencv转化为二值化图片,并生成新的jpg图片;

        2)读取图片数据,重新生成jpg图片;

  1. #include <opencv2/opencv.hpp>
  2. #include <iostream>
  3. void binarizeJpeg(const std::string& inputFilename, const std::string& outputFilename, int threshold)
  4. {
  5. // 1、jpg图片,转为二值化图片
  6. // 读取JPG文件
  7. cv::Mat jpgImage = cv::imread(inputFilename);
  8. // 转换为灰度图像
  9. cv::Mat grayImage;
  10. cv::cvtColor(jpgImage, grayImage, cv::COLOR_BGR2GRAY);
  11. // 二值化处理
  12. cv::Mat binaryImage;
  13. cv::threshold(grayImage, binaryImage, threshold, 255, cv::THRESH_BINARY);
  14. // 保存为JPG文件
  15. cv::imwrite(outputFilename, binaryImage);
  16. // 2、读取jpg图片数据出来,重新生成新的图片
  17. unsigned char * hJpegBuf = NULL;//存储原本jpg格式的文件数据
  18. DWORD JpegBufSize;
  19. FILE* hfjpg;//打开原本jpg格式的文件
  20. errno_t err = fopen_s(&hfjpg, outputFilename.c_str(), "rb");//正确返回0,不正确返回非0
  21. if (err != 0)
  22. {
  23. printf("文件打开失败\n");
  24. }
  25. fseek(hfjpg, 0L, SEEK_END);
  26. JpegBufSize = ftell(hfjpg);
  27. fseek(hfjpg, 0L, SEEK_SET);
  28. hJpegBuf = new unsigned char[JpegBufSize];
  29. fread(hJpegBuf, sizeof(char), JpegBufSize, hfjpg);
  30. fclose(hfjpg);
  31. FILE* file = fopen("\\small_new.jpg").c_str(), "wb");
  32. fwrite(hJpegBuf, 1, JpegBufSize, file);
  33. fclose(file);
  34. }
  35. // 调用
  36. binarizeJpeg("\\small.jpg", "\\small_Binary.jpg", 128);

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Li_阴宅/article/detail/954926
推荐阅读
相关标签
  

闽ICP备14008679号