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