IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Aug 9, 2004, 1:34:58 PM (22 years ago)
Author:
desonia
Message:

cleanup of some indent-induced madness.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/src/image/psImageManip.c

    r1407 r1440  
    1111 *  @author Ross Harman, MHPCC
    1212 *
    13  *  @version $Revision: 1.11 $ $Name: not supported by cvs2svn $
    14  *  @date $Date: 2004-08-07 00:06:06 $
     13 *  @version $Revision: 1.12 $ $Name: not supported by cvs2svn $
     14 *  @date $Date: 2004-08-09 23:34:58 $
    1515 *
    1616 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    3131#include "psImageExtraction.h"
    3232
    33 int psImageClip(psImage * input, psF64 min, psF64 vmin, psF64 max, psF64 vmax)
     33int psImageClip(psImage* input, psF64 min, psF64 vmin, psF64 max, psF64 vmax)
    3434{
    3535    int numClipped = 0;
     
    125125}
    126126
    127 int psImageClipNaN(psImage * input, psF64 value)
     127int psImageClipNaN(psImage* input, psF64 value)
    128128{
    129129    int numClipped = 0;
     
    164164}
    165165
    166 int psImageOverlaySection(psImage * image, const psImage * overlay, int col0, int row0, const char *op)
     166int psImageOverlaySection(psImage* image, const psImage* overlay, int col0, int row0, const char *op)
    167167{
    168168    unsigned int imageNumRows;
     
    267267}
    268268
    269 int psImageClipComplexRegion(psImage * input, psC64 min, psC64 vmin, psC64 max, psC64 vmax)
     269int psImageClipComplexRegion(psImage* input, psC64 min, psC64 vmin, psC64 max, psC64 vmax)
    270270{
    271271    int numClipped = 0;
     
    340340}
    341341
    342 psImage *psImageRebin(psImage * out, const psImage * in, unsigned int scale, const psStats * stats)
     342psImage* psImageRebin(psImage* out, const psImage* in, unsigned int scale, const psStats* stats)
    343343{
    344344    int inRows;
     
    346346    int outRows;
    347347    int outCols;
    348     psVector *vec;              // vector to hold
     348    psVector* vec;              // vector to hold
    349349
    350350    // the values of
    351351    // a single bin.
    352     psStats *myStats;
     352    psStats* myStats;
    353353    double statVal;
    354354
     
    444444}
    445445
    446 psImage *psImageResample(psImage * out, const psImage * in, int scale, psImageInterpolateMode mode)
     446psImage* psImageResample(psImage* out, const psImage* in, int scale, psImageInterpolateMode mode)
    447447{
    448448    int outRows;
     
    496496}
    497497
    498 psImage *psImageRoll(psImage * out, const psImage * in, int dx, int dy)
     498psImage* psImageRoll(psImage* out, const psImage* in, int dx, int dy)
    499499{
    500500    int outRows;
     
    534534            inRowNumber -= outRows;
    535535        }
    536         psU8 *inRow = in->data.U8[inRowNumber]; // to
     536        psU8* inRow = in->data.U8[inRowNumber]; // to
    537537
    538538        // allow
     
    542542
    543543        // but for all types
    544         psU8 *outRow = out->data.U8[row];
     544        psU8* outRow = out->data.U8[row];
    545545
    546546        memcpy(outRow, inRow + segment2Size, segment1Size);
     
    551551}
    552552
    553 psImage *psImageRotate(psImage * out,
    554                        const psImage * in, float angle, float unexposedValue, psImageInterpolateMode mode)
     553psImage* psImageRotate(psImage* out,
     554                       const psImage* in, float angle, float unexposedValue, psImageInterpolateMode mode)
    555555{
    556556    if (in == NULL) {
     
    803803}
    804804
    805 psImage *psImageShift(psImage * out,
    806                       const psImage * in,
     805psImage* psImageShift(psImage* out,
     806                      const psImage* in,
    807807                      float dx, float dy, psF64 unexposedValue, psImageInterpolateMode mode)
    808808{
Note: See TracChangeset for help on using the changeset viewer.