Skip to content

Commit

Permalink
Merge pull request #16 from occ-ai/roy.fix_numpy_import
Browse files Browse the repository at this point in the history
chore: Import cv2 module and remove duplicate import statement
  • Loading branch information
royshil authored Jun 17, 2024
2 parents adeb86e + 8e83d86 commit 80e013c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion camera_view.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@

import platform
import time
import cv2
import numpy as np
import cv2
import datetime
from datetime import datetime

Expand Down
3 changes: 2 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
cyndilib
fastapi
numpy==1.26.4
obsws-python
opencv-python
opencv-python==4.9.0.80
pillow
platformdirs
pyinstaller==6.8.0
Expand Down
2 changes: 1 addition & 1 deletion scoresight.spec
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ a = Analysis(
pathex=[],
binaries=[],
datas=datas,
hiddenimports=[],
hiddenimports=['numpy.core.multiarray'],
hookspath=[],
hooksconfig={},
runtime_hooks=[],
Expand Down

0 comments on commit 80e013c

Please sign in to comment.