写真に写っているのが犬か猫かを判定する。
https://docs.google.com/spreadsheets/d/1_bmS3AP9ehGqZ8AsJJmfMwy1tU3d_Bt8GFGiU8jfXME/edit#gid=0
#使用するAPI
A3RTの「Image Search API」
https://a3rt.recruit-tech.co.jp/product/imageSearchAPI/
#コード
コード.js
function ImageConvertText(pic_link) {
var res = UrlFetchApp.fetch("https://api.a3rt.recruit-tech.co.jp/image_search/v1/search_by_image?apikey=APIキー&image=" + pic_link).getContentText();
var json = JSON.parse(res);
var tag = json["result"].txt;
if (tag.indexOf("ネコ") != -1 | tag.indexOf("猫") != -1) {
return "まんち!";
} else if (tag.indexOf("イヌ") != -1 | tag.indexOf("犬") != -1) {
return "わんち!";
//elseだと何も言わないときがある
} else if (tag.indexOf("イヌ") == -1 && tag.indexOf("犬") == -1 && tag.indexOf("ネコ") == -1 && tag.indexOf("猫") == -1){
return "むり!";
}
}
function Results() {
var url = Browser.inputBox("画像のURLを入力");
Browser.msgBox(ImageConvertText(url));
}
#やってみる
https://www.pakutaso.com/shared/img/thumb/kakurerukijishironeko171027_TP_V.jpg
https://www.pakutaso.com/shared/img/thumb/AMEMAN17826009_TP_V.jpg
https://www.pakutaso.com/shared/img/thumb/KM19322A053_TP_V.jpg