Skip to content

Commit

Permalink
Update Aruco integration test
Browse files Browse the repository at this point in the history
  • Loading branch information
Byrdman32 committed Aug 22, 2022
1 parent a88ec37 commit 58c5a94
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/integration/aruco_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ def print(self):
print(output.format(id=self.id, detected=self.detected))


cap = cv2.imread(r'../../resources/artags.png')
cap = cv2.imread('./resources/artags.png')
frame_found = False
FRAMES_DETECTED = 5
detected_tags = []
Expand Down Expand Up @@ -137,7 +137,7 @@ def add_tag(tag, corner):

while True:
# Webcam Frame
ret, reg_img = cap.read()
reg_img = cap

# Frame Adjustments
gray = cv2.cvtColor(reg_img, cv2.COLOR_BGR2GRAY)
Expand Down

0 comments on commit 58c5a94

Please sign in to comment.