libcamera: transform: Add operations with Orientation

Add two operations that allows to combine Transform with Orientation.

- Transform operator/(const Orientation &o1, const Orientation &o2)
  allows to easily get back the Transform that needs to be applied to
  Orientation2 to get Orientation1

- Orientation operator*(const Orientation &o, const Transform &t)
  allows to apply a Transform to an Orientation and obtain the
  combination of the two

These two operations allow applications to use Transforms to
manipulate the Orientation inside the CameraConfiguration, if they
wish.

Signed-off-by: Jacopo Mondi <jacopo.mondi@ideasonboard.com>
Reviewed-by: David Plowman <david.plowman@raspberrypi.com>
Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
This commit is contained in:
Jacopo Mondi
2023-10-19 16:01:28 +02:00
committed by Laurent Pinchart
parent b54c935dd7
commit 8bb0f472c3
2 changed files with 36 additions and 0 deletions

View File

@@ -359,6 +359,39 @@ Orientation transformToOrientation(const Transform &transform)
return Orientation::Rotate0;
}
/**
* \brief Return the Transform that applied to \a o2 gives \a o1
* \param o1 The Orientation to obtain
* \param o2 The base Orientation
*
* This operation can be used to easily compute the Transform to apply to a
* base orientation \a o2 to get the desired orientation \a o1.
*
* \return A Transform that applied to \a o2 gives \a o1
*/
Transform operator/(const Orientation &o1, const Orientation &o2)
{
Transform t1 = transformFromOrientation(o1);
Transform t2 = transformFromOrientation(o2);
return -t2 * t1;
}
/**
* \brief Apply the Transform \a t on the orientation \a o
* \param o The orientation
* \param t The transform to apply on \a o
* \return The Orientation resulting from applying \a t on \a o
*/
Orientation operator*(const Orientation &o, const Transform &t)
{
/*
* Apply a Transform corresponding to the orientation first and
* then apply \a t to it.
*/
return transformToOrientation(transformFromOrientation(o) * t);
}
/**
* \brief Return a character string describing the transform
* \param[in] t The transform to be described.