From 60071c2ea95e284f6c765528e81b930fe3fb4b92 Mon Sep 17 00:00:00 2001 From: Nick White Date: Tue, 3 Mar 2020 18:18:36 +0000 Subject: Add experimental vertical wiping feature to wiper --- cmd/wipe/main.go | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) (limited to 'cmd') diff --git a/cmd/wipe/main.go b/cmd/wipe/main.go index d4c95ac..beeced2 100644 --- a/cmd/wipe/main.go +++ b/cmd/wipe/main.go @@ -19,13 +19,16 @@ import ( func main() { flag.Usage = func() { - fmt.Fprintf(os.Stderr, "Usage: wipe [-m minperc] [-t thresh] [-w winsize] inimg outimg\n") + fmt.Fprintf(os.Stderr, "Usage: wipe inimg outimg\n") fmt.Fprintf(os.Stderr, "Wipes the sections of an image which are outside the content area.\n") flag.PrintDefaults() } - min := flag.Int("m", 30, "Minimum percentage of the image width for the content width calculation to be considered valid.") - thresh := flag.Float64("t", 0.05, "Threshold for the proportion of black pixels below which a window is determined to be the edge. Higher means more aggressive wiping.") - wsize := flag.Int("w", 5, "Window size for mask finding algorithm.") + min := flag.Int("hm", 30, "Minimum percentage of the image width for the content width calculation to be considered valid.") + thresh := flag.Float64("ht", 0.05, "Threshold for the proportion of black pixels below which a window is determined to be the edge. Higher means more aggressive wiping.") + wsize := flag.Int("hw", 5, "Window size for mask finding algorithm.") + vmin := flag.Int("vm", 30, "Minimum percentage of the image height for the content width calculation to be considered valid.") + vthresh := flag.Float64("vt", 0.005, "Threshold for the proportion of black pixels below which a vertical wipe window is determined to be the edge. Higher means more aggressive wiping.") + vwsize := flag.Int("vw", 120, "Window size for vertical mask finding algorithm. Should be set to approximately line height + largest expected gap.") flag.Parse() if flag.NArg() < 2 { flag.Usage() @@ -45,7 +48,8 @@ func main() { gray := image.NewGray(image.Rect(0, 0, b.Dx(), b.Dy())) draw.Draw(gray, b, img, b.Min, draw.Src) - clean := preproc.Wipe(gray, *wsize, *thresh, *min) + sidesdone := preproc.Wipe(gray, *wsize, *thresh, *min) + clean := preproc.VWipe(sidesdone, *vwsize, *vthresh, *vmin) f, err = os.Create(flag.Arg(1)) if err != nil { -- cgit v1.2.1-24-ge1ad