MCPcopy Create free account
hub / github.com/developer0hye/Yolo_Label / versionToString

Function versionToString

tests/test_inference.cpp:10–20  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

8#include <string>
9
10static const char* versionToString(YoloVersion v)
11{
12 switch (v) {
13 case YoloVersion::V5: return "V5";
14 case YoloVersion::V8: return "V8";
15 case YoloVersion::V11: return "V11";
16 case YoloVersion::V12: return "V12";
17 case YoloVersion::V26: return "V26";
18 default: return "Unknown";
19 }
20}
21
22int main(int argc, char* argv[])
23{

Callers 1

mainFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected