IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Mar 19, 2010, 5:09:20 PM (16 years ago)
Author:
Paul Price
Message:

Adding program ppSubConvolve to convolve an image by the (previously calculated) convolution kernel. Made a small change to the API for initialising PSF-matching (pmSubtraction) threads. pmSubtractionMatchPrecalc now does a quick and dirty background subtraction, just like pmSubtractionMatch does. Changed a few functions to allow one of the input readouts to be NULL.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ppStack/src/ppStackMatch.c

    r27332 r27365  
    407407
    408408            if (threads > 0) {
    409                 pmSubtractionThreadsInit(readout, fake);
     409                pmSubtractionThreadsInit();
    410410            }
    411411
     
    423423                    psFree(conv);
    424424                    if (threads > 0) {
    425                         pmSubtractionThreadsFinalize(readout, fake);
     425                        pmSubtractionThreadsFinalize();
    426426                    }
    427427                    return false;
     
    440440                    psFree(widthsCopy);
    441441                    if (threads > 0) {
    442                         pmSubtractionThreadsFinalize(readout, fake);
     442                        pmSubtractionThreadsFinalize();
    443443                    }
    444444                    return false;
     
    458458                    psFree(widthsCopy);
    459459                    if (threads > 0) {
    460                         pmSubtractionThreadsFinalize(readout, fake);
     460                        pmSubtractionThreadsFinalize();
    461461                    }
    462462                    return false;
     
    495495
    496496            if (threads > 0) {
    497                 pmSubtractionThreadsFinalize(readout, fake);
     497                pmSubtractionThreadsFinalize();
    498498            }
    499499
Note: See TracChangeset for help on using the changeset viewer.