当前位置:   article > 正文

相位相关匹配法的opencv C++实现_相位相关 pci

相位相关 pci

前言:一个图像拼接的小项目,用途场景,显微图像的拼接,或者只包含x,y平移的图像拼接。本来是显微镜拼接工具,MIST的核心拼接代码,matlab版的,已经开源。下面是地址,

GitHub - usnistgov/MIST at mist-matlab

 源码是一个显微镜的拼接工具,序列扫描,2D扫描的图像拼接,下面实现的只是两张图像的拼接,并且需要先验知识,输入图像1与输入图像2的相对位置,1在2的北边,1在2的西边,两种固定方向。

内容:

1.相位相关匹配法

相位相关图像匹配(Phase Correlation Image Matching)是一种用于在图像中寻找相似区域的方法,特别适用于图像的平移、旋转和缩放等变换。其原理基于图像的频域表示和互相关运算。

以下是相位相关图像匹配的基本流程:

预处理:首先,对待匹配的两幅图像进行预处理。这包括灰度化、归一化、去噪或滤波等操作,以提高匹配的准确性。

傅里叶变换:对两幅预处理后的图像应用傅里叶变换,将它们转换到频域。傅里叶变换将图像从空域表示转换为频域表示,其中频率较高的部分对应图像中的边缘和纹理信息。

计算互相关谱:通过计算参考图像和待匹配图像的频域表示之间的互相关谱,得到一个复数矩阵。互相关谱反映了两幅图像之间的相似度信息。

计算幅度谱:从互相关谱中提取幅度谱,即取复数矩阵的模。幅度谱表示图像中的结构信息,可以用来检测图像的平移、旋转和缩放等变换。

计算逆傅里叶变换:对幅度谱进行逆傅里叶变换,将其转换回空域表示。得到的结果是一个实数矩阵,称为相位相关图像。

寻找峰值:在相位相关图像中寻找峰值点,即响应最强的位置。峰值点的位置表示了两幅图像之间的最佳匹配位置。

精细化匹配:在峰值点附近进行精细化匹配,可以使用插值等方法来获取更精确的匹配结果。

相位相关图像匹配的原理是基于相位信息的保持不变性,相位谱的峰值对应于最佳匹配位置。通过将图像转换到频域,利用频域的特性进行匹配,可以提高匹配的准确性和鲁棒性。

需要注意的是,相位相关图像匹配方法在处理包含大量变形的图像时可能存在一些局限性。在这种情况下,可能需要使用更高级的图像匹配方法来获得更好的结果。

详细的物理原理参考这篇博客,图像配准之相位配准-CSDN博客 ,当然目前相关的论文已经发展到可以计算图像的场景旋转,但是在显微镜扫描的场景中默认是没有旋转,尺度变化,畸变变形等情况,仅存在xy平移,虽然目前的载物台精度已达到很高的精度,但也很难直接反馈得到准确的像素偏移。具体原因可以稍微分析一下,像与物体的大小可以认为是一一对应的关系,像的尺度表示就是相机的像元尺寸,一般为2~7微米,显微镜系统的放大倍率,高倍的话就是10,20,40倍,那么可以计算大概计算一下,一个像元,也就是一个像素代表多少。以7微米,40倍为例,7/40 = 0.175 um = 175 nm,当然只能大概这么算,事实上与波长尺度相关的计算需要考虑的东西很多,比如显微镜的口径,还有NA数值孔径。emmm,有点扯远了,总之就是大概介绍一下。意思就是目前的电动载物台可以达到100nm但是逐像素的精准移动,很难,所以还是需要计算。

好了接下来看代码(github感觉有点麻烦,后期会试试):

配置:VS2022 opencv 4.6.0 

文件树:

 头文件,以及各类函数,还有主函数,第一次独立的写这种分文件类型的项目,写的拉跨还请包涵,以及当然可以转成类的形式,但感觉有点小麻烦,后期再修改吧。

1.PCIAM.h

  1. #ifndef PCIAM_H
  2. #define PCIAM_H
  3. #include <opencv2/opencv.hpp>
  4. #include <opencv2/imgproc/imgproc.hpp>
  5. #include <opencv2/core/cuda.hpp>
  6. #include <iostream>
  7. #include <string>
  8. #include <vector>
  9. #include <limits>
  10. using namespace std;
  11. using namespace cv;
  12. using namespace cuda;
  13. struct PCC_type {
  14. int x;
  15. int y;
  16. double value;
  17. };
  18. PCC_type initial(int x, int y, double value);
  19. //图像显示
  20. void showImg(Mat& Img, string windowname);
  21. //图像预处理,数据转换,单通道
  22. Mat Img_process(Mat& Img);
  23. //计算PCM
  24. Mat computePCM(Mat& I1, Mat& I2);
  25. //峰值搜索
  26. void peaksearch(Mat& PCM, int& num_peaks, vector<double>& max_value, vector<Point>& max_Loc);
  27. //计算PCC
  28. PCC_type computePCC(Mat& I1, Mat& I2, string& direction, Point& Loc);
  29. //提取ROI
  30. Mat grap_roi(Mat& Img, int x, int y);
  31. //计算归一化互相关值
  32. double computeNCC(Mat I1, Mat I2);
  33. //加权融合
  34. Mat awblending(const Mat& I1, const Mat& I2, int shiftx, int shifty);
  35. //羽化融合
  36. Mat featherblending(Mat& I1, Mat& I2, int& shiftx, int& shifty);
  37. #endif // !PCIAM_H

 头文件,一些头文件,一些功能函数的声明,注释都有,所以就不详解了,所有函数,基本上都是使用opencv是实现的。

2.Img_process.cpp

  1. #include "PCIAM.h"
  2. Mat Img_process(Mat& Img) {
  3. Mat Img_p;
  4. extractChannel(Img, Img_p, 1); //提取绿色通道
  5. Img_p.convertTo(Img_p, CV_64FC1);//转换数据类型 双精度浮点
  6. Img_p = Img_p / sum(Img_p)[0];
  7. //cout << Img_p.row(0) << endl;
  8. //cout << "second" << endl;
  9. //图像归一化
  10. //double sum_Img = sum(Img_p)[0];
  11. //sum(Img_p) 返回一个 Scalar 对象,这是一个包含四个元素的数组,
  12. //对于单通道图像,只有第一个元素是有意义的,它代表所有像素值的总和。
  13. //Img_p = Img_p / sum_Img;
  14. return Img_p;
  15. }

这里是完全按照matlab代码来的,提取通道,一般绿色通道值更准确,然后转成double类型,再进行归一化,它这个归一化是除以所有像素点之和,而不是除以255之类的,需要注意。

3.computePCM函数

  1. #include "PCIAM.h"
  2. Mat computePCM(Mat& I1, Mat& I2) {
  3. //傅里叶变换
  4. Mat Img1_DFT, Img2_DFT;
  5. dft(I1, Img1_DFT, DFT_COMPLEX_OUTPUT);
  6. dft(I2, Img2_DFT, DFT_COMPLEX_OUTPUT);
  7. //cout << Img1_DFT.row(0) << endl;
  8. //Img2_DFT共轭变换后并相乘,
  9. Mat FFT1;
  10. mulSpectrums(Img1_DFT, Img2_DFT, FFT1, 0, true);
  11. //替换零值
  12. FFT1.forEach<Vec2d>([](Vec2d& value, const int* position) {
  13. if (value[0] == 0 && value[1] == 0) {
  14. value[0] = numeric_limits<double>::epsilon(); //当实部虚部都为0,只需要换实部即可
  15. }
  16. });
  17. //计算模值
  18. Mat channels[2];
  19. split(FFT1, channels);
  20. Mat abs;
  21. magnitude(channels[0], channels[1], abs);
  22. //计算互功率谱
  23. Mat CPS;
  24. Mat CPS_real = channels[0] / abs;
  25. Mat CPS_imag = channels[1] / abs;
  26. vector<Mat> channels2 = { CPS_real ,CPS_imag };
  27. merge(channels2, CPS);
  28. // 逆傅里叶变换
  29. Mat PCM;
  30. dft(CPS, PCM, DFT_INVERSE | DFT_REAL_OUTPUT | DFT_SCALE);
  31. //先验经验,重叠部分不会在边缘,而PCIAM算法往往在边缘处的峰值高
  32. //所以进行峰值过滤
  33. PCM.row(0).setTo(Scalar(0.0));
  34. PCM.row(PCM.rows - 1).setTo(Scalar(0.0));
  35. PCM.col(0).setTo(Scalar(0));
  36. PCM.col(PCM.cols - 1).setTo(Scalar(0.0));
  37. return PCM;
  38. }

这一段就是PCIAM算法的核心了,计算两幅图像的峰值相关矩阵,也是完全按照matlab移植过来的,但是后面几行,是为了筛选一些不可能存在的情况,比如边缘处的完全重合,或者只有一行,或者一列重合等等情况,由于PCIAM算法在边缘处的响应值高,所以在一些场景下可能是一种干扰,所以进行了剔除,当然可以不剔除,就是对后期的峰值选取会有影响。

4.peaksearch

  1. #include "PCIAM.h"
  2. void peaksearch(Mat& PCM, int& num_peaks, vector<double>& max_value, vector<Point>& max_Loc) {
  3. for (int i = 0; i < num_peaks; i++) {
  4. double minValue, maxValue;
  5. Point minLoc, maxLoc;
  6. minMaxLoc(PCM, &minValue, &maxValue, &minLoc, &maxLoc);
  7. max_value.push_back(maxValue);
  8. max_Loc.push_back(maxLoc);
  9. // 将找到的最大值置为一个较小的值,以便继续查找下一个最大值
  10. PCM.at<double>(maxLoc) = -numeric_limits<double>::max();
  11. }
  12. }

这步就是从峰值相关矩阵中,选择峰值点,由于存在噪声点,所以选取多个峰值点位置,这个看自己情况,一般10个。

5. compute_PCC

  1. #include "PCIAM.h"
  2. PCC_type computePCC(Mat& I1, Mat& I2, string& direction, Point& Loc) {
  3. int h = I1.rows;
  4. int w = I1.cols;
  5. int x = Loc.x;
  6. int y = Loc.y;
  7. vector<int>m;
  8. vector<int>n;
  9. PCC_type PCC;
  10. PCC = initial(0, 0, 0.0);
  11. //8种可能的平移解释
  12. if (direction == "north") {
  13. m = { y,y,h - y,h - y,y,y,h - y,h - y };
  14. n = { x,w - x,x,w - x,-x,x - w,-x,x - w };
  15. }
  16. else if (direction == "west") {
  17. m = { y,y,h - y,h - y,-y,-y,y - h,y - h };
  18. n = { x,w - x,x,w - x,x,w - x,x,w - x };
  19. }
  20. else {
  21. cerr << "direction is wrong,please retry follow the ture direction" << endl;
  22. return PCC;
  23. }
  24. vector<double>value;//ncc值
  25. Point position;//最佳位置
  26. for (int i = 0; i < m.size(); i++) {
  27. Mat I1_roi = grap_roi(I1, n[i], m[i]);
  28. Mat I2_roi = grap_roi(I2, -n[i], -m[i]);
  29. //roi大小不一样,roi没有长或者框,直接返回n[i],m[i],-1
  30. if (I1_roi.size() != I2_roi.size()) {
  31. //cerr << "Error: Image sizes do not match." << endl;
  32. PCC = initial(n[i], m[i], -1);
  33. value.push_back(PCC.value);
  34. }
  35. else if (I1_roi.rows == 0 || I1_roi.cols == 0 || I2_roi.rows == 0 || I2_roi.cols == 0) {
  36. //cerr << "roi is empty " << endl;
  37. PCC = initial(n[i], m[i], -1);
  38. value.push_back(PCC.value);
  39. }
  40. else {
  41. value.push_back(computeNCC(I1_roi, I2_roi));
  42. }
  43. }
  44. auto max_iter = max_element(value.begin(), value.end()); //max_element,返回的是最大位置处的迭代器
  45. int idx = distance(value.begin(), max_iter); //得到最大值坐标
  46. PCC = initial(n[idx], m[idx], value[idx]); //返回PCC内容
  47. return PCC;
  48. }

由于选出来多个峰值点位置,都有可能是对的匹配位置,又因为傅里叶变换的周期性,每个峰值点位置,又存在多种变化(这部分解释可以看mist的说明文件),所以需要在原图上截取重叠部分计算NCC归一化互相关矩阵,来确定最优的位置。

6.featherblending 羽化融合

  1. #include "PCIAM.h"
  2. Mat featherblending(Mat& I1, Mat& I2, int& shiftx, int& shifty) {
  3. //转成双精度浮点
  4. I1.convertTo(I1, CV_64FC3);
  5. I2.convertTo(I2, CV_64FC3);
  6. //拼接后图像尺寸
  7. int fusionW = abs(shiftx) + I1.cols;
  8. int fusionH = abs(shifty) + I1.rows;
  9. //创建一个画布
  10. Mat fusionImg = Mat::zeros(fusionH, fusionW, I1.type());
  11. //I1,I2起始位置的确定
  12. int x1_st, y1_st, x2_st, y2_st;
  13. if (shiftx >= 0) {
  14. x1_st = 0;
  15. x2_st = shiftx;
  16. }
  17. else {
  18. x1_st = abs(shiftx);
  19. x2_st = 0;
  20. }
  21. if (shifty >= 0) {
  22. y1_st = 0;
  23. y2_st = shifty;
  24. }
  25. else {
  26. y1_st = abs(shifty);
  27. y2_st = 0;
  28. }
  29. //先把I1放上去
  30. I1.copyTo(fusionImg(Rect(x1_st, y1_st, I1.cols, I1.rows)));
  31. //分别提取I1,I2的重叠区域
  32. Mat roi1 = grap_roi(I1, shiftx, shifty);
  33. Mat roi2 = grap_roi(I2, -shiftx, -shifty);
  34. //创建掩码矩阵,这里是生成I1大小的羽化矩阵采用
  35. float featherAmount = 1.5;//羽化量
  36. Mat mask = Mat::zeros(I1.size(), CV_64FC3);
  37. Mat hang = Mat::zeros(1, I1.cols, CV_64F);
  38. Mat lie = Mat::zeros(I1.rows, 1, CV_64F);
  39. for (int i = 1; i < hang.cols + 1; i++) {
  40. hang.at<double>(0, i - 1) = min(i, hang.cols - i + 1);
  41. }
  42. for (int j = 1; j < lie.rows + 1; j++) {
  43. lie.at<double>(j - 1, 0) = min(j, lie.rows - j + 1);
  44. }
  45. Mat channels[3];
  46. channels[0] = lie * hang;
  47. channels[1] = lie * hang;
  48. channels[2] = lie * hang;
  49. merge(channels, 3, mask);
  50. //截取I1,I2重叠区域mask
  51. Mat I1mask = grap_roi(mask, shiftx, shifty);
  52. Mat I2mask = grap_roi(mask, -shiftx, -shifty);
  53. I1mask.convertTo(I1mask, roi1.depth());
  54. //融合计算
  55. multiply(roi1, I1mask, roi1);
  56. multiply(roi2, I2mask, roi2);
  57. Mat blending = (roi1 + roi2) / (I1mask + I2mask);
  58. cout << blending.size() << " " << blending.channels() << endl;
  59. //计算I2中重叠部分的位置
  60. // 计算子区域的起始和结束坐标
  61. int x_st = max(0, -shiftx);
  62. int y_st = max(0, -shifty);
  63. int x_end = min(I2.cols, I2.cols + -shiftx);
  64. int y_end = min(I2.rows, I2.rows + -shifty);
  65. //将blending放入I2中
  66. blending.copyTo(I2(Rect(x_st, y_st, x_end - x_st, y_end - y_st)));
  67. //再将I2放入fusionImg中。
  68. I2.copyTo(fusionImg(Rect(x2_st, y2_st, I2.cols, I2.rows)));
  69. //将fusion转为CV_8UC3
  70. fusionImg.convertTo(fusionImg, CV_8UC3);
  71. return fusionImg;
  72. }

在确定出最佳位置后,根据二者位置,进行融合,融合方法采用羽化融合,可以自行百度,这里不详细解释。原理就是生成随中心距离变化的mask矩阵,对重叠部分进行羽化融合。

其余的工具文件。

1.grap_roi 

功能,给定一个图像,一个坐标点,从图像中提取出区域,x,y是起点。如果为负,则相反。

  1. #include "PCIAM.h"
  2. Mat grap_roi(Mat& Img, int x, int y) {
  3. // 计算图像的宽度和高度
  4. int w = Img.cols;
  5. int h = Img.rows;
  6. // 计算子区域的起始和结束坐标
  7. int x_st = max(0, x);
  8. int y_st = max(0, y);
  9. int x_end = min(w, w + x);
  10. int y_end = min(h, h + y);
  11. // 计算宽度和高度
  12. int width = x_end - x_st;
  13. int height = y_end - y_st;
  14. // 如果计算出的宽度或高度小于1,则返回空Mat
  15. if (width < 1 || height < 1) {
  16. return cv::Mat();
  17. }
  18. // 使用cv::Rect来裁剪子区域
  19. cv::Rect region_of_interest(x_st, y_st, width, height);
  20. return Img(region_of_interest).clone(); // 返回子区域的深拷贝
  21. }

PCC_type

一个结构体,含义最后每个点计算出的结果,一个该点的坐标。

  1. #include "PCIAM.h"
  2. PCC_type initial(int x, int y, double value) {
  3. PCC_type p;
  4. p.x = x;
  5. p.y = y;
  6. p.value = value;
  7. return p;
  8. }

3.showImg

显示图片,自定义大小窗口

  1. #include "PCIAM.h"
  2. void showImg(Mat& Img, string windowname) {
  3. namedWindow(windowname, WINDOW_NORMAL); //启动窗口
  4. resizeWindow(windowname, 800, 600); //调整窗口大小
  5. imshow(windowname, Img); //show图
  6. }

添加:computeNCC:

  1. #include "PCIAM.h"
  2. double computeNCC(Mat I1, Mat I2) {
  3. //求均值
  4. double mean_I1 = mean(I1)[0];
  5. double mean_I2 = mean(I2)[0];
  6. I1 = I1 - mean_I1;
  7. I2 = I2 - mean_I2;
  8. I1 = I1.reshape(0, 1); // 变为一行
  9. I2 = I2.reshape(0, 1); // 变为一行
  10. double N = I1.dot(I2);
  11. double D = sqrt(I1.dot(I1)) * sqrt(I2.dot(I2));
  12. // 计算互相关因子
  13. double cr = 0;
  14. if (D != 0) { // 防止除以0
  15. cr = N / D;
  16. }
  17. // 检查是否为有限数
  18. if (!std::isfinite(cr)) {
  19. cr = -1.0;
  20. }
  21. return cr;
  22. }

最后看下主函数:

main.cpp

  1. #include "PCIAM.h"
  2. int main() {
  3. string Img1_fliepath = "D:/ManualWSI/C14_Liver fatty Degeneration/Liver_15.tif";
  4. string Img2_fliepath = "D:/ManualWSI/C14_Liver fatty Degeneration/Liver_16.tif";
  5. string direction = "north"; //west 或者north I1 在 I2的上面或者左边
  6. //初始化opencv的cuda支持
  7. cuda::setDevice(0);
  8. //读图
  9. Mat Img1 = imread(Img1_fliepath);
  10. Mat Img2 = imread(Img2_fliepath);
  11. double start = static_cast<double>(getTickCount()); //计时
  12. //创建Img1,Img2的gpu副本
  13. //GpuMat d_I1,d_I2;
  14. //d_I1.upload(Img1);
  15. //d_I2.upload(Img2);
  16. //图像预处理,提取绿色通道,并归一化
  17. Mat I1p = Img_process(Img1);
  18. Mat I2p = Img_process(Img2);
  19. //计算峰值相关矩阵
  20. Mat PCM = computePCM(I1p, I2p);
  21. //搜索峰值及其位置
  22. int numPeaks = 1; //峰值搜索个数
  23. vector<double> max_value;
  24. vector<Point> max_Loc;
  25. peaksearch(PCM, numPeaks, max_value, max_Loc);
  26. //互相关筛选
  27. int idx = 0;
  28. int x = 0;
  29. int y = 0;
  30. double ncc_value = numeric_limits<double>::lowest();//最小值
  31. for (int i = 0; i < numPeaks; i++) {
  32. PCC_type ePCC = computePCC(I1p, I2p, direction, max_Loc[i]);
  33. if (ePCC.value > ncc_value) {
  34. x = ePCC.x;
  35. y = ePCC.y;
  36. ncc_value = ePCC.value;
  37. }
  38. }
  39. cout << "匹配位置 x:" << x << " y:" << y << " value:" << ncc_value << endl;
  40. Mat fusionImg1 = featherblending(Img1, Img2, x, y);
  41. double end = static_cast<double>(getTickCount());
  42. double totalTime = (end - start) / getTickFrequency();
  43. cout << "Code executed in " << totalTime << " seconds." << endl; //计时结束
  44. showImg(fusionImg1, "fusion_img1");
  45. // Mat fusionImg2 = awblending(Img1, Img2, x, y);
  46. // showImg(fusionImg2, "fusion_img2");
  47. imwrite("liver.tif", fusionImg1);
  48. waitKey();
  49. return 0;
  50. }

以上就是全部文件,流程与步骤大致与mist,PCIAM算法相同。后续结果,

原图:

 结果:

还有一个竖直方向的拼接结果:

 效果还不错的。在剔除后,峰值搜索数只选一个也能实现拼接。当然实际工程中还是要将numPeaks设置为合理值才行。

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

闽ICP备14008679号