(commandString)
| 76 | download_file(tiny_yolo_voc_Download, tiny_yolo_voc_WeightPath) #Check if we need to download (and if so download) the tiny-yolo-voc weights (YOLOv2) |
| 77 | |
| 78 | def executeCLI(commandString): |
| 79 | print() |
| 80 | print("Executing: {0}".format(commandString)) |
| 81 | print() |
| 82 | splitArgs = [item.strip() for item in commandString.split(" ")] |
| 83 | cliHandler(splitArgs) #Run the command |
| 84 | print() |
| 85 | |
| 86 | def compareSingleObjects(firstObject, secondObject, width, height, threshCompare, posCompare): |
| 87 | if(firstObject["label"] != secondObject["label"]): |
no test coverage detected