Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
O
opencv
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
opencv
Commits
bab4f4f5
Commit
bab4f4f5
authored
Aug 31, 2018
by
Vadim Pisarevsky
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #12348 from take1014:subdiv_getTriangleList_5788
parents
a08c6e49
e1ee744e
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
57 additions
and
2 deletions
+57
-2
Subdiv2DTest.java
modules/imgproc/misc/java/test/Subdiv2DTest.java
+1
-1
subdivision2d.cpp
modules/imgproc/src/subdivision2d.cpp
+3
-1
test_subdivision2d.cpp
modules/imgproc/test/test_subdivision2d.cpp
+53
-0
No files found.
modules/imgproc/misc/java/test/Subdiv2DTest.java
View file @
bab4f4f5
...
...
@@ -52,7 +52,7 @@ public class Subdiv2DTest extends OpenCVTestCase {
s2d
.
insert
(
new
Point
(
10
,
20
)
);
MatOfFloat6
triangles
=
new
MatOfFloat6
();
s2d
.
getTriangleList
(
triangles
);
assertEquals
(
10
,
triangles
.
rows
());
assertEquals
(
2
,
triangles
.
rows
());
/*
int cnt = triangles.rows();
float buff[] = new float[cnt*6];
...
...
modules/imgproc/src/subdivision2d.cpp
View file @
bab4f4f5
...
...
@@ -758,6 +758,7 @@ void Subdiv2D::getTriangleList(std::vector<Vec6f>& triangleList) const
triangleList
.
clear
();
int
i
,
total
=
(
int
)(
qedges
.
size
()
*
4
);
std
::
vector
<
bool
>
edgemask
(
total
,
false
);
Rect2f
rect
(
topLeft
.
x
,
topLeft
.
y
,
bottomRight
.
x
,
bottomRight
.
y
);
for
(
i
=
4
;
i
<
total
;
i
+=
2
)
{
...
...
@@ -773,7 +774,8 @@ void Subdiv2D::getTriangleList(std::vector<Vec6f>& triangleList) const
edge
=
getEdge
(
edge
,
NEXT_AROUND_LEFT
);
edgeOrg
(
edge
,
&
c
);
edgemask
[
edge
]
=
true
;
triangleList
.
push_back
(
Vec6f
(
a
.
x
,
a
.
y
,
b
.
x
,
b
.
y
,
c
.
x
,
c
.
y
));
if
(
rect
.
contains
(
a
)
&&
rect
.
contains
(
b
)
&&
rect
.
contains
(
c
)
)
triangleList
.
push_back
(
Vec6f
(
a
.
x
,
a
.
y
,
b
.
x
,
b
.
y
,
c
.
x
,
c
.
y
));
}
}
...
...
modules/imgproc/test/test_subdivision2d.cpp
0 → 100644
View file @
bab4f4f5
/*M///////////////////////////////////////////////////////////////////////////////////////
// This file is part of OpenCV project.
// It is subject to the license terms in the LICENSE file found in the top-level directory
// of this distribution and at http://opencv.org/license.html.
//M*/
#include "test_precomp.hpp"
namespace
opencv_test
{
namespace
{
TEST
(
Imgproc_Subdiv2D_getTriangleList
,
regression_5788
)
{
const
float
points
[
65
][
2
]
=
{
{
390
,
802
},
{
397
,
883
},
{
414
,
963
},
{
439
,
1042
},
{
472
,
1113
},
{
521
,
1181
},
{
591
,
1238
},
{
678
,
1284
},
{
771
,
1292
},
{
853
,
1281
},
{
921
,
1243
},
{
982
,
1191
},
{
1030
,
1121
},
{
1059
,
1038
},
{
1072
,
945
},
{
1081
,
849
},
{
1082
,
749
},
{
459
,
734
},
{
502
,
704
},
{
554
,
696
},
{
609
,
698
},
{
660
,
707
},
{
818
,
688
},
{
874
,
661
},
{
929
,
646
},
{
982
,
653
},
{
1026
,
682
},
{
740
,
771
},
{
748
,
834
},
{
756
,
897
},
{
762
,
960
},
{
700
,
998
},
{
733
,
1006
},
{
766
,
1011
},
{
797
,
999
},
{
825
,
987
},
{
528
,
796
},
{
566
,
766
},
{
617
,
763
},
{
659
,
794
},
{
619
,
808
},
{
569
,
812
},
{
834
,
777
},
{
870
,
735
},
{
918
,
729
},
{
958
,
750
},
{
929
,
773
},
{
882
,
780
},
{
652
,
1102
},
{
701
,
1079
},
{
743
,
1063
},
{
774
,
1068
},
{
807
,
1057
},
{
852
,
1065
},
{
896
,
1077
},
{
860
,
1117
},
{
820
,
1135
},
{
783
,
1141
},
{
751
,
1140
},
{
706
,
1130
},
{
675
,
1102
},
{
743
,
1094
},
{
774
,
1094
},
{
809
,
1088
},
{
878
,
1082
}
};
std
::
vector
<
cv
::
Point2f
>
pts
;
cv
::
Rect
rect
(
0
,
0
,
1500
,
2000
);
cv
::
Subdiv2D
subdiv
(
rect
);
for
(
int
i
=
0
;
i
<
65
;
i
++
)
{
cv
::
Point2f
pt
(
points
[
i
][
0
],
points
[
i
][
1
]);
pts
.
push_back
(
pt
);
}
subdiv
.
insert
(
pts
);
std
::
vector
<
cv
::
Vec6f
>
triangles
;
subdiv
.
getTriangleList
(
triangles
);
int
trig_cnt
=
0
;
for
(
std
::
vector
<
cv
::
Vec6f
>::
const_iterator
it
=
triangles
.
begin
();
it
!=
triangles
.
end
();
it
++
,
trig_cnt
++
)
{
EXPECT_TRUE
(
(
0
<=
triangles
.
at
(
trig_cnt
).
val
[
0
]
&&
triangles
.
at
(
trig_cnt
).
val
[
0
]
<
1500
)
&&
(
0
<=
triangles
.
at
(
trig_cnt
).
val
[
1
]
&&
triangles
.
at
(
trig_cnt
).
val
[
1
]
<
2000
)
&&
(
0
<=
triangles
.
at
(
trig_cnt
).
val
[
2
]
&&
triangles
.
at
(
trig_cnt
).
val
[
2
]
<
1500
)
&&
(
0
<=
triangles
.
at
(
trig_cnt
).
val
[
3
]
&&
triangles
.
at
(
trig_cnt
).
val
[
3
]
<
2000
)
&&
(
0
<=
triangles
.
at
(
trig_cnt
).
val
[
4
]
&&
triangles
.
at
(
trig_cnt
).
val
[
4
]
<
1500
)
&&
(
0
<=
triangles
.
at
(
trig_cnt
).
val
[
5
]
&&
triangles
.
at
(
trig_cnt
).
val
[
5
]
<
2000
)
);
}
EXPECT_EQ
(
trig_cnt
,
105
);
}
}};
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment