area_center—区域的区域和中心
2022-11-13
新闻来源:网淘巴
围观:500
''
简短描述
area_center—区域的区域和中心
签名
area_center(Regions : : : Area, Row, Column)
描述
运算符area[文]_center[章]计算输入区域的[来]面积和中心。面[自]积定义为一个区[网]域的像素数。中[淘]心分别计算为所[巴]有像素的线坐标[文]或列坐标的平均[章]值。
在本章的文档([来]区域/特征)中[自],你可以找到一[网]个说明不同区域[淘]的图像。
如果传递了多个区域,则结果存储在元组中,元组中值的索引对应于输入区域的索引。在空区域的情况下,如果没有设置其他行为,所有参数的值都是0.0(参见set_system)。
参数
Regions[巴] (input_[文]object)[章] region([来]-array)[自]→o[网]bject
要检查的区域。[淘]
Area (output[巴]_contro[文]l) integer[章](-array[来])→[自](intege[网]r)
区域的面积。
Row (output[淘]_contro[巴]l) point.y[文](-array[章])→[来](real)
中心的线索引。[自]
列(outpu[网]t_contr[淘]ol) point.x[巴](-array[文])→[章](real)
中心的列索引。
例程
#include "HIOStream.h"
#if !defined(USE_IOSTREAM_H)
using namespace std;
#endif
#include "HalconCpp.h"
using namespace Halcon;
main()
{
Tuple area, row, column;
HImage img ("monkey");
HWindow w;
img.Display (w);
w.Click ();
HRegionArray reg = (img >= 164).Connection ();
reg.Display (w);
w.Click ();
area = reg.AreaCenter (&row, &column);
for (int i = 0; i < reg.Num (); i++)
{
cout << "Row [" << i << "]" << "= " << row[i].D ();
cout << "\t\tColumn [" << i << "]" << "= " << column[i].D () << endl;
}
cout << "Total number of regions: " << reg.Num () << endl;
return(0);
}
返回结果
本文链接:https://www.wtao8.com/post/249.html 转载需授权!