派生自 development/c++

xuxiuxi
2019-03-08 c5b9ce0c0cf973575a936df3aa928d4b7a7fa7d2
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();
    }
}