错误:重载的方法值获取替代方法获取图像上的点

时间:2014-08-19 19:24:17

标签: image scala

我正在使用它:

 var res = new Array[Byte](1)
 var u=image.get(p.x,p.y,res)

其中:

val image= new Mat
var p=new Point (3,32)

并且有错误说:“重载的方法值得到替代品” 无法弄清楚问题。请帮助我!

谢谢!

1 个答案:

答案 0 :(得分:1)

http://docs.opencv.org/java/

点数有两个字段,但得到了整数。

image.get(p.x.toInt, p.y.toInt, res)

(当然未经测试。)