上传文件至 /

This commit is contained in:
2026-04-16 16:00:49 +08:00
parent 63d0dcd1cf
commit 3a7e22821f
3 changed files with 33 additions and 0 deletions

10
yzz.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)