上传文件至 /

This commit is contained in:
2026-04-16 15:39:11 +08:00
parent 574dd17001
commit 73c84c7e11
3 changed files with 34 additions and 0 deletions

10
import numpy as np.py Normal file
View File

@@ -0,0 +1,10 @@
import numpy as np
image = np.array([
[100, 150, 200],
[80, 120, 180],
[60, 90, 140]
], dtype=np.uint8)
print("原图:")
print(image)