diff options
author | Kevin Zhao | 2024-05-11 11:14:11 -0400 |
---|---|---|
committer | Kevin Zhao | 2024-05-11 11:14:11 -0400 |
commit | 39e7cb081d7d58360605ea69eadfafa4c33eb7b3 (patch) | |
tree | 1eb64c2de00f5b1fb0df6644ced2f0a4834d8dfe | |
parent | 0d8a8409f9aae14b9413c749146bc265bcd21106 (diff) |
-rw-r--r-- | encoder.py | 2 |
1 files changed, 0 insertions, 2 deletions
@@ -76,8 +76,6 @@ def mkframe(packet): frame = np.unpackbits(frame) # Pad to be multiple of 3 so we can reshape into RGB channels frame = np.pad(frame, (0, (3 - len(frame)) % 3)) - print(frame_size) - print(frame.shape) frame = np.reshape(frame, (frame_size, 3)) frame = np.concatenate( ( |