diff options
author | Anthony Wang | 2024-04-28 21:35:46 -0400 |
---|---|---|
committer | Anthony Wang | 2024-04-28 21:35:46 -0400 |
commit | 6dacec96754a493171d1d45dd4f5b7b683de6ccb (patch) | |
tree | b796ab74c60cb18d67571a5dee7a7a04fdad243d /README.md | |
parent | 80b6b746b82be2046847a658711b6845c39bc52f (diff) |
Use cv2.warpPerspective instead of dumb interpolation
https://docs.opencv.org/4.9.0/da/d6e/tutorial_py_geometric_transformations.html
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -10,11 +10,11 @@ pip install --upgrade reedsolo --no-binary "reedsolo" --no-cache --config-settin ## Usage -Encode: `python encoder.py -i in -o vid.mkv` +Encode: `python encoder.py -i in` Play video: `mpv --scale=nearest --fullscreen --loop --no-keepaspect vid.mkv` -Copy the flags printed by the encoder and pass them to the decoder: `python decoder.py -o out FLAGS` +Copy the flags printed by the encoder and pass them to the decoder: `python decoder.py FLAGS` Formatting: `black -l 120 *.py` |