其他分享
首页 > 其他分享> > halcon 基础总结(一)裁切图片并旋转图像

halcon 基础总结(一)裁切图片并旋转图像

作者:互联网

 

        connection (Region, ConnectedRegions)

        select_shape (ConnectedRegions, SelectedRegions, 'area', 'and', 400000, 9900000)

​编辑​编辑 

           smallest_rectangle2 (SelectedRegions, Row, Column, Phi, Lenghts1, Lenghts2)
           返回的Row,Column是区域特征的中心点坐标,Lenghts1是物体区域的长边的一半,Lenghts2是物体区域的短边的一半,Lenghts1>Lenghts2恒成立。Phi是x轴(水平)与长边的夹角的弧度,

           它的值在(-π/2, π/2), 要将phi换成角度的话只用angle := -180/π  * phi就好了

        rotate_image(Image, ImageRotate, angle, 'constant')

        在halcon中rotate_image是按逆时针方向进行旋转,而且旋转后的图片大小不变,但内容可能会有缺失。并且物体的中心在原图的位置和在旋转之后图片上的位置还会有差异。

 

​编辑

 为了解决使用rotate_image进行旋转产生的问题,可以所以建议使用旋转矩阵来进行旋转。具体参数解释在代码里

hom_mat2d_identity(HomMat2DIdentity)
hom_mat2d_rotate(HomMat2DIdentity, rad(angle), Row, Column, HomMat2DRotate)
affine_trans_image(Image, ImageAffineTrans, HomMat2DRotate, 'constant', 'false')

​编辑

crop_part(ImageAffineTrans, ImagePart, Row-Lenghts2, Column-Lenghts1, 2*Lenghts1, 2*Lenghts2)

​编辑

 

注意事项:

  1. 在旋转的时候我们的角度是angle:=180/π  * phi,旋转之后物体的长边与X轴平行(也就是本子平着)。如果想要本子竖起来就需要令angle := -(ratio*Phi+90)这样子旋转之后本子就竖起来
  2. 在使用crop_part这个函数对图像进行裁切时,如果长边与X轴平行则Row-Length2,Column-Length1。保存的图像的长宽分别为2*Lenghts1, 2*Lenghts2
  3. 如果短边与X轴平行则Row-Length1,Column-Length2。保存的图像的长宽分别为2*Lenghts2, 2*Lenghts1
  4. 使用旋转矩阵旋转之后物体的中心其实是发生了变化的,并且length1可能会大于row和column,所以在crop_part的时候需要注意输入左上角的坐标
  5. 其实由于旋转之后物体中心发生了变化,我更倾向于对旋转之后的图片再重新二值化寻找轮廓,这样子物体中心就是正常的了。然后再进行裁切图片

 

总体代码:

 

read_image (Image, 'C:/Users/HJ/Desktop/save_image/angle_60.png')

*自适应二值化,当寻找的物体为偏黑时使用dark, 偏白时使用light
binary_threshold(Image, Region, 'max_separability', 'light', UsedThreshold)
*将区域打散
connection (Region, ConnectedRegions)
*通过面积来筛选区域
select_shape (ConnectedRegions, SelectedRegions, 'area', 'and', 400000, 9900000)
*寻找区域的最小外接矩形,返回的Phi是弧度,在(-π/2,π/2)之间
*Row,Column是中心点的坐标,length1是物体的长边的一半, length2是物体短边的一半
smallest_rectangle2 (SelectedRegions, Row, Column, Phi, Lenghts1, Lenghts2)

*角度换算,将弧度换算成角度
ratio := 90.045/1.5708
angle := ratio*Phi
*创建vertical来控制旋转是垂直还是水平, 1表示长边与x轴平行, 0表示短边与x轴平行
vertical := 0
*创建旋转矩阵
hom_mat2d_identity(HomMat2DIdentity)
if (vertical == 1)
  *旋转使用的是弧度,所以需要用rad将角度换成弧度, row, column是旋转中心
  hom_mat2d_rotate(HomMat2DIdentity, rad(90-angle), Row, Column, HomMat2DRotate)
  *旋转图片,false的时候图像大小不发生改变,true的时候图像大小会变化,使用旋转矩阵旋转之后物体的中心其实是发生了变化的,
  *所以在截取物体的时候其实还要在重新寻找一些物体在旋转之后的图片上的中心位置
  affine_trans_image(Image, ImageAffineTrans, HomMat2DRotate, 'constant', 'true')
  *裁切图片,当长边与x轴平行时,Row-Lenghts2, Column-Lenghts2, 2*Lenghts1, 2*Lenghts2
  *当短边与x轴平行时,Row-Lenghts1, Column-Lenghts2, 2*Lenghts2, 2*Lenghts1

  *Row-Lenghts1, Column-Lenghts2是左上角的坐标,2*Lenghts2, 2*Lenghts1是截取的场合宽
  crop_part(ImageAffineTrans, ImagePart, Row-Lenghts1, Column-Lenghts2, 2*Lenghts2, 2*Lenghts1)
else
  hom_mat2d_rotate(HomMat2DIdentity, rad(-angle), Row, Column, HomMat2DRotate)
  affine_trans_image(Image, ImageAffineTrans, HomMat2DRotate, 'constant', 'true')
  crop_part(ImageAffineTrans, ImagePart, Row-Lenghts2, Column-Lenghts1, 2*Lenghts1, 2*Lenghts2)
endif

 

 

 



标签:旋转,裁切,Column,image,halcon,图像,Lenghts2,Lenghts1,Row
来源: https://www.cnblogs.com/mr2504/p/16419433.html