从 Golang 图像对象获取像素数组
要获取字节数组形式的像素数组,可以使用以下方法
首先,图片库提供了img.At(x, y).RGBA()方法检索图像中坐标 (x, y) 处特定像素的 RGBA 值。要获得这些值的 8 位表示,每个分量必须除以 255。
为了促进此过程,可以按如下方式创建像素的二维数组:
package main import ( "fmt" "image" "image/png" "os" "io" "net/http" ) func main() { // Register the PNG format (can be extended to other formats) image.RegisterFormat("png", "png", png.Decode, png.DecodeConfig) file, err := os.Open("./image.png") if err != nil { fmt.Println("Error: File could not be opened") os.Exit(1) } defer file.Close() pixels, err := getPixels(file) if err != nil { fmt.Println("Error: Image could not be decoded") os.Exit(1) } fmt.Println(pixels) } func getPixels(file io.Reader) ([][]Pixel, error) { img, _, err := image.Decode(file) if err != nil { return nil, err } bounds := img.Bounds() width, height := bounds.Max.X, bounds.Max.Y var pixels [][]Pixel for y := 0; y < height; y++ { var row []Pixel for x := 0; x < width; x++ { row = append(row, rgbaToPixel(img.At(x, y).RGBA())) } pixels = append(pixels, row) } return pixels, nil } func rgbaToPixel(r uint32, g uint32, b uint32, a uint32) Pixel { return Pixel{int(r / 255), int(g / 255), int(b / 255), int(a / 255)} } type Pixel struct { R int G int B int A int }
以上是如何从 Golang 图像对象中高效提取像素数组?的详细内容。更多信息请关注PHP中文网其他相关文章!