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 metadata提取的PDF元数据,如何转换为一个Excel
  • ¥15 关于arduino编程toCharArray()函数的使用
  • ¥100 vc++混合CEF采用CLR方式编译报错
  • ¥15 coze 的插件输入飞书多维表格 app_token 后一直显示错误,如何解决?
  • ¥15 vite+vue3+plyr播放本地public文件夹下视频无法加载
  • ¥15 c#逐行读取txt文本,但是每一行里面数据之间空格数量不同
  • ¥50 如何openEuler 22.03上安装配置drbd
  • ¥20 ING91680C BLE5.3 芯片怎么实现串口收发数据
  • ¥15 无线连接树莓派,无法执行update,如何解决?(相关搜索:软件下载)
  • ¥15 Windows11, backspace, enter, space键失灵