-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgray.go
67 lines (61 loc) · 1.28 KB
/
gray.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
package main
import (
"fmt"
"image"
"image/color"
_ "image/gif"
"image/jpeg"
_ "image/jpeg"
_ "image/png"
"os"
)
func rgbaToGrayArray(img image.Image) (*image.Gray, [][]int) {
var (
bounds = img.Bounds()
gray = image.NewGray(bounds)
rect = make([][]int, bounds.Max.X)
)
for i := 0; i < len(rect); i++ {
rect[i] = make([]int, bounds.Max.Y)
}
for x := 0; x < bounds.Max.X; x++ {
for y := 0; y < bounds.Max.Y; y++ {
var rgba = img.At(x, y)
gray.Set(x, y, rgba)
rect[x][y] = int(gray.GrayAt(x, y).Y)
}
}
return gray, rect
}
func arrayToGray(img [][]int) *image.Gray {
max := image.Point{len(img), len(img[0])}
min := image.Point{0, 0}
bounds := image.Rectangle{min, max}
var gray = image.NewGray(bounds)
for x := 0; x < bounds.Max.X; x++ {
for y := 0; y < bounds.Max.Y; y++ {
gray.Set(x, y, color.Gray{uint8(img[x][y])})
}
}
return gray
}
func loadImage(filepath string) (image.Image, error) {
infile, err := os.Open(filepath)
if err != nil {
return nil, err
}
defer infile.Close()
img, _, err := image.Decode(infile)
if err != nil {
return nil, err
}
return img, nil
}
func saveImage(filename string, img image.Image) {
out, err := os.Create(filename)
err = jpeg.Encode(out, img, nil)
if err != nil {
fmt.Println(err)
os.Exit(1)
}
}