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

汽车网站建设工作室外贸网站推广公司

汽车网站建设工作室,外贸网站推广公司,品牌推广建议,微信公众号平台官网注册入口1,目的。 测量水杯的半径 如图所示: 2,原理。 对 3D 点云对象 进行圆柱体拟合,获取拟合后的半径。 3,注意事项。 在Halcon中使用fit_primitives_object_model_3d进行圆柱体拟合时,输出的primitive_para…

1,目的。

测量水杯的半径

如图所示:
在这里插入图片描述


2,原理。

3D 点云对象 进行圆柱体拟合,获取拟合后的半径。


3,注意事项。

  1. 在Halcon中使用fit_primitives_object_model_3d进行圆柱体拟合时,输出的primitive_parameter包含以下7个参数:
    1. 参数构成
      ​ - 轴线方向向量
      3个数值:(a, b, c)
      描述圆柱体轴线的空间方向,满足归一化条件 a² + b² + c² = 1
      . - 轴线上基准点坐标
      3个数值:(x0, y0, z0)
      表示轴线上的一个参考点,通常靠近点云的重心
      . - ‌圆柱半径
      1个数值:R
      单位为点云的原始坐标系单位(如毫米)

    2. 数学验证

      圆柱表面点需满足方程:
      ( x − x p ) 2 + ( y − y p ) 2 + ( z − z p ) 2 − [ ( x − x p ) a + ( y − y p ) b + ( z − z p ) c ] 2 = R \sqrt{(x-x_p)^2+(y-y_p)^2+(z-z_p)^2-[(x-x_p)a+(y-y_p)b+(z-z_p)c]^2}=R (xxp)2+(yyp)2+(zzp)2[(xxp)a+(yyp)b+(zzp)c]2 =R
      其中(x_p, y_p, z_p)为轴线上任意一点


  1. 在Halcon中使用fit_primitives_object_model_3d对三维点云进行球体拟合时,输出的primitive_parameter包含以下4个关键参数:

    1. 参数构成
      球心坐标
      包含3个数值:(x, y, z)
      表示拟合球体的中心点在三维空间中的位置
      球体半径
      单个数值:R
      单位为点云的原始坐标系单位(如毫米或米)

    2. 参数验证方法
      数学验证‌:球面点需满足方程 ( x − x 0 ) 2 + ( y − y 0 ) 2 + ( z − z 0 ) 2 = R 2 (x-x_0)^2+(y-y_0)^2+(z-z_0)^2=R^2 (xx0)2+(yy0)2+(zz0)2=R2
      其中(x_0, y_0, z_0)为球心坐标

    3. 与其他几何体的区别

    • 圆柱体‌:输出7个参数(轴线方向、基准点、半径)68
    • 平面‌:输出4个参数(法向量、偏移量)

4,代码。

*参考案例库:fit_primitives_object_model_3d.hdev* ***********************************************************************
* 将输入的 2.5D 图像拟合成圆柱体,并计算显示拟合后的圆柱体半径* 2.5D 图像:在常规二维图像基础上叠加‌**高度或深度数据**‌,形成半三维表达(如灰度值隐含高度信息或直接存储深度通道)*
* ***********************************************************************
dev_update_off ()
dev_close_window ()
* Input: 2.5D image
* tif图像:是HALCON支持的‌高精度图像格式‌,专门用于存储包含复杂信息的图像数据,如3D深度图、工业相机采集的点云数据等*
* 一般由结构光相机,3D扫描仪提供
read_image (XYZ, '3d_machine_vision/segmentation/3d_primitives_xyz_02.tif')
dev_open_window_fit_image (XYZ, 0, 0, -1, -1, WindowHandle)
set_display_font (WindowHandle, 16, 'mono', 'true', 'false')
* Access to (x-, y-, z-)coordinates
access_channel (XYZ, X, 1)
access_channel (XYZ, Y, 2)*  提取第三通道作为深度
access_channel (XYZ, Z, 3)
* Segment cylinder manually
threshold (Z, Region, 0.0, 0.83)reduce_domain (X, Region, XTmp)dev_display (Z)
dev_set_draw ('margin')
dev_set_line_width (2)
dev_set_color ('green')
dev_display (Region)
disp_message (WindowHandle, 'Segment cylinder with a simple threshold', 'window', 12, 12, 'black', 'true')
disp_continue_message (WindowHandle, 'black', 'true')
stop ()
* 
xyz_to_object_model_3d (XTmp, Y, Z, ObjectModel3DID)* 指定 3D 对象的原始类型,拟合算法,输出类型
ParFitting := ['primitive_type','fitting_algorithm','output_xyz_mapping']
ValFitting := ['cylinder','least_squares_huber','true']
* 对 原始对象进行 3D 拟合fit_primitives_object_model_3d (ObjectModel3DID, ParFitting, ValFitting, ObjectModel3DOutID)
* Clear the object model that is no longer used
clear_object_model_3d (ObjectModel3DID)
* Display the result of the fitting
dev_display (Z)
dev_set_draw ('fill')
dev_display_fitting_results (RegionCylinder, RegionSphere, RegionPlane, RegionNone, ObjectModel3DOutID, WindowHandle, [])
dev_update_on ()
clear_object_model_3d (ObjectModel3DOutID)

本地函数:dev_display_fitting_results

* This procedure displays the results of a fitting operation.
* Additionally to the primitive regions, the radius of
* cylinders and spheres is displayed.
* The colors can be specified with the parameter Colors
* in the following manner:
* Color[0] is used for objects which could not be fitted
* Color[1] is used for cylinders:用于圆柱体
* Color[2] is used for spheres:用于球体
* Color[3] is used for planes:用于平面
* 
if (Colors == [])Colors := ['dim gray','forest green','red','slate blue']
endif
NumNone := 0
* 圆柱体数量
NumCylinders := 0
* 球体数量
NumSpheres := 0
* 平面数量
NumPlanes := 0
for Index := 0 to |ObjectModel3DOutID| - 1 by 1object_model_3d_to_xyz (XTmp, YTmp, ZTmp, ObjectModel3DOutID[Index], 'from_xyz_map', [], [])get_domain (XTmp, DomainTmp)* 是否存在原始数据get_object_model_3d_params (ObjectModel3DOutID[Index], 'has_primitive_data', ParamValue)if (ParamValue == 'true')get_object_model_3d_params (ObjectModel3DOutID[Index], 'primitive_parameter', GenParamValuesP)get_object_model_3d_params (ObjectModel3DOutID[Index], 'primitive_type', ParamValue)if (ParamValue == 'cylinder')if (NumCylinders == 0)*-1:表示复制从索引开始剩余的所有对象,注意这里是浅复制copy_obj (DomainTmp, RegionCylinder, 1, -1)* 从拟合的原始数据中获取拟合的圆柱体半径值RadiusCylinder := GenParamValuesP[6]elseconcat_obj (RegionCylinder, DomainTmp, RegionCylinder)RadiusCylinder := [RadiusCylinder,GenParamValuesP[6]]endifNumCylinders := NumCylinders + 1elseif (ParamValue == 'sphere')* 球体情况if (NumSpheres == 0)copy_obj (DomainTmp, RegionSphere, 1, -1)RadiusSphere := GenParamValuesP[3]elseconcat_obj (RegionSphere, DomainTmp, RegionSphere)RadiusSphere := [RadiusSphere,GenParamValuesP[3]]endifNumSpheres := NumSpheres + 1else* 平面情况if (NumPlanes == 0)copy_obj (DomainTmp, RegionPlane, 1, -1)elseconcat_obj (RegionPlane, DomainTmp, RegionPlane)endifNumPlanes := NumPlanes + 1endifelseif (NumNone == 0)copy_obj (DomainTmp, RegionNone, 1, -1)elseconcat_obj (RegionNone, DomainTmp, RegionNone)endifNumNone := NumNone + 1endif
endfor
* 
NumColors := |Colors|
if (NumNone > 0)dev_set_color (Colors[0 % NumColors])dev_display (RegionNone)
endif
if (NumCylinders > 0)dev_set_color (Colors[1 % NumColors])dev_display (RegionCylinder)
endif
if (NumSpheres > 0)dev_set_color (Colors[2 % NumColors])dev_display (RegionSphere)
endif
if (NumPlanes > 0)dev_set_color (Colors[3 % NumColors])dev_display (RegionPlane)
endif
disp_message (WindowHandle, '3D Fitting', 'window', -1, -1, 'black', 'true')
Message := 'Cylinders: ' + NumCylinders
Message[1] := 'Spheres: ' + NumSpheres
Message[2] := 'Planes: ' + NumPlanes
Message[3] := 'Undefined: ' + NumNone
disp_message (WindowHandle, Message, 'window', 40, 12, 'black', 'true')
if (NumCylinders > 0)* Display radius for each cylinderarea_center (RegionCylinder, Area, Row, Column)for Index := 0 to NumCylinders - 1 by 1Radius := int(RadiusCylinder[Index] * 1000)disp_message (WindowHandle, 'Cylinder\nr = ' + Radius + ' mm', 'image', Row[Index], Column[Index], 'white', 'false')endfor
endif
if (NumSpheres > 0)* Display radius for each cylinder spherearea_center (RegionSphere, Area, Row, Column)for Index := 0 to NumSpheres - 1 by 1Radius := int(RadiusSphere[Index] * 1000)disp_message (WindowHandle, 'Sphere\nr = ' + Radius + ' mm', 'image', Row[Index], Column[Index], 'white', 'false')endfor
endif
return ()
http://www.dtcms.com/wzjs/505395.html

相关文章:

  • 旅游酒店网站建设广东疫情最新数据
  • 郑州 高端网站建设如何做电商新手入门
  • 动漫网站建设意义网络营销策略的定义
  • 赤峰市做网站建设的公司温州网站优化推广方案
  • 有需要网站建设的没巨量引擎广告投放平台官网
  • 做网站制作挣钱吗有了域名怎么建网站
  • 西安公司网站制作要多少钱关键词优化需要从哪些方面开展
  • 上门做网站哪里有宽带推广方案
  • wordpress意见表单搜索引擎优化网站
  • 禁止wordpress历史版本网站seo优化外包
  • 网站服务器容器大二网络营销实训报告
  • 做网站3年3万seo权重优化软件
  • 网站建设SEO优化哪家好软文营销经典案例优秀软文
  • 找人做效果土去那网站找常州网站优化
  • 公司网站开源源码郑州百度seo
  • asp在网站开发中起什么作用查权重
  • 网站建设哪家公司制作网页模板
  • 做前端网站用什么软件写代码打开2345网址大全
  • 企业年金个人和单位的缴费比例深圳排名seo公司
  • 主页网站建设桔子seo
  • win10做的网站其他电脑访问不了深圳网络营销
  • 大型网站seo方法seo搜索优化是什么意思
  • 1688会提供网站建设百度推广竞价排名
  • 青海省公路建设总公司网站惠州seo按天计费
  • 档案网站建设论文搜索引擎优化的步骤
  • 河北盘古做的网站用的什么服务器市场营销策略有哪4种
  • 做网站企业 金坛如何提高网站在搜索引擎中的排名
  • 珍珠奶茶网站建设有创意的营销案例
  • 服务号微网站怎么做的南京网络推广平台
  • dw做响应式网站关键词网站推广