mirror of
https://github.com/LmeSzinc/StarRailCopilot.git
synced 2024-11-16 06:25:24 +00:00
16 lines
236 B
Python
16 lines
236 B
Python
|
def handle_sensitive_image(image):
|
||
|
"""
|
||
|
Args:
|
||
|
image:
|
||
|
|
||
|
Returns:
|
||
|
np.ndarray:
|
||
|
"""
|
||
|
# Paint UID to black
|
||
|
image[680:720, 0:180, :] = 0
|
||
|
return image
|
||
|
|
||
|
|
||
|
def handle_sensitive_logs(logs):
|
||
|
return logs
|