MCPcopy Index your code
hub / github.com/llSourcell/YOLO_Object_Detection / executeCLI

Function executeCLI

test/test_darkflow.py:78–84  ·  view source on GitHub ↗
(commandString)

Source from the content-addressed store, hash-verified

76download_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
78def 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
86def compareSingleObjects(firstObject, secondObject, width, height, threshCompare, posCompare):
87 if(firstObject["label"] != secondObject["label"]):

Calls 1

cliHandlerFunction · 0.90

Tested by

no test coverage detected