Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有以下 img 对象
img.shape = (480,640,3)
我怎样才能做到(img即(480,640)失去,3)?
img
(480,640)
,3
如果你想要前三分之一,你想要
newimg = img[..., 0]
如果你再也不需要另外三分之二,但你会保留前三分之一一段时间,你可能想要
img = img[..., 0].copy()
所以你不要保留数组的其他部分。