Set logger to debug
This commit is contained in:
parent
1bd489afc1
commit
3047a26dc5
1 changed files with 3 additions and 0 deletions
|
@ -3,6 +3,9 @@ import numpy as np
|
||||||
import cv2
|
import cv2
|
||||||
import logging
|
import logging
|
||||||
|
|
||||||
|
logger = logging.getLogger()
|
||||||
|
logger.setLevel(logging.DEBUG)
|
||||||
|
|
||||||
def normalize_image(image: np.ndarray) -> np.ndarray:
|
def normalize_image(image: np.ndarray) -> np.ndarray:
|
||||||
return cv2.resize(image, (160*2,90*2))
|
return cv2.resize(image, (160*2,90*2))
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue