我似乎无法弄清楚接下来要做什么。我的目标是使用图像包中的 SubImage 函数从原始图像创建所有子图像的数组。我能够在 imageSplit() 函数中对图像进行分区,并通过通道传递给 imageReceiver() 函数。
我实际上在函数 imageReceiver() 中接收数据,但我不知道如何附加到数组并在从 imageSplit() 函数接收所有图像后使用它。
// Partitions Image
func Partition(src image.Image) []image.Image {
newImg := image.NewNRGBA64(src.Bounds())
r := newImg.Rect
dx, dy := r.Dx(), r.Dy()
// partitionNum
pNum := 3
// partition x
px, py := (dx / pNum), (dy / pNum)
imgChan := make(chan image.Image)
imgStorage := make([]image.Image, 0)
for i := 1; i < pNum; i++ {
for j := 1; j < pNum; j++ {
startX, startY := ((px * i) - px), ((py * j) - py)
endX, endY := (px * i), (py * j)
go imageSplit(imgChan, newImg, startX, startY, endX, endY)
go imageReceiver(imgChan)
}
}
return imgStorage
}
// Creates sub-images of img
func imageSplit(imgChan chan image.Image, img *image.NRGBA64, startX, startY, endX, endY int) {
r := image.Rect(startX, startY, endX, endY)
subImg := img.SubImage(r)
imgChan <- subImg
}
// Receive sub-image from channel
func imageReceiver(imgChan chan image.Image) {
img := <-imgChan
spew.Dump(img.Bounds())
}
我想创建一个全局数组 image.Image 但我不确定这是否是“保存”所有子图像的正确方法。
我想这有点令人困惑的原因是因为这是我第一次在 Go 中使用并发。谢谢你的帮助 :)
弑天下
相关分类