当前位置: 首页 > article >正文

Halcon 重写Rectangle2及Arrow

验证目标:验证rotate_image后图像是否变形

获取信息:获取矩形中轴起点,终点,及四角位置信息

应用场景:1,找线找点算子封装后为检测极性指明方向

                  2,为二次定位提供位置信息

读取原图

read_image (Image123, 'E:/Halcon数据/资源图片/34.png')

获取外接矩形,验证图像旋转后是否变形

rotate_image (Image123, ImageRotate, 45, 'constant')
dev_set_color ('red')
dev_set_line_width (3)
gen_rectangle1 (ROI_0, 177.5, 213.5, 519.5, 759.5)
reduce_domain (ImageRotate, ROI_0, ImageReduced)
threshold (ImageReduced, Region, 0, 20)
smallest_rectangle2 (Region, Row, Col, Phi, Length1, Length2)
gen_rectangle2_contour_xld (Rectangle, Row, Col, Phi, Length1, Length2)

获取中轴起点,终点位置

*中轴起点
RowStart := Row + sin(Phi) * Length1
*中轴终点
RowEnd := Row - sin(Phi) * Length1
*中轴起点
ColStart := Col - cos(Phi) * Length1
*中轴终点
ColEnd := Col + cos(Phi) * Length1
dev_display (ImageRotate)
gen_cross_contour_xld (Cross, RowStart, ColStart, 60, Phi)
gen_cross_contour_xld (Cross, RowEnd, ColEnd, 60, Phi)

获取矩形四顶点信息

dev_display (ImageRotate)
drow := sin(rad(90) - Phi) * Length2
dcol := cos(rad(90) - Phi) * Length2
*左上
dev_set_color ('green')
RLeftUp:=Row + sin(Phi) * Length1 - sin(rad(90) - Phi) * Length2
CLeftUp:=Col - cos(Phi) * Length1 - cos(rad(90) - Phi) * Length2
gen_cross_contour_xld (Cross1, RLeftUp, CLeftUp, 60, Phi)
*右上
RRightUp:=Row - sin(Phi) * Length1 - sin(rad(90) - Phi) * Length2
CRightUp:=Col + cos(Phi) * Length1 - cos(rad(90) - Phi) * Length2
gen_cross_contour_xld (Cross2, RRightUp, CRightUp, 60, Phi)
*右下
RRightDown:=Row - sin(Phi) * Length1 + sin(rad(90) - Phi) * Length2
CRightDown:=Col + cos(Phi) * Length1 + cos(rad(90) - Phi) * Length2
gen_cross_contour_xld (Cross3, RRightDown, CRightDown, 60, Phi)
*左下
RLeftDown:= Row + sin(Phi) * Length1 + sin(rad(90) - Phi) * Length2
CLeftDown:=Col - cos(Phi) * Length1 +  cos(rad(90) - Phi) * Length2
gen_cross_contour_xld (Cross4, RLeftDown, CLeftDown, 60, Phi)

重写矩形2轮廓方式1

dev_set_color ('blue')
gen_contour_polygon_xld (Contour, [RLeftUp,RRightUp,RRightDown,RLeftDown,RLeftUp], [CLeftUp,CRightUp,CRightDown,CLeftDown,CLeftUp])

重写矩形2轮廓方式2

gen_contour_polygon_xld (Contour1, [RowStart - drow,RowEnd - drow,RowEnd + drow,RowStart + drow,RowStart - drow], [ColStart - dcol,ColEnd - dcol,ColEnd + dcol,ColStart + dcol,ColStart - dcol])

重写Arrow

ArrowAngle := rad(45) / 2
ArrowLength := Length1 * 0.2
dev_display (ImageRotate)
gen_contour_polygon_xld (CProfile, [RowStart,RowEnd], [ColStart,ColEnd])
gen_contour_polygon_xld (CArrow, [RowEnd - sin(ArrowAngle - Phi) * ArrowLength,RowEnd,RowEnd + sin(ArrowAngle + Phi) * ArrowLength], [ColEnd - cos(ArrowAngle - Phi) * ArrowLength,ColEnd,ColEnd - cos(ArrowAngle + Phi) * ArrowLength])

过矩形2中点做垂直于中轴的指定长度线段

PSize := Length2 * 0.2
gen_contour_polygon_xld (CMidPoint, [Row - sin(rad(90) + Phi) * PSize,Row - sin(Phi - rad(90)) * PSize], [Col + cos(rad(90) + Phi) * PSize,Col + cos(Phi - rad(90)) * PSize])

对于角度相对稳定目标可以采取直接偏移方式

gen_rectangle2 (Rectangle, (RLeftUp + RLeftDown)/2-30, (CLeftUp + CLeftDown)/2+30, Phi, 30, 30)

检测目标矩形波动角度相当大时可以采用中轴点计算

以中轴点四分之一为例

dev_display (ImageRotate)
gen_rectangle2 (Rectangle, (RowStart + Row)/2, (ColStart + Col)/2, Phi, 30, 30)


http://www.kler.cn/a/386983.html

相关文章:

  • 【数据价值化】国有企业数据资产入表及估值实践指南:挖掘数字资产新价值
  • 【linux】centos7 换阿里云源
  • K8S单节点部署及集群部署
  • git没有识别出大写字母改成小写重命名的文件目录
  • 深入探索离散 Hopfield 神经网络
  • 当你想要conda安装遇到UnavailableInvalidChannel: HTTP 404 NOT FOUND for channel的问题
  • 专题——编程案例
  • Java | Leetcode Java题解之第552题学生出勤记录II
  • 全网最最最详细的haproxy详解!!!
  • 测试实项中的偶必现难测bug--苹果支付丢单问题
  • Python爬虫实战 | 爬取网易云音乐热歌榜单
  • 【开源免费】基于SpringBoot+Vue.JS水果购物网站(JAVA毕业设计)
  • Python小白学习教程从入门到入坑------第二十九课 访问模式文件定位操作(语法进阶)
  • Docker配置及简单应用
  • 探索 C++20:C++ 的新纪元
  • 智能合约在供应链金融中的应用
  • 【EFK】Linux集群部署Elasticsearch最新版本8.x
  • 常用机器人算法原理介绍
  • Flutter UT太多导致跑覆盖率报错
  • PostgreSQL 性能优化全方位指南:深度提升数据库效率
  • Flutter鸿蒙next 中的 Drawer 导航栏
  • 如何利用动态住宅IP突破亚马逊反爬虫验证码机制
  • [NewStarCTF 2023 公开赛道]逃1
  • 10. java基础知识(下)
  • mac上如何安装指定版本的python
  • 【手撕面试题】React(高频知识点二)