diff options
author | Anthony Wang | 2024-05-13 19:45:14 -0400 |
---|---|---|
committer | Anthony Wang | 2024-05-13 19:45:14 -0400 |
commit | 57a2ecb485d3814b85f4c22c9b48f1de053750eb (patch) | |
tree | 436cdf7a3b2b78069c5e3ce383aad68a227b285a | |
parent | 05e4dfbd5b9ddee59f6d42a608612f11102b61fe (diff) |
Revert "Use medians for deciding color, seems to work well in practice"
This reverts commit 05e4dfbd5b9ddee59f6d42a608612f11102b61fe.
-rw-r--r-- | decoder.py | 6 |
1 files changed, 1 insertions, 5 deletions
@@ -99,11 +99,7 @@ while data is None: ) frame = cv2.warpPerspective(raw_frame, M, (args.width, args.height)) # Convert to new color space - frame = np.squeeze(F @ (frame - origin)[..., np.newaxis]) - rmed = np.median(frame[:,:,0]) - gmed = np.median(frame[:,:,1]) - bmed = np.median(frame[:,:,2]) - frame = np.dstack((frame[:,:,0] > rmed, frame[:,:,1] > gmed, frame[:,:,2] > bmed)).astype(np.uint8) + frame = (np.squeeze(F @ (frame - origin)[..., np.newaxis]) >= 160).astype(np.uint8) frame = np.packbits( np.concatenate( ( |