如何获取发送到IBM服务器的图像阈值?
How to get threshold value of image sent to IBM server?
在我将图像发送到我的自定义 IBM Cloud 服务器进行视觉识别后,我取回了图像的分类。但是,我想获得 Watson 必须对图像进行排名的阈值(图像 1--A:0.8 B:0.1 C:0.1)。我以前见过它像信心计一样使用,并想以类似的方式使用它。我正在做的事情可能吗?
StreamBuilder(
stream: StreamMyClassifier(
_image,
'NRDjngCby2d-pSHOPyWQJxhuB6vOY2uOTCX6KV2BCfwB',
'CompostxLandfillxRecycle_2056123069'),
builder: (context, snapshot) {
if (snapshot.hasData) {
_text = snapshot.data;
return Center(
child: Container(
margin: EdgeInsets.only(
top: MediaQuery.of(context).size.height / 2),
child: Text(
_text,
style:
TextStyle(color: Colors.white, fontSize: 33),
),
),
);
} else {
return Container();
}
})
API 没有return 响应中的阈值,所以我认为您无法实现您想要的。有关详细信息,请参阅 API reference
在我将图像发送到我的自定义 IBM Cloud 服务器进行视觉识别后,我取回了图像的分类。但是,我想获得 Watson 必须对图像进行排名的阈值(图像 1--A:0.8 B:0.1 C:0.1)。我以前见过它像信心计一样使用,并想以类似的方式使用它。我正在做的事情可能吗?
StreamBuilder(
stream: StreamMyClassifier(
_image,
'NRDjngCby2d-pSHOPyWQJxhuB6vOY2uOTCX6KV2BCfwB',
'CompostxLandfillxRecycle_2056123069'),
builder: (context, snapshot) {
if (snapshot.hasData) {
_text = snapshot.data;
return Center(
child: Container(
margin: EdgeInsets.only(
top: MediaQuery.of(context).size.height / 2),
child: Text(
_text,
style:
TextStyle(color: Colors.white, fontSize: 33),
),
),
);
} else {
return Container();
}
})
API 没有return 响应中的阈值,所以我认为您无法实现您想要的。有关详细信息,请参阅 API reference