X-Git-Url: https://git.ao2.it/experiments/gstreamer.git/blobdiff_plain/7bdb0839fbadd5c43133b7e14a49d41d3dd84e44..49dc6e41e256a942d4f76fadd35399a7b2e39008:/python/gst-test-perspective.py diff --git a/python/gst-test-perspective.py b/python/gst-test-perspective.py index b51591a..6ddf5b0 100755 --- a/python/gst-test-perspective.py +++ b/python/gst-test-perspective.py @@ -1,8 +1,9 @@ #!/usr/bin/env python -# test program for the "perspective" geometric tranform element +# test program for the "perspective" geometric transform element -import cv +import cv2 +import numpy as np import gi gi.require_version('Gst', '1.0') @@ -17,17 +18,14 @@ def calc_matrix(): top_x_shift = 200 width, height = 800, 480 - corners = [(0, 0), (width, 0), (width, height), (0, height)] - target = [(top_x_shift, 0), (width - top_x_shift, 0), (width, height), (0, height)] + corners = np.array([(0, 0), (width, 0), (width, height), (0, height)], dtype=np.float32) + target = np.array([(top_x_shift, 0), (width - top_x_shift, 0), (width, height), (0, height)], dtype=np.float32) - mat = cv.CreateMat(3, 3, cv.CV_64F) - cv.GetPerspectiveTransform(corners, target, mat) + mat = cv2.getPerspectiveTransform(corners, target) + ret, inv_mat = cv2.invert(mat) - inv_mat = cv.CreateMat(3, 3, cv.CV_64F) - cv.Invert(mat, inv_mat) + return inv_mat.flatten() - matrix = [inv_mat[j, i] for j in range(mat.rows) for i in range(mat.cols)] - return matrix def main():