Ejemplo n.º 1
0
 def test_intersection(self):
   intersection = np_box_list_ops.intersection(self.boxlist1, self.boxlist2)
   expected_intersection = np.array([[2.0, 0.0, 6.0], [1.0, 0.0, 5.0]],
                                    dtype=float)
   self.assertAllClose(intersection, expected_intersection)
Ejemplo n.º 2
0
 def test_intersection(self):
   intersection = np_box_list_ops.intersection(self.boxlist1, self.boxlist2)
   expected_intersection = np.array([[2.0, 0.0, 6.0], [1.0, 0.0, 5.0]],
                                    dtype=float)
   self.assertAllClose(intersection, expected_intersection)