Files
task-3-1-3-Matrix-Fundament…/test.py
2026-04-16 15:34:06 +08:00

12 lines
165 B
Python

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