diff options
author | Anthony Wang | 2024-05-13 21:37:57 -0400 |
---|---|---|
committer | Anthony Wang | 2024-05-13 21:37:57 -0400 |
commit | b5a725174ad85271b239a9b97c71c470bb949f5a (patch) | |
tree | 6f21616222c9697ff426a52be0031f713122bc8f /decoder.py | |
parent | 57a2ecb485d3814b85f4c22c9b48f1de053750eb (diff) |
Shrink corners
Diffstat (limited to 'decoder.py')
-rw-r--r-- | decoder.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -15,7 +15,7 @@ parser.add_argument("-s", "--size", help="number of bytes to decode", type=int) parser.add_argument("-p", "--psize", help="packet size", type=int) args = parser.parse_args() -cheight = cwidth = max(args.height // 10, args.width // 10) +cheight = cwidth = max(args.height // 15, args.width // 15) frame_size = args.height * args.width - 4 * cheight * cwidth frame_bytes = frame_size * 3 // 8 frame_xor = np.arange(frame_bytes, dtype=np.uint8) |