HackUTOKYOv2Pim

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

commit 5ff06a8eed9fee0cc0ad40894b9d36903f6b76b2
parent c68b2adc8820674238115ca70957222192ff7554
Author: 諒太 林 <ryouturn@gmail.com>
Date:   Fri, 30 Aug 2024 21:03:52 +0900

update test

Diffstat:
Mtest.py | 8++++----
1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/test.py b/test.py @@ -35,16 +35,16 @@ def main(): if count[0] >= camLimit: if count[0] > count[1]: print("R>L") - escapeR + escapeR() else: print("R<L") - escapeL + escapeL() elif count[1] >= camLimit: - escapeL + escapeL() if cv2.waitKey(1) != -1: break - + def mosaic(src): dst = cv2.resize(src, None, fx=0.1, fy=0.1, interpolation=cv2.INTER_NEAREST) return cv2.resize(dst, src.shape[:2][::-1], interpolation=cv2.INTER_NEAREST)