示例#1
0
    /// <summary>
    ///  Computes the position and rotation of a Unity Camera object from a
    ///  VisionLib pose.
    /// </summary>
    /// <param name="t">
    ///  Translation in VisionLib coordinates.
    /// </param>
    /// <param name="q">
    ///  Rotation in VisionLib coordinates.
    /// </param>
    /// <param name="position">
    ///  Position in Unity coordinates.
    /// </param>
    /// <param name="orientation">
    ///  Rotation in Unity coordinates.
    /// </param>
    /// <param name="flipModel">
    ///  If Manually, the user has to rotate the displayed content
    ///  by 180 degree around the y-axis to apply the coordinate system
    ///  transformation. Otherwise this will be done automatically.
    /// </param>
    public static void VLPoseToCamera(Vector3 t, Quaternion q,
                                      out Vector3 position, out Quaternion orientation,
                                      FlipCoordinateSystemHandedness flipCSHandedness =
                                      FlipCoordinateSystemHandedness.Automatically)
    {
        if (flipCSHandedness == FlipCoordinateSystemHandedness.Automatically)
        {
            // Add 180 degree rotation around the y axis
            q *= Quaternion.Euler(0, 180f, 0);
        }

        position = -(Quaternion.Inverse(q) * t);
        // Negate the z-component in order to convert the right-handed
        // translation into a left-handed translation
        position.z = -position.z;

        // Rotate 180 degree around the x-axis in order to convert
        // the rotation from VisionLib coordinates
        // (x: right, y: down, z: inside) to right-handed
        // coordinates (x: right, y: up: z: outside)
        //Quaternion rotX180 = Quaternion.AngleAxis(180, Vector3.right);
        //q = q * rotX180;
        q = new Quaternion(q.w, q.z, -q.y, -q.x);

        // Negate the x- and z-component in order to convert the
        // right-handed rotation into a left-handed rotation
        // (negating the y- and w-component would have the same
        // effect)
        q.x = -q.x;
        q.z = -q.z;

        // Invert the rotation, because we want the rotation of the camera in
        // the world and not the rotation of the world around the camera
        orientation = Quaternion.Inverse(q);
    }
示例#2
0
    /// <summary>
    /// Takes the local transform of a GameObject and transforms it to a valid VLWorkspace.Transform
    /// </summary>
    /// <param name="geometry">GameObject, which local transform should be used.</param>
    /// <param name="flipCSHandedness">
    ///  If Manually, the user has to rotate the displayed content
    ///  by 180 degree around the y-axis to apply the coordinate system
    ///  transformation. Otherwise this will be done automatically.
    ///  </param>
    /// <returns></returns>
    public static VIS.WorkSpace.Transform CreateLocalVLTransform(GameObject geometry,
                                                                 FlipCoordinateSystemHandedness flipCSHandedness = FlipCoordinateSystemHandedness.Automatically)
    {
        Quaternion qLocal = geometry.transform.localRotation;
        Vector3    tLocal = geometry.transform.localPosition;

        ToVLInPlace(ref tLocal, ref qLocal, flipCSHandedness);

        return(new VIS.WorkSpace.Transform(tLocal, qLocal));
    }
示例#3
0
    /// <summary>
    /// Takes a vector3 from the vlSDK and transforms it to a vector in the Unity corrdinate system.
    /// </summary>
    /// <param name="vlVector"></param>
    /// <param name="flipCSHandedness">
    ///  If Manually, the user has to rotate the displayed content
    ///  by 180 degree around the y-axis to apply the coordinate system
    ///  transformation. Otherwise this will be done automatically.
    ///  </param>
    /// <returns></returns>
    public static Vector3 UnityVectorToVLVector(Vector3 vlVector,
                                                FlipCoordinateSystemHandedness flipCSHandedness = FlipCoordinateSystemHandedness.Automatically)
    {
        if (flipCSHandedness != FlipCoordinateSystemHandedness.Automatically)
        {
            vlVector = Quaternion.AngleAxis(180f, new Vector3(0, 1, 0)) * vlVector;
        }

        vlVector.x *= -1;
        return(vlVector);
    }
示例#4
0
    /// <summary>
    /// Translates postion and rotation from Unity in VL coordinate system (in place)
    /// </summary>
    /// <param name="postion"> The position in Unity coordinates.
    /// <param name="rotation"> The rotation in Unity coordinates.
    /// <param name="flipCSHandedness">
    ///  If Manually, the user has to rotate the displayed content
    ///  by 180 degree around the y-axis to apply the coordinate system
    ///  transformation. Otherwise this will be done automatically.
    ///  </param>
    public static void ToVLInPlace(ref Vector3 position, ref Quaternion rotation,
                                   FlipCoordinateSystemHandedness flipCSHandedness = FlipCoordinateSystemHandedness.Automatically)
    {
        if (flipCSHandedness != FlipCoordinateSystemHandedness.Automatically)
        {
            position  = Quaternion.AngleAxis(180f, new Vector3(0, 1, 0)) * position;
            rotation *= Quaternion.AngleAxis(180f, new Vector3(0, 1, 0));
        }

        rotation.z *= -1;
        rotation.y *= -1;
        position.x *= -1;
    }
示例#5
0
    public static Vector3 VLPoseToUnityPose(Vector3 t,
                                            FlipCoordinateSystemHandedness flipCSHandedness =
                                            FlipCoordinateSystemHandedness.Automatically)
    {
        t.x = -t.x;

        if (flipCSHandedness != FlipCoordinateSystemHandedness.Automatically)
        {
            // Add 180 degree rotation around the y axis
            t = Quaternion.AngleAxis(180f, new Vector3(0, 1, 0)) * t;
        }

        return(t);
    }
示例#6
0
    /// <summary>
    ///  Computes the pose in VisionLib coordinates from a Unity Camera object.
    /// </summary>
    /// <param name="camera">
    ///  Camera object which should be used for computing the pose.
    /// </param>
    /// <param name="offset">
    ///  Transformation which will be applied to the transformation of the
    ///  camera before computing the pose. This is useful in case the screen
    ///  orientation was changed. Unity will then automatically rotate the
    ///  scene, but the camera image will not be rotated. Therefore you need to
    ///  reverse the automatic rotation from Unity. You might want to use the
    ///  rotationZ0, rotationZ90, rotationZ180 and rotationZ270 constants as
    ///  values for this parameter.
    /// </param>
    /// <param name="t">
    ///  Translation in VisionLib coordinates.
    /// </param>
    /// <param name="q">
    ///  Rotation in VisionLib coordinates.
    /// </param>
    /// <param name="flipCSHandedness">
    ///  If Manually, the user has to rotate the displayed content
    ///  by 180 degree around the y-axis to apply the coordinate system
    ///  transformation. Otherwise this will be done automatically.
    /// </param>
    public static void CameraToVLPose(Camera camera, Matrix4x4 offset,
                                      out Vector4 t, out Quaternion q, FlipCoordinateSystemHandedness flipCSHandedness =
                                      FlipCoordinateSystemHandedness.Automatically)
    {
        Matrix4x4 worldToCameraMatrix = offset * camera.worldToCameraMatrix;

        if (flipCSHandedness == FlipCoordinateSystemHandedness.Automatically)
        {
            worldToCameraMatrix *= VLUnityCameraHelper.rotationY180; // Add 180 degree rotation
        }

        // Convert from left-handed to right-handed model-view matrix
        worldToCameraMatrix[0, 2] = -worldToCameraMatrix[0, 2];
        worldToCameraMatrix[1, 2] = -worldToCameraMatrix[1, 2];
        worldToCameraMatrix[2, 2] = -worldToCameraMatrix[2, 2];

        // Convert from OpenGL coordinates into VisionLib coordinates
        worldToCameraMatrix = VLUnityCameraHelper.flipYZ * worldToCameraMatrix;

        t = worldToCameraMatrix.GetColumn(3);
        q = QuaternionFromMatrix(worldToCameraMatrix);
    }