ISCE_INSAR/components/mroipac/looks/bindings/rilooksmodule.cpp

168 lines
4.6 KiB
C++
Raw Permalink Normal View History

2025-01-16 09:33:42 +00:00
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
//
// Giangi Sacco
// NASA Jet Propulsion Laboratory
// California Institute of Technology
// (C) 2009-2010 All Rights Reserved
//
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#include <Python.h>
#include "rilooksmodule.h"
#include <cmath>
#include <sstream>
#include <iostream>
#include <string>
#include <stdint.h>
#include <vector>
#include "ImageAccessor.h"
using namespace std;
static const char * const __doc__ = "Python extension for rilooks.F";
PyModuleDef moduledef = {
// header
PyModuleDef_HEAD_INIT,
// name of the module
"rilooks",
// module documentation string
__doc__,
// size of the per-interpreter state of the module;
// -1 if this state is global
-1,
rilooks_methods,
};
// initialization function for the module
PyMODINIT_FUNC
PyInit_rilooks()
{
// create the module using moduledef struct defined above
PyObject * module = PyModule_Create(&moduledef);
// check whether module creation succeeded and raise an exception if not
if (!module) {
return module;
}
// otherwise, we have an initialized module
// and return the newly created module
return module;
}
PyObject * rilooks_C(PyObject* self, PyObject* args)
{
char * inputImage;
char * outputImage;
int lenIn = 0;
int lenOut = 0;
char enIn = 'n';
char enOut = 'n';
string inmode = "read";
string typeIn = "CFLOAT";
string typeOut = "CFLOAT";
string outmode = "write";
int la = 0;//across = range
int ld = 0;//down = azimuth
int na = 0;//width get from image object
int nd = -1;//lenght. get as optional argument just in case don;t want to do all the lines
PyObject * dictionary = NULL;
//put explicity the mandatory args and in a dictionary the optionals
if(!PyArg_ParseTuple(args, "s#s#iii|O", &inputImage,&lenIn,&outputImage,&lenOut,&na,&la,&ld,&dictionary))
{
return NULL;
}
if((dictionary != NULL))
{
PyObject * lengthPy = PyDict_GetItemString(dictionary,"LENGTH");
if(lengthPy != NULL)
{
nd = (int) PyLong_AsLong(lengthPy);
}
PyObject * enInPy = PyDict_GetItemString(dictionary,"INPUT_ENDIANNESS");
if(enInPy != NULL)
{
char * inEndian = PyBytes_AsString(enInPy);
enIn = inEndian[0];
}
PyObject * enOutPy = PyDict_GetItemString(dictionary,"OUTPUT_ENDIANNESS");
if(enOutPy != NULL)
{
char * outEndian = PyBytes_AsString(enOutPy);
enOut = outEndian[0];
}
}
string infile = inputImage;
string outfile = outputImage;
ImageAccessor IAIn;
ImageAccessor IAOut;
if( enIn == 'n')//use as default the machine endianness
{
enIn = IAIn.getMachineEndianness();
}
if( enOut == 'n')//use as default the machine endianness
{
enOut = IAOut.getMachineEndianness();
}
IAIn.initImageAccessor(infile,inmode,enIn,typeIn,na);
IAOut.initImageAccessor(outfile,outmode,enOut,typeOut,na/la);
if(nd == -1)//use as default the whole file
{
nd = IAIn.getFileLength();
}
vector<float> b1(na,0);
vector<float> b2(na,0);
vector<complex<float> > bOut(na/la,0);
vector<complex<float> > a(na,0);
bool eofReached = false;
int lineout = 0;
for(int line = 0; line < nd; line += ld)
{
for(int i = 0; i < ld; ++i)
{
int lineToGet = (line + i + 1);
IAIn.getLine((char *) &a[0], lineToGet);
if(lineToGet == -1)
{
eofReached = true;
break;
}
for(int j = 0; j < na; ++j)
{
b1[j] = b1[j] + real(a[j])*real(a[j]);
b2[j] = b2[j] + imag(a[j])*imag(a[j]);
}
}
if(eofReached)
{
break;
}
int jpix = 0;
for(int j = 0; j < na; j += la)
{
float sum1 = 0;
float sum2 = 0;
for(int k = 0; k < la; ++k)
{
sum1 = sum1 + b1[j+k];
sum2 = sum2 + b2[j+k];
}
bOut[jpix] = complex<float>(sqrt(sum1),sqrt(sum2));
++jpix;
}
++lineout;
IAOut.setLineSequential((char *) &bOut[0]);
b1.assign(na,0);
b2.assign(na,0);
}
IAIn.finalizeImageAccessor();
IAOut.finalizeImageAccessor();
return Py_BuildValue("i", 0);
}