Skip to content

Commit

Permalink
Small change to prevent line wrap
Browse files Browse the repository at this point in the history
* also restored float label on constant in baseline.c
  • Loading branch information
DanBloomberg committed Aug 26, 2023
1 parent 4ad8c8e commit 1ee3fe6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/baseline.c
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ static const l_int32 DefaultSweepReduction = 2;
static const l_int32 DefaultBsReduction = 1;
static const l_float32 DefaultSweepRange = 5.; /* degrees */
static const l_float32 DefaultSweepDelta = 1.; /* degrees */
static const l_float32 DefaultMinbsDelta = 0.01; /* degrees */
static const l_float32 DefaultMinbsDelta = 0.01f; /* degrees */

/* Overlap slice fraction added to top and bottom of each slice */
static const l_float32 OverlapFraction = 0.5;
Expand Down
4 changes: 2 additions & 2 deletions src/pix3.c
Original file line number Diff line number Diff line change
Expand Up @@ -1767,8 +1767,8 @@ l_int32 w, h;
* Notes:
* (1) For a binary image, if there are no fg (black) pixels, empty = 1.
* (2) For a grayscale image, if all pixels are black (0), empty = 1.
* (3) For an RGB image, if all 4 components in every pixel is 0 (i.e. opaque black),
* empty = 1.
* (3) For an RGB image, if all 4 components in every pixel is 0
* (i.e. opaque black), empty = 1.
* (4) For a colormapped image, pixel values are 0. The colormap
* is ignored.
* </pre>
Expand Down

0 comments on commit 1ee3fe6

Please sign in to comment.