You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -31,7 +31,7 @@ No internet/bluetooth/NFC/etc is used. All data is transmitted through the camer
31
31
32
32
The code is written in C++, and developed/tested on amd64+linux, arm64+android (decoder only), and emscripten+WASM (encoder only). It probably works, or can be made to work, on other platforms.
33
33
34
-
Crucially, because the encoder compiles to asmjs and wasm, it can run on anything with a modern web browser. There are [releases](https://github.com/sz3/libcimbar/releases/latest)if you wish to run the encoder locally instead of via cimbar.org.
34
+
Crucially, because the encoder compiles to asmjs and wasm, it can run on anything with a modern web browser. For offline use, you can either install cimbar.org as a progressive web app, or [download the latest release](https://github.com/sz3/libcimbar/releases/latest)of `cimbar_js.html`, save it locally, and open it in your web browser.
@@ -185,7 +186,6 @@ int main(int argc, char** argv)
185
186
("z,compression", "Compression level. 0 == no compression.", cxxopts::value<int>()->default_value(turbo::str::str(compressionLevel)))
186
187
("color-correct", "Toggle decoding color correction. 2 == full (fountain mode only). 1 == simple. 0 == off.", cxxopts::value<int>()->default_value("2"))
187
188
("color-correction-file", "Debug -- save color correction matrix generated during fountain decode, or use it for non-fountain decodes", cxxopts::value<string>())
188
-
("encode", "Run the encoder!", cxxopts::value<bool>())
189
189
("no-deskew", "Skip the deskew step -- treat input image as already extracted.", cxxopts::value<bool>())
190
190
("no-fountain", "Disable fountain encode/decode. Will also disable compression.", cxxopts::value<bool>())
191
191
("undistort", "Attempt undistort step -- useful if image distortion is significant.", cxxopts::value<bool>())
0 commit comments