#include <DLPolar.h>
Static Public Member Functions | |
static DLImage | dlPolarImage (const DLImage &in, bool flag=true) |
The algorithm is implemented as a static function, so no object of class DLPolar needs to be instantiated. See below for a usage example.
Definition at line 16 of file DLPolar.h.
Compute the polar image of an image. The origin of the image is its centroid as computed by DLImage::dlCentroid(). The following code example will return the polar image for test.tif:
DLImage i ("test.tif"); DLImage polarImage = DLPolar::dlPolarImage(i, true);
in | const DLImage & | |
flag |
|