listTags.js 540 B

1234567891011121314151617181920212223242526
  1. /*
  2. List all the tags generated by neuralnet
  3. List all tags if tag paramter is not defined, otherwise show taged images
  4. Require
  5. vroot
  6. */
  7. includes("imagedb.js");
  8. function getVrootIDfromPath(rootID){
  9. if (rootID.indexOf(":") >= 0){
  10. rootID = rootID.split(":")[0];
  11. }
  12. return rootID;
  13. }
  14. function main(){
  15. var targetVroot = getVrootIDfromPath(vroot);
  16. var tagRecords = loadAllTagsRecord(targetVroot + ":/");
  17. var tagsMap = summarizeAndrestructureTags(tagRecords);
  18. sendJSONResp(tagsMap);
  19. }
  20. main();