dsb238100 2016-10-14 08:26
浏览 51
已采纳

如何获取image.RGBA或任何其他类型的特定像素的几何?

I wish there was something like image.Point struct but instead it was pixel based, if that makes sense.

Say I have loaded and decoded an image.RGBA with size(bounds) of 300x300. How can I get the exact coordinate of the middle of the image in image.Point or fixed.Point26_6?

  • 写回答

1条回答 默认 最新

  • duanhe6464 2016-10-14 09:28
    关注

    image.RGBA is a concrete implementation of the general image.Image interface.

    It has an Image.Bounds() method:

    // Bounds returns the domain for which At can return non-zero color.
    // The bounds do not necessarily contain the point (0, 0).
    Bounds() Rectangle
    

    Important to note that the top-left corner of the image might not be at the zero point (0, 0) (although generally it is).

    So the geometry of the image is handed to you as a value of image.Rectangle:

    type Rectangle struct {
        Min, Max Point
    }
    

    To handle the general case (where top-left might not be (0, 0)), you have to account both the Min and Max points to to calculate the center point:

    cx := (r.Min.X + r.Max.X)/2
    cy := (r.Min.Y + r.Max.Y)/2
    

    Another solution is to use Rectangle.Dx() and Rectangle.Dy():

    cx := r.Min.X + r.Dx()/2
    cy := r.Min.Y + r.Dy()/2
    

    And there is an image.Point struct type. To get the center point as a value of image.Point:

    cp := image.Point{(r.Min.X + r.Max.X) / 2, (r.Min.Y + r.Max.Y) / 2}
    

    Or:

    cp := image.Point{r.Min.X + r.Dx()/2, r.Min.Y + r.Dy()/2}
    

    See this example:

    r := image.Rect(0, 0, 300, 100)
    fmt.Println(r)
    cp := image.Point{(r.Min.X + r.Max.X) / 2, (r.Min.Y + r.Max.Y) / 2}
    fmt.Println(cp)
    
    cp = image.Point{r.Min.X + r.Dx()/2, r.Min.Y + r.Dy()/2}
    fmt.Println(cp)
    

    Output (try it on the Go Playground):

    (0,0)-(300,100)
    (150,50)
    (150,50)
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 对于知识的学以致用的解释
  • ¥50 三种调度算法报错 有实例
  • ¥15 关于#python#的问题,请各位专家解答!
  • ¥200 询问:python实现大地主题正反算的程序设计,有偿
  • ¥15 smptlib使用465端口发送邮件失败
  • ¥200 总是报错,能帮助用python实现程序实现高斯正反算吗?有偿
  • ¥15 对于squad数据集的基于bert模型的微调
  • ¥15 为什么我运行这个网络会出现以下报错?CRNN神经网络
  • ¥20 steam下载游戏占用内存
  • ¥15 CST保存项目时失败