Conjugate
Description
Calculates the complex conjugate of an image
Full scope is iplt::alg::Conjugate in C++, resp iplt.alg.Conjugate in Python.
Examples
C++
#include <iplt/image.hh> #include <iplt/alg/conjugate.hh> using namespace iplt; int main() { ImageHandle img = CreateImage(Size(10,10),COMPLEX); img.ApplyIP( alg::Conjugate() ); return 0; }
Python
from iplt import * img = CreateImage(Size(10,10),DataType.COMPLEX) img.ApplyIP( alg.Conjugate() )
Back to Algorithm List
