有沒有更漂亮的方法來做到這一點?具體來說,是否可以通過numpy API獲得這些最大值?我一直無法在API中找到它們,儘管它們很容易找到here in the docs。顛倒numpy陣列圖像可能是uint8,uint16,
MAX_VALUES = {np.uint8: 255, np.uint16: 65535, np.uint32: 4294967295, \
np.uint64: 18446744073709551615}
try:
image = MAX_VALUES[image.dtype] - image
except KeyError:
raise ValueError, "Image must be array of unsigned integers."
包,比如PIL和CV2爲反轉的圖像提供便捷的工具,但在代碼中的這一點上我有一個numpy的陣列 - 更復雜的分析如下 - 我想堅持與numpy的。
啊,''iinfo''就是我要找的東西。謝謝。 –