【发布时间】:2021-05-31 16:29:34
【问题描述】:
我有一个 498 帧长的图像序列,我使用 cv2.calcOpticalFlowFarneback 计算了光流。因此,现在我有 497 个向量图来表示我的运动向量,这些向量由大小和方向来描述。
我需要做的是生成一个直方图,其中在 x 轴上我有角度范围(以度为单位)。更具体地说,我有 12 个 bin,其中第一个 bin 包含方向为 0 < angle < 30 的所有向量,第二个 bin 包含方向为 30 < angle < 60 的所有向量,依此类推。相反,在 y 轴上,我需要得到每个 bin 中包含的那些向量的模的总和。
这里的问题是使用简单的for 循环和if 语句来完成所有这些需要很长时间:
#magnitude and angle are two np.array of shape (497, 506, 1378)
bins = [1,2,3,4,5,6,7,8,9,10,11,12]
sum = np.zeros_like(bins)
for idx in range(np.array(magnitude).shape[0]): # for each flow map, i.e. for each image pair
for mag, ang in zip(magnitude[idx].reshape(-1), angle[idx].reshape(-1)):
if ang >= 0 and ang <= 30:
sum[0] += mag
elif ang > 30 and ang <= 60:
sum[1] += mag
elif ang > 60 and ang <= 90:
sum[2] += mag
elif ang > 90 and ang <= 120:
sum[3] += mag
elif ang > 120 and ang <= 150:
sum[4] += mag
elif ang > 150 and ang <= 180:
sum[5] += mag
elif ang > 180 and ang <= 210:
sum[6] += mag
elif ang > 210 and ang <= 240:
sum[7] += mag
elif ang > 240 and ang <= 270:
sum[8] += mag
elif ang > 270 and ang <= 300:
sum[9] += mag
elif ang > 300 and ang <= 330:
sum[10] += mag
elif ang > 330 and ang <= 360:
sum[11] += mag
计算耗时约 3 小时。有人可以建议一种更好、更有效的方法来执行此计算吗?
提前致谢。
编辑
摆脱了条件句并使用 Numba 进一步加快了速度。以下代码计算时间不到 10 秒:
import numpy as np
from numba import jit
@jit(nopython=True) # Set "nopython" mode for best performance, equivalent to @njit
def hoof(magnitude, angle):
sum = np.zeros(13)
for idx in range(magnitude.shape[0]): # for each flow map, i.e. for each image pair
for mag, ang in zip(magnitude[idx].reshape(-1), angle[idx].reshape(-1)):
sum[int((ang)//30)] += mag
sum[11] += sum[12]
return sum[0:12]
【问题讨论】:
标签: python performance computer-vision histogram opticalflow