GETSAMPLE_OBJ_INTERFACE.cs 2.32 KB
Newer Older
潘栩锋's avatar
潘栩锋 committed
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using FObjBase;
using FLY.Thick.Base.Common;

namespace FLY.Thick.Base.OBJ_INTERFACE
{
    public class GETSAMPLE_OBJ_INTERFACE
    {
        #region Pack
        public class Pack_Params_SampleCell
        {
            public bool enable;
            public bool justForCheck;
            public int orgad;
            public int position;

        }
        public class Pack_Params_SampleFeature
        {
            public bool enable;
            public int startpos;
            public int endpos;
        }
27
        public class Pack_Params
潘栩锋's avatar
潘栩锋 committed
28 29 30 31 32
        {
            public bool enable;
            public UInt32 velocity;
            public int range;
            public int window;
33 34 35
            public bool IsCheckByPercent;
            public double ErrPercent;
            public int ErrValue;
36
            public IEnumerable<Pack_Params_SampleCell> samples;
潘栩锋's avatar
潘栩锋 committed
37
            public int search;
38
            public IEnumerable<Pack_Params_SampleFeature> features;
潘栩锋's avatar
潘栩锋 committed
39 40 41 42 43 44 45 46 47 48 49 50 51 52 53
        }
        public class Pack_State_SampleCell
        {
            public int ad;
            public int value;
        }
        public class Pack_State_SampleFeature
        {
            public double maxRelevancy;
            public int maxOffset;
            public int[] scanData;
        }
        public class Pack_State 
        {
            public int posOfGrid;
54 55
            public IEnumerable<Pack_State_SampleCell> samples;
            public IEnumerable<Pack_State_SampleFeature> features;
潘栩锋's avatar
潘栩锋 committed
56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78
        }
        #endregion

        #region GetValue
        /// <summary>
        /// Pack_Params
        /// </summary>
        public const UInt16 GET_PARAMS = 0;
        public const UInt16 GET_STATE = 1;
        #endregion
        #region SetValue
        /// <summary>
        /// Pack_Params
        /// </summary>
        public const UInt16 SET_PARAMS = 0;
        #endregion
        #region PushMsg
        /// <summary>
        /// Pack_Params
        /// </summary>
        public const UInt16 PUSH_PARAMS = 0;
        public const UInt16 PUSH_STATE = 1;
        #endregion
79 80 81 82 83 84 85 86

        #region CallFunction
        /// <summary>
        /// request:null
        /// reponse:List(List(TempFilterData))
        /// </summary>
        public const UInt16 CALL_GET_TEMPDATAS = 0;
        #endregion
潘栩锋's avatar
潘栩锋 committed
87 88
    }
}