xxxxxxxxxx
35
// ImageClassifier (c) 2021 kouichi.matsuda@gmail.com
let clf; // 分類器
let img; // 分類する画像
function preload() {
clf = ml5.imageClassifier("MobileNet", modelLoaded); // 分類器の用意
img = loadImage("elephant.jpg"); // 画像の読込み
}
function setup() {
createCanvas(400, 400);
image(img, 0, 0);
}
function modelLoaded(){
clf.classify(img, gotResult); // 画像を分類する
}
function gotResult(err, r) { // 分類結果
if (err) {
print(err);
} else { // 結果の表示
fill(0, 0, 0, 128); // 半分透明な黒
noStroke();
rect(0, 0, width - 110, 50); // 四角形の描画
fill(255);
text("推論結果: " + r[0].label, 10, 20);
text("確信度: " + r[0].confidence, 10, 40);
}
}
function mouseClicked(){
image(img, 0, 0);
clf.classify(img, gotResult); // 画像を分類する
}