IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Apr 29, 2005, 8:34:13 AM (21 years ago)
Author:
rhl
Message:

Remove unused variables

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/pois/src/poisConvolveImage.c

    r3792 r3801  
    2121    int nx = input->numCols;            // The size of the image in x
    2222    int ny = input->numRows;            // The size of the image in y
    23     float nxHalf = 0.5 * (float)nx;     // Half the size of the image
    24     float nyHalf = 0.5 * (float)ny;     // Half the size of the image
    2523    int xKernel = config->xKernel;      // The half-size of the kernel in x
    2624    int yKernel = config->yKernel;      // The half-size of the kernel in y
    27     float background = solution->data.F64[solution->n-1]; // The difference in background
     25    float background = solution->data.F64[solution->n - 1]; // The difference in background
    2826    int numParams = kernelParams->n;    // Number of kernel parameters
    2927
     
    4543                double conv = background; // Convolved value
    4644
     45#if 0
    4746                float imageX = (x - nxHalf) / nxHalf; // Normalised position in x
    4847                float imageY = (y - nyHalf) / nyHalf; // Normalised position in y
     48#endif
    4949               
    5050                // Iterate over the kernel basis functions
     
    5353                    int u = kernel->u;
    5454                    int v = kernel->v;
     55                   
     56#if 0
    5557                    int xOrder = kernel->xOrder;
    5658                    int yOrder = kernel->yOrder;
    57                    
    58 #if 0
    5959                    // Evaluate the polynomial
    6060                    poly->mask[xOrder][yOrder] = 0;
Note: See TracChangeset for help on using the changeset viewer.