标签: 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)
并且有错误说:“重载的方法值得到替代品” 无法弄清楚问题。请帮助我!
谢谢!
答案 0 :(得分:1)
http://docs.opencv.org/java/
点数有两个字段,但得到了整数。
image.get(p.x.toInt, p.y.toInt, res)
(当然未经测试。)