本文整理汇总了C++中BinaryImage::getIndexValue方法的典型用法代码示例。如果您正苦于以下问题:C++ BinaryImage::getIndexValue方法的具体用法?C++ BinaryImage::getIndexValue怎么用?C++ BinaryImage::getIndexValue使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类BinaryImage
的用法示例。
在下文中一共展示了BinaryImage::getIndexValue方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: main
//简单的测试程序,运行ok,结果ok
int main()
{
BinaryImage a(4, 5); //新建一张图片
a.setIndexValue(0, 0, 1); a.setIndexValue(0, 1, 0); a.setIndexValue(0, 2, 0); a.setIndexValue(0, 3, 1); a.setIndexValue(0, 4, 0);
a.setIndexValue(1, 0, 1); a.setIndexValue(1, 1, 1); a.setIndexValue(1, 2, 1); a.setIndexValue(1, 3, 0); a.setIndexValue(1, 4, 0);
a.setIndexValue(2, 0, 1); a.setIndexValue(2, 1, 0); a.setIndexValue(2, 2, 1); a.setIndexValue(2, 3, 1); a.setIndexValue(2, 4, 0);
a.setIndexValue(3, 0, 1); a.setIndexValue(3, 1, 0); a.setIndexValue(3, 2, 0); a.setIndexValue(3, 3, 0); a.setIndexValue(3, 4, 1);
Element b(2, 2); //新建一个结构元素
b.ptr[0][0] = 1; b.ptr[0][1] = 1;
b.ptr[1][0] = 1; b.ptr[1][1] = 0;
b.originX = 1;
b.originY = 1;
BinaryImage* k=a.dilation(b); //dilation
for (int i = 0; i < k->getRow(); i++)
{
for (int j = 0; j < k->getCol(); j++)
cout << k->getIndexValue(i, j) << " ";
cout << endl;
}
cout << "******************************" << endl;
BinaryImage* l = a.erosion(b); //erosion
for (int i = 0; i < l->getRow(); i++)
{
for (int j = 0; j < l->getCol(); j++)
cout <<l->getIndexValue(i, j) << " ";
cout << endl;
}
cout << "******************************" << endl;
system("pause");
}