IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Nov 14, 2006, 2:40:02 PM (20 years ago)
Author:
Paul Price
Message:

Adding functions to write masks. For this to work, had to add mask handling to pmHDUGenerate, and figured I may as well add weights as well.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psModules/src/camera/pmFPARead.c

    r9949 r9983  
    263263            readout->row0 += readout->image->numRows;
    264264            offset = readout->row0;
     265            if (numScans == 0) {
     266                numScans = naxis2 - offset;
     267            }
    265268        } else {
    266269            // Reading columns
    267270            readout->col0 += readout->image->numCols;
    268271            offset = readout->col0;
     272            if (numScans == 0) {
     273                numScans = naxis1 - offset;
     274            }
    269275        }
    270276    }
Note: See TracChangeset for help on using the changeset viewer.