fix imports

This commit is contained in:
Prohurtz 2023-01-31 13:54:42 -06:00
parent f6d3ea0659
commit 88c5ecdf99
2 changed files with 5 additions and 4 deletions

View File

@ -7,7 +7,7 @@ from functools import lru_cache
import cv2
import numpy as np
from EyeTrackApp.img_utils import safe_crop
from img_utils import safe_crop
# from line_profiler_pycharm import profile

View File

@ -6,7 +6,7 @@ from functools import lru_cache
import cv2
import numpy as np
from EyeTrackApp.haar_surround_feature import (
from haar_surround_feature import (
AutoRadiusCalc,
BlinkDetector,
CenterCorrection,
@ -14,8 +14,8 @@ from EyeTrackApp.haar_surround_feature import (
conv_int,
frameint_get_xy_step,
)
from EyeTrackApp.img_utils import safe_crop
from EyeTrackApp.utils import clamp
from img_utils import safe_crop
from utils import clamp
# from line_profiler_pycharm import profile
@ -496,3 +496,4 @@ if __name__ == "__main__":
hsrac.open_video(video_path)
while hsrac.read_frame():
_ = hsrac.single_run()
1