Skip to content Skip to sidebar Skip to footer

Trouble Getting Cv.transform To Work

I'd like to use the same affine matrix M on some individual (x,y) points as I use on images with cv2.warpAffine. It seems cv2.transform is the way to go . When I try send an Nx2 m

Solution 1:

OpenCV on Python often wants points in the form

np.array([ [[x1, y1]], ..., [[xn, yn]] ])

This is not clear in the documentation for cv2.transform() but is more clear in the documentation for other functions that use points, like cv2.perspectiveTransform() where they mention coordinates to be on separate channels:

src – input two-channel or three-channel floating-point array

Transforms can also be used in 3D (using a 4x4 perspective transformation matrix) so that would explain the ability to use two- or three-channel arrays in cv2.transform().

Solution 2:

The channel is the last dimension of the source array. Let's read the docs of cv2.transform() at the beginning.enter image description here


To the question:

Because the function transforms each element from the parameter src, the dimension of src is required to be bigger than 2.

import cv2
import numpy as np

rotation_mat = np.array([[0.8660254, 0.5, -216.41978046], [-0.5, 0.8660254, 264.31038357]]) # 2x3

rotate_box = np.array([[410, 495], [756, 295], [956, 642], [610, 842]]) # 2x2
result_box = cv2.transform(rotate_box, rotation_mat) # error: (-215:Assertion failed) scn == m.cols || scn + 1 == m.cols infunction 'transform'

The reason is the dimension of each element of rotate_box is (2,). The transform by multiplication on matrices can not proceed.

To another answer: As long as the last dimension fits, other dimensions do not matter. Continue the above snippet:

rotate_box_1 = np.array([rotate_box]) # 1x4x2
result_box = cv2.transform(rotate_box_1, rotation_mat) # 1x4x2

rotate_box_2 = np.array([[[410, 495]], [[756, 295]], [[956, 642]], [[610, 842]]]) # 4x1x2
result_box = cv2.transform(rotate_box_2, rotation_mat) # 4x1x2

To reader: Note the shape returned by cv2.transform() is the same as the src.

Post a Comment for "Trouble Getting Cv.transform To Work"