更新 src/PBBiology/include/PBImageProcess.h

增加镜头畸变矫正函数接口

Signed-off-by: maxbang <946568130@qq.com>
This commit is contained in:
maxbang 2024-12-26 02:55:34 -05:00
parent 1a955962a9
commit b2295e2385

View File

@ -77,4 +77,13 @@ Mat bgr_scale_image(Mat src, float maxVal, float minVal, int scientific_flag);
Mat get_photon_image(Mat src, float sec, float Wcm, float Hcm, float sr);
//魔术棒功能src是处理成8bit的图x,y是点击位置的坐标max和min是设定的大小,max和min需要注意除以256使用0-255数据
//点击位置的像素差在[min,max]范围内的连在一起的像素,都会被框选
Mat get_magic_wand_image(Mat src,int x,int y,float max,float min);
Mat get_magic_wand_image(Mat src,int x,int y,float max,float min);
//相机标定功能gray是包含完整棋盘格灰度图像patternSize是棋盘格内角点的数量假如棋盘格的尺寸是9*7那内角点就是8*6
//cameraMatrix和distCoeffs是后续图像畸变矫正需要的参数标定一次后镜头无变动情况下后续图像直接用此参数矫正就可以
//返回值是0表示标定错误返回值是1表示标定正确
//注:相机标定功能得到的结果参数只能用于矫正和计算得到结果的输入图像分辨率一致的图
bool camera_calibration(Mat gray,cv::Size patternSize,cv::Mat& cameraMatrix,cv::Mat& distCoeffs);
//图像畸变矫正功能image是输入图像无要求cameraMatrix和distCoeffs是图像畸变矫正的参数
//返回值是矫正后的图像,输入图像是什么格式,输出图像就是什么格式
//注:相机标定功能得到的结果参数只能用于矫正和计算得到结果的输入图像分辨率一致的图
Mat distortion_correction(Mat image,cv::Mat cameraMatrix,cv::Mat distCoeffs);