IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jan 23, 2009, 3:05:43 PM (17 years ago)
Author:
bills
Message:

Fixes to destreaking of raw images

Location:
trunk/magic/remove/src
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/magic/remove/src

    • Property svn:ignore
      •  

        old new  
        22streaksreplace
        33streakscompare
         4streaksrelease
  • trunk/magic/remove/src/streaksreplace.c

    r20816 r21156  
    327327    } else {
    328328        // image data directly from psFits
    329         readImage(sf->inImage, sf->extnum, sf->stage);
     329        readImage(sf->inImage, sf->extnum, sf->stage, false);
    330330    }
    331331    // read the recovery pixels
    332     readImage(sf->recImage, sf->extnum, sf->stage);
     332    readImage(sf->recImage, sf->extnum, sf->stage, false);
    333333
    334334    sf->outImage->header = (psMetadata*) psMemIncrRefCounter(sf->inImage->header);
     
    359359#endif
    360360    if (sf->inMask) {
    361         readImage(sf->inMask, sf->extnum, sf->stage);
    362         readImage(sf->recMask, sf->extnum, sf->stage);
     361        readImage(sf->inMask, sf->extnum, sf->stage, true);
     362        readImage(sf->recMask, sf->extnum, sf->stage, true);
    363363        sf->outMask->header = (psMetadata*) psMemIncrRefCounter(sf->inMask->header);
    364364
     
    372372
    373373    if (sf->inWeight) {
    374         readImage(sf->inWeight, sf->extnum, sf->stage);
    375         readImage(sf->recWeight, sf->extnum, sf->stage);
     374        readImage(sf->inWeight, sf->extnum, sf->stage, false);
     375        readImage(sf->recWeight, sf->extnum, sf->stage, false);
    376376
    377377        sf->outWeight->header = (psMetadata*) psMemIncrRefCounter(sf->inWeight->header);
Note: See TracChangeset for help on using the changeset viewer.