派生自 development/c++

pansen
2018-12-26 a3365259bd9c51db3b5cfcf013ed323f27d1725a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
module YoloDetect
{    
    struct RECT
    {
        float left;
        float top;
        float right;
        float bottom;
    }
    
    struct ObjInfo
    {
        int    type;
        float prob;
        RECT rcObj;
    }
    
    sequence<ObjInfo> ObjInfos;
    
    sequence<string> stringData;
    
    interface YoloDetectServer
    {
        ObjInfos YoloDetect(int width, int height, string shareMemory);
        stringData getCocoData();
    }
}