diff options
Diffstat (limited to 'encoder.py')
-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( ( |