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 C++ 头文件/宏冲突问题解决
  • ¥15 用comsol模拟大气湍流通过底部加热(温度不同)的腔体
  • ¥50 安卓adb backup备份子用户应用数据失败
  • ¥20 有人能用聚类分析帮我分析一下文本内容嘛
  • ¥15 请问Lammps做复合材料拉伸模拟,应力应变曲线问题
  • ¥30 python代码,帮调试
  • ¥15 #MATLAB仿真#车辆换道路径规划
  • ¥15 java 操作 elasticsearch 8.1 实现 索引的重建
  • ¥15 数据可视化Python
  • ¥15 要给毕业设计添加扫码登录的功能!!有偿