Beispiel #1
0
    private void Start()
    {
        Logger.Log("Start Annotation Generator");
        Time.timeScale = timeScale;

        //Needs to be init here because child object not fully initialized
        OutputCamera.Component.targetTexture = new RenderTexture(outputTextureTemplate);
        //Segmentation
        Segmentation.Initialize(this);

        foreach (AnnotationProfile profile in profiles)
        {
            profile.Initialize(this);
        }
    }