From 88507af167f7b55ff149eaec2e6bebfe24040bec Mon Sep 17 00:00:00 2001 From: David Vogel Date: Sat, 23 Dec 2023 01:17:40 +0100 Subject: [PATCH] Increase default CacheRowHeight --- bin/stitch/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/stitch/main.go b/bin/stitch/main.go index 50f5c2d..62fe3a4 100644 --- a/bin/stitch/main.go +++ b/bin/stitch/main.go @@ -239,7 +239,7 @@ func main() { BlendTileLimit: *flagBlendTileLimit, // Limit median blending to the n newest tiles by file modification time. } - stitchedImage, err := NewStitchedImage(tiles, outputRect, blendMethod, 64, overlays) + stitchedImage, err := NewStitchedImage(tiles, outputRect, blendMethod, 128, overlays) if err != nil { log.Panicf("NewStitchedImage() failed: %v.", err) }