blob: 99e17e73d611333f0db9fd874278e895f82c927f [file] [log] [blame]
/* im_c2rect.c ... convert polar to rectangular
*
* 9/7/02 JC
* - from im_c2amph()
* 27/1/10
* - modernised
* - gtk-doc
*/
/*
This file is part of VIPS.
VIPS is free software; you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
/*
These files are distributed with VIPS - http://www.vips.ecs.soton.ac.uk
*/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif /*HAVE_CONFIG_H*/
#include <vips/intl.h>
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
#include <vips/vips.h>
#ifdef WITH_DMALLOC
#include <dmalloc.h>
#endif /*WITH_DMALLOC*/
#define loop(TYPE) { \
TYPE *p = (TYPE *) in; \
TYPE *q = (TYPE *) out; \
int x; \
\
for( x = 0; x < n; x++ ) { \
double am = p[0]; \
double ph = p[1]; \
double re, im; \
\
re = am * cos( IM_RAD( ph ) ); \
im = am * sin( IM_RAD( ph ) ); \
\
q[0] = re; \
q[1] = im; \
\
p += 2; \
q += 2; \
} \
}
/* c2rect buffer processor.
*/
static void
buffer_c2rect( void *in, void *out, int w, IMAGE *im )
{
int n = w * im->Bands;
switch( im->BandFmt ) {
case IM_BANDFMT_DPCOMPLEX: loop(double); break;
case IM_BANDFMT_COMPLEX: loop(float); break;
default:
g_assert( 0 );
}
}
/**
* im_c2rect:
* @in: input image
* @out: output image
*
* Convert a complex image from polar to rectangular coordinates. Angles are
* expressed in degrees.
*
* See also: im_c2amph().
*
* Returns: 0 on success, -1 on error
*/
int
im_c2rect( IMAGE *in, IMAGE *out )
{
if( im_check_uncoded( "im_c2rect", in ) ||
im_check_complex( "im_c2rect", in ) ||
im_cp_desc( out, in ) )
return( -1 );
if( im_wrapone( in, out,
(im_wrapone_fn) buffer_c2rect, in, NULL ) )
return( -1 );
return( 0 );
}