分割ndarray特征

问题描述 投票:-3回答:1

当前,我正在使用Hog,我想获取某些数组数据。

import matplotlib.pyplot as plt

from skimage.feature import hog
from skimage import data, exposure

image = data.astronaut()
fd = hog(image,orientations=9,pixels_per_cell=(4,4),cells_per_block=(2,2),feature_vector=False)
fd.shape

形状为(127,127,2,2,9)如何从此嵌套列表中获取第一个,第二个和最后一个值我想采用形状为(127,127,9)]的数组

谢谢。

[当前,我正在使用Hog,我想获取某些数组数据。从skimage.feature导入matplotlib.pyplot作为plt从skimage导入数据导入猪,曝光图像=数据....

python numpy opencv multidimensional-array
1个回答
0
投票

您可以像下面这样对给定的数组进行切片:

© www.soinside.com 2019 - 2024. All rights reserved.