#include <DLCartesian.h>
Static Public Member Functions | |
static DLImage | dlCartesianImage (const DLImage &in) |
The algorithm is implemented as a static function, so no object of class DLCartesian needs to be instantiated. See below for a usage example.
Definition at line 16 of file DLCartesian.h.
Compute the cartesian image of a polar image. Assumes that the origin of the polar image is located at the center of the input image. The following code example will return the cartesian image for test.tif:
DLImage i ("test.tif"); DLImage cartesianImage = DLCartesian::dlCartesianImage(i, true);
in | const DLImage & |