上传文件至 /

This commit is contained in:
2026-04-16 15:36:12 +08:00
parent 2f070f7bfb
commit cf06d8734a
3 changed files with 31 additions and 0 deletions

11
test.py Normal file
View File

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