Skip to content

Commit e45bcd3

Browse files
committed
変数名xor修正
1 parent ac27e34 commit e45bcd3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

modules/ximgproc/test/test_sparse_table_morphology.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ namespace {
1111

1212
void assertArraysIdentical(InputArray ary1, InputArray ary2)
1313
{
14-
Mat xor = ary1.getMat() ^ ary2.getMat();
15-
CV_Assert(cv::countNonZero(xor.reshape(1)) == 0);
14+
Mat xormat = ary1.getMat() ^ ary2.getMat();
15+
CV_Assert(cv::countNonZero(xormat.reshape(1)) == 0);
1616
}
1717
Mat im(int type)
1818
{

0 commit comments

Comments
 (0)