3
因此,我呈現一個黑色的圖像。我試圖使用像out.convertTo(out,6)
這樣的差異參數進行轉換,但沒有成功。opencv黑色圖像匹配後模板
export function testAction(req, res) {
req.file('image').upload((error, file) => {
openCV.readImage(file[0].fd, function (err, im1) {
let out = im1.matchTemplate(file[1].fd, 0);
out.save('result.png');
});
});
res.ok();
}
@Eugene你可以分享你是如何做到的? –
只是'out.normalize(0,255,cv.Constants.CV_8UC3);' – Eugene