Jump to content

Confused by VerboseData: left, right, combined


Recommended Posts

Here is part of the source code in SRanipal_EyeData.cs, but regarding the VerboseData, I don't understand what is the "CombinedEyeData" because it also contains a "SingleEyeData" . 

            public struct VerboseData
            {
                /** A instance of the struct as @ref EyeData related to the left eye*/
                public SingleEyeData left;
                /** A instance of the struct as @ref EyeData related to the right eye*/
                public SingleEyeData right;
                /** A instance of the struct as @ref EyeData related to the combined eye*/
                public CombinedEyeData combined;
                public TrackingImprovements tracking_improvements;
            }

 

 

            public struct CombinedEyeData
            {
                public SingleEyeData eye_data;
                public bool convergence_distance_validity;
                public float convergence_distance_mm;
            }

As we have already obtained the single eye data of the left and right eyes, what is the  "SingleEyeData eye_data" inside the CombinedEyeData? Is it an average of the left and right eye data, seems confusing? 

Thank you in advance and sorry for the annoying questions. 

@imarin18 @Daniel_Y @Corvus   

 

 

 

 

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...