コード例 #1
0
    // Use this for initialization
    void Start()
    {
#if UNITY_ANDROID
        TensorFlowSharp.Android.NativeBinding.Init();
#endif

        _ball = new NbvManager(depthcamera);

        _currentReward = 0f;

        graph = new TFGraph();
        graph.Import(model.bytes);
    }
コード例 #2
0
 void Start()
 {
     _nvbManager = new NbvManager(depthCamera);
 }