我想通过matlab在8位单通道uint8图像上应用cv.adaptiveThreshold(opencv),但我总是出错。我已经尝试了此网站的以下代码:https://kyamagu.github.io/mexopencv/matlab/adaptiveThreshold.html
th = cv.adaptiveThreshold(img,255,'Method',mean,'Type',binary,3,2);
它给了我一个输入参数不足的错误。当我像这样跑步时:
th = cv.adaptiveThreshold(img);
它工作正常,但这不是我想要的。我不想应用默认的方法和标准。
谢谢你的帮助。
阅读文档。您没有遵循函数参数列表
cv.adaptiveThreshold(img,'MaxValue',255,'Method','Mean','Type','Binary','BlockSize',3,'C',2);
应该工作