首頁 > 後端開發 > Golang > 如何在 Go 中從圖像中提取像素數組以獲取'texImage2D”?

如何在 Go 中從圖像中提取像素數組以獲取'texImage2D”?

Susan Sarandon
發布: 2024-12-06 18:45:15
原創
1013 人瀏覽過

How to Extract a Pixel Array from an Image in Go for `texImage2D`?

從Go 中的影像擷取像素陣列

問題:

從Go 中的影像中擷取像素數組位元組數組的形式對於將其傳遞給gl.Context 的texImage2D 方法是必要的。所需的像素數組由從左到右、從上到下的順序排列的 RGBA 值組成。

解決方案:

要取得像素數組,請執行以下操作可以採取以下步驟:

  1. 取得影像:
    使用image.Decode(a) 從io.Reader(如os.File 或http.Request.Body)載入圖像。
  2. 取得單一像素:
    使用img.At(x, y).RGBA() 擷取每個的RGBA 值Pixel.
  3. 建構像素數組:
    建構一個二維數組pixels來表示像素排列。迭代影像中的每個像素,將其 RGBA 值新增至對應的像素行。
  4. 轉換為8 位元表示:
    由於RGBA 值是32 位元整數,將它們除以257 以獲得texImage2D 的8 位元表示
package main

import (
    "fmt"
    "image"
    "image/png"
    "os"
    "io"
    "net/http"
)

func main() {
    // Register other formats as needed
    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 / 257), int(g / 257), int(b / 257), int(a / 257)}
}

type Pixel struct {
    R int
    G int
    B int
    A int
}
登入後複製

透過以下步驟,您可以有效地從影像中取得像素數組,以便與Go中的 texImage2D 方法一起使用。

以上是如何在 Go 中從圖像中提取像素數組以獲取'texImage2D”?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板