简体   繁体   中英

Rotate numpy array of coordinates by 45 degrees

I have a 2x32 numpy array of x,y coordinates "A", and I want to rotate it by 45 degrees, around the centre.

x = np.tile([1,2,3,4],8)
y = np.repeat([1,2,3,4,5,6,7,8],4)
A = np.vstack((x,y)) # just a quick example

Is there a quick and easy way to do this?

例如,start 表示我围绕中心旋转

Steps:

  1. Center your data on the origin using a translation
  2. Rotate the data about the origin (45 degrees clockwise = -pi/4 radians)
  3. Translate your data back to the original center

Using some linear algebra:

import numpy as np

x = np.tile([1,2,3,4],8)
y = np.repeat([1,2,3,4,5,6,7,8],4)
A = np.vstack((x,y)) # just a quick example

# Rotation matrix as in e.g. https://en.wikipedia.org/wiki/Rotation_matrix
theta = -np.pi / 4
rotate = np.array([
    [np.cos(theta), -np.sin(theta)],
    [np.sin(theta),  np.cos(theta)]
])

# Translation vector is the mean of all xs and ys. 
translate = A.mean(axis=1, keepdims=True)

Apply transformations:

out = A - translate    # Step 1
out = rotate @ out     # Step 2
out = out + translate  # Step 3

在此处输入图像描述

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM