소스 검색

Updated image classifer unit test to darknet19

TC 3 년 전
부모
커밋
7b18804690
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      web/UnitTest/backend/image.classify.js

+ 2 - 2
web/UnitTest/backend/image.classify.js

@@ -7,7 +7,7 @@ function main(){
     http.download("https://cdn.pixabay.com/photo/2017/03/28/12/10/chairs-2181947_960_720.jpg", "tmp:/", "classify.jpg");
 
     //Get image classification, will take a bit time
-    var results = imagelib.classify("tmp:/classify.jpg", "yolo3"); 
+    var results = imagelib.classify("tmp:/classify.jpg", "darknet19"); 
     var responses = [];
     for (var i = 0; i < results.length; i++){
         responses.push({
@@ -23,4 +23,4 @@ function main(){
     sendJSONResp(JSON.stringify(responses));
 }
 
-main();
+main();