aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorAnthony Wang2024-04-28 21:35:46 -0400
committerAnthony Wang2024-04-28 21:35:46 -0400
commit6dacec96754a493171d1d45dd4f5b7b683de6ccb (patch)
treeb796ab74c60cb18d67571a5dee7a7a04fdad243d /README.md
parent80b6b746b82be2046847a658711b6845c39bc52f (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.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index 9857d2a..d465263 100644
--- a/README.md
+++ b/README.md
@@ -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`