opencv/modules/stitching/misc/python/test/test_stitching.py

55 lines
1.4 KiB
Python
Raw Normal View History

2017-07-30 18:52:27 +08:00
#!/usr/bin/env python
import cv2 as cv
2017-07-30 18:52:27 +08:00
from tests_common import NewOpenCVTests
class stitching_test(NewOpenCVTests):
def test_simple(self):
img1 = self.get_sample('stitching/a1.png')
img2 = self.get_sample('stitching/a2.png')
stitcher = cv.createStitcher(False)
(_result, pano) = stitcher.stitch((img1, img2))
2017-07-30 18:52:27 +08:00
#cv.imshow("pano", pano)
#cv.waitKey()
2017-07-30 18:52:27 +08:00
self.assertAlmostEqual(pano.shape[0], 685, delta=100, msg="rows: %r" % list(pano.shape))
self.assertAlmostEqual(pano.shape[1], 1025, delta=100, msg="cols: %r" % list(pano.shape))
2017-09-03 20:01:25 +08:00
class stitching_compose_panorama_test_no_args(NewOpenCVTests):
def test_simple(self):
img1 = self.get_sample('stitching/a1.png')
img2 = self.get_sample('stitching/a2.png')
stitcher = cv.createStitcher(False)
stitcher.estimateTransform((img1, img2))
result, _ = stitcher.composePanorama()
assert result == 0
class stitching_compose_panorama_args(NewOpenCVTests):
def test_simple(self):
img1 = self.get_sample('stitching/a1.png')
img2 = self.get_sample('stitching/a2.png')
stitcher = cv.createStitcher(False)
stitcher.estimateTransform((img1, img2))
result, _ = stitcher.composePanorama((img1, img2))
assert result == 0
2017-09-03 20:01:25 +08:00
if __name__ == '__main__':
NewOpenCVTests.bootstrap()