halcon深度图,平面拟合后,高度矫正

dev_clear_window()
dev_open_window (0, 0, 545, 400, 'black', WindowHandle)
xResolution:=0.04
yResolution:=0.04
read_image (Image, 'E:/SMT电容虚焊测高/Test_Pic/12-3测试图/12-03-15-34-58-155.tif')
*未滤波的深度图转成灰度图
threshold (Image, Region, 0, 20)
min_max_gray (Region, Image, 0, Min, Max, Range)
*基于深度图的最大、最小值,对深度图转换成灰度图
scale_image_range (Image, ImageScaled, Min, Max)
convert_image_type (ImageScaled, ImageConverted, 'byte')
*本来想通过对单通道real类型的图片采用中值、均值和高斯等传统手段的滤波方式
*但滤波过后的图片全部没有数据
*所以只能采用halcon的三维工具进行滤波
*第一步将深度图转为3D模型
*首先生成x、y方向的映射坐标
get_image_size (Image, Width, Height)
gen_image_surface_first_order (xImageSurface, 'real', 1, 0, 0, 0, 0, Width, Height)
gen_image_surface_first_order (yImageSurface, 'real', 0, 1, 0, 0, 0, Width, Height)
scale_image (xImageSurface, xImageScaled, xResolution, 0)
scale_image (yImageSurface, yImageScaled, yResolution, 0)
*将三张图片合成到三个通道,其实没有实际用处
compose3 (xImageScaled, yImageScaled, Image, MultiChannelImage)
*直

你可能感兴趣的:(halcon三维测量算法,平面,计算机视觉,图像处理)