我正在尝试使用google vision api来识别图像
main.js中的文本
const vision = require("@google-cloud/vision");
// Creates a client
const client = new vision.ImageAnnotatorClient({
keyFilename: "./ApiKey.json"
});
// Performs label detection on the image file
client
.labelDetection("./maybank2u.png")
.then(results => {
const labels = results[0].labelAnnotations;
console.log("Labels:");
labels.forEach(label => console.log(label));
console.log(results);
})
.catch(err => {
console.error("ERROR:", err);
});
但是当我查看我在控制台中得到的内容时,这就是我得到的:
未捕获的类型错误:gax.GoogleProtoFilesRoot 不是构造函数