Convert deskew to use degrees, since all our other angles are in degrees

This commit is contained in:
James R. Barlow
2021-11-12 16:40:51 -08:00
parent a55ab05d16
commit b159e02110
4 changed files with 9 additions and 10 deletions
+1 -1
View File
@@ -368,7 +368,7 @@ class OcrEngine(ABC):
@staticmethod
def get_deskew(input_file: Path, options: Namespace) -> float:
"""Returns the deskew angle of the image, in radians."""
"""Returns the deskew angle of the image, in degrees."""
return 0.0
@staticmethod