From d89f3de8fafaa2970fd952e8e8f94020bf6732d9 Mon Sep 17 00:00:00 2001 From: Daniel Playfair Cal Date: Sun, 15 Aug 2021 12:43:58 +1000 Subject: [PATCH] docs: fix error in example --- README.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index bf8911a..fc62856 100644 --- a/README.md +++ b/README.md @@ -79,14 +79,16 @@ The first test is for the default settings including stabilization, and the seco dewobble::Camera input_camera( PROJECTION_EQUIDISTANT_FISHEYE, - 145.8 1920, + 145.8 * PI / 180, + 1920, 1440, (1920 - 1.0) / 2, (1440 - 1.0) / 2); dewobble::Camera output_camera( PROJECTION_RECTILINEAR, - 145.8 1920, + 145.8 * PI / 180, + 1920, 1440, (1920 - 1.0) / 2, (1440 - 1.0) / 2); -- 2.45.2