内容简介:地址练习:切片实现 Pic。它应当返回一个长度为 dy 的切片,其中每个元素是一个长度为 dx,元素类型为 uint8 的切片。当你运行此程序时,它会将每个整数解释为灰度值(好吧,其实是蓝度值)并显示它所对应的图像。
题目
地址 https://tour.go-zh.org/moretypes/18
练习:切片
实现 Pic。它应当返回一个长度为 dy 的切片,其中每个元素是一个长度为 dx,元素类型为 uint8 的切片。当你运行此程序时,它会将每个整数解释为灰度值(好吧,其实是蓝度值)并显示它所对应的图像。
图像的选择由你来定。几个有趣的函数包括 (x+y)/2, x y, x^y, x log(y) 和 x%(y+1)。
(提示:需要使用循环来分配 [][]uint8 中的每个 []uint8;请使用 uint8(intValue) 在类型之间转换;你可能会用到 math 包中的函数。)
分析
1.数组大小因为是不定的,所以要用make,二维数组,要使用两次make函数。
2.本地IDE,golang.org/x/tour/pic的下载,需要配置代理。否则下载不下来。
3.int和float类型不能直接相乘。
4.这里用回调会方便很多。
代码
(x+y)/2
package main import "golang.org/x/tour/pic" func Pic(dx, dy int) [][]uint8 { var pic [][]uint8 pic = make([][]uint8, dx) for i := 0; i < dx; i++ { pic[i] = make([]uint8, dy) for j := 0; j < dy; j++ { pic[i][j] = uint8((i + j) /2) //每次改变这里 } } return pic; } func main() { pic.Show(Pic) }
image.png
x*y
pic[i][j] = uint8(i*j)
image.png
x^y
pic[i][j] = uint8(math.Pow(float64(i),float64(j)))
image.png
x*log(y)
pic[i][j] = uint8(float64(i) * (math.Log(float64(j))))
image.png
x%(y+1)
pic[i][j] = uint8(i%(j+1))
image.png
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持 码农网
猜你喜欢:本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
A Byte of Python
Swaroop C H / Lulu Marketplace / 2008-10-1 / USD 27.98
'A Byte of Python' is a book on programming using the Python language. It serves as a tutorial or guide to the Python language for a beginner audience. If all you know about computers is how to save t......一起来看看 《A Byte of Python》 这本书的介绍吧!