回收康耐视DMR8500-0400蓝牙无线扫描枪
- 供应商
- 玉晟电子商行
- 认证
- 报价
- ¥9755.00元每件
- 品牌
- AB罗克韦尔特殊系列光电传感器
- 型号
- AB罗克韦尔限位开关
- 产地
- AB罗克韦尔关电传感器
- 联系电话
- 13164738586
- 高小姐
- 13164738586
- 联系人
- 高小姐
- 所在地
- 深圳市福田区园岭街道园东社区园岭八街园岭新村92栋103
- 更新时间
- 2023-05-26 15:08
9)histsdev(hist, [firstbin, lastbin], [color]) 返回直方图的一定容器范围内的标准偏差值。 注意:如果引用 colorhist 结构,则会添加 color参数。
10)histsum(hist, [firstbin, lastbin], [color]) 返回直方图的一定容器范围内的灰度值总和。 注意:如果引用 colorhist 结构,则会添加 color参数。
11)uare(hist, [firstbin, lastbin], [color]) 返回直方图的一定容器范围内的值平方和。 注意:如果引用 colorhist 结构,则会添加 color参数。
12)histtail(hist, [firstbin, lastbin], [color]) 返回直方图的一定容器范围的*后一个非零灰度值索引。 注意:如果引用 colorhist 结构,则会添加color 参数。
13)histtailpercentage(hist, percentage, [firstbin, lastbin],[color]) 返回表示直方图百分比的灰度级值索引。
14)histthresh(hist, [firstbin, lastbin], [color]) 返回直方图的**二进制阈值。 注意:如果引用 colorhist 结构,则会添加 color 参数。
二、几何(测量距离和角度或拟合几何形状的函数)。
1. 测量(计算距离和角度的函数)。
1)circletocircle(circle 0, circle 1, show) 测量两个圆之间的*短距离。返回dist 结构。注意:如果两个圆彼此分离,距离为正值;相交时距离为 0.0; 若包含,则为负值。 2)linetocircle(line, circle, show) 测量直线到圆的*短距离。返回 dist结构。 注意:如果它们相交,则距离为 0.0,并且点就是交点。 3)linetoline(line 0,line 1, show) 测量两条直线之间夹角(逆时针度数)。 返回 dist 结构。注意:如果它们相交,则距离为0.0。如果平 行,则距离为正值且角度为 0、+180 或 ?180。 4)midlinetomidline(line0, line 1, show) 测量两条线段中点之间的*短距离。返回 dist 结构。 5)pointtocircle(point, circle, show) 测量点到圆的*短距离。 返回dist 结构。注意:如果点落在圆外,则距离为正;如果落在圆上,则距离 为 0.0;如果在圆内,则距离为负。 6)pointtoline(point, line, show) 测量点到直线的*短距离。返回 dist 结构。 注意:如果点落在直线上,则角度为 0.0。 7)pointtopoint(point 0, point 1,show) 测量两点之间的*短距离。返回 dist 结构。 注意:如果 point 0 = point1,则角度为 0.0。 8)pointtopointangle(point 0, point 1) 返回线段与图像行轴之间的角度。 注意:如果 point 0 = point 1,则角度为 0.0。 9)pointtopointdistance(point 0, point 1) 返回两个点之间的距离。
2. 拟合(构造几何形状的函数)。
1)boundingrectangle 基于所选的对齐方式,创建围绕斑点的界限矩形。 2)circlefromnpoints(point row 0, point col 0, point row 1, point col1, point row 2, point col 2, [point row 3, point col 3, ...,show]) 通过系列点构造一个圆。返回 circlefit 结构。 3)linefromnpoints(point row 0, point col 0, point row 1, point col 1,[point row 2, point col 2, ..., show]) 通过系列点构造一条直线。 返回linefit 结构。 4) segmentfromlines(line 0, line 1, show) 通过对两条线段取平均数构造一条线段。 返回直线结构。