未能检测到人脸
faild to detect faces
我正在开发一款可以使用 Clarifai 检测图像的应用程序 api。我创建了所有组件,但任何时候我 post 它都会显示
api.clarifai.com/v2/models/a403429f2ddf4b49b307e318f00e528b/outputs:1 POST https://api.clarifai.com/v2/models/a403429f2ddf4b49b307e318f00e528b/outputs 400(错误请求)
我尝试生成新的 API,但是 none post有效地在此处输入代码
import React, {Component} from 'react';
import Clarifai from 'clarifai';
const app = new Clarifai.App({
apiKey: 'b7712f2f841c4482bb85e68f02cdf4b6'
});
onButtonSubmit = () => {
this.setState({imageUrl: this.state.input});
app.models
.predict(
Clarifai.FACE_DETECT_MODEL,
this.state.input)
.then(response => {
if (response) {
fetch('http://localhost:3001/image', {
method: 'put',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({
id: this.state.user.id
})
})
.then(response => response.json())
.then(count => {
this.setState(Object.assign(this.state.user, { entries: count}))
})
}
this.displayFaceBox(this.calculateFaceLocation(response))
})
.catch(err => console.log(err));
}
}.
你好 Clarifai 在这里支持。能否请您尝试替换
FACE_DETECT_MODEL
和
FACE_DETECTION_MODEL
它可能只是语法错误一样简单。
在
app.models.predict()
我正在开发一款可以使用 Clarifai 检测图像的应用程序 api。我创建了所有组件,但任何时候我 post 它都会显示
api.clarifai.com/v2/models/a403429f2ddf4b49b307e318f00e528b/outputs:1 POST https://api.clarifai.com/v2/models/a403429f2ddf4b49b307e318f00e528b/outputs 400(错误请求)
我尝试生成新的 API,但是 none post有效地在此处输入代码
import React, {Component} from 'react';
import Clarifai from 'clarifai';
const app = new Clarifai.App({
apiKey: 'b7712f2f841c4482bb85e68f02cdf4b6'
});
onButtonSubmit = () => {
this.setState({imageUrl: this.state.input});
app.models
.predict(
Clarifai.FACE_DETECT_MODEL,
this.state.input)
.then(response => {
if (response) {
fetch('http://localhost:3001/image', {
method: 'put',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({
id: this.state.user.id
})
})
.then(response => response.json())
.then(count => {
this.setState(Object.assign(this.state.user, { entries: count}))
})
}
this.displayFaceBox(this.calculateFaceLocation(response))
})
.catch(err => console.log(err));
}
}.
你好 Clarifai 在这里支持。能否请您尝试替换
FACE_DETECT_MODEL
和
FACE_DETECTION_MODEL
它可能只是语法错误一样简单。
在
app.models.predict()