summaryrefslogtreecommitdiff
path: root/binarize/util.go
diff options
context:
space:
mode:
Diffstat (limited to 'binarize/util.go')
-rw-r--r--binarize/util.go20
1 files changed, 20 insertions, 0 deletions
diff --git a/binarize/util.go b/binarize/util.go
index e7fcfe4..ad641c9 100644
--- a/binarize/util.go
+++ b/binarize/util.go
@@ -1,6 +1,7 @@
package binarize
import (
+ "errors"
"image"
"math"
)
@@ -65,3 +66,22 @@ func surrounding(img *image.Gray, x int, y int, size int) []int {
}
return s
}
+
+func BinToZeroInv(bin *image.Gray, orig *image.RGBA) (*image.RGBA, error) {
+ b := bin.Bounds()
+ if ! b.Eq(orig.Bounds()) {
+ return orig, errors.New("bin and orig images need to be the same dimensions")
+ }
+ newimg := image.NewRGBA(image.Rect(0, 0, b.Dx(), b.Dy()))
+ for y := b.Min.Y; y < b.Max.Y; y++ {
+ for x := b.Min.X; x < b.Max.X; x++ {
+ if bin.GrayAt(x, y).Y == 255 {
+ newimg.Set(x, y, bin.GrayAt(x, y))
+ } else {
+ newimg.Set(x, y, orig.At(x, y))
+ }
+ }
+ }
+
+ return newimg, nil
+}