Index: /trunk/psModules/src/pmImageCombine.h
===================================================================
--- /trunk/psModules/src/pmImageCombine.h	(revision 4060)
+++ /trunk/psModules/src/pmImageCombine.h	(revision 4060)
@@ -0,0 +1,45 @@
+/** @file  pmImageCombine.h
+ *
+ *  This file will ...
+ *
+ *  @author GLG, MHPCC
+ *
+ *  @version $Revision: 1.1 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2005-05-31 22:32:42 $
+ *
+ *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
+ *
+ */
+
+#if !defined(PM_IMAGE_COMBINE_H)
+#define PM_IMAGE_COMBINE_H
+
+#if HAVE_CONFIG_H
+#include <config.h>
+#endif
+
+#include<stdio.h>
+#include<math.h>
+#include "pslib.h"
+#include "psConstants.h"
+
+psImage *pmCombineImages(psImage *combine,              ///< Combined image (output)
+                         psArray **questionablePixels,  ///< Array of rejection masks
+                         const psArray *images,         ///< Array of input images
+                         const psArray *errors,         ///< Array of input error images
+                         const psArray *masks,          ///< Array of input masks
+                         psU32 maskVal,                 ///< Mask value
+                         const psPixels *pixels,        ///< Pixels to combine
+                         psS32 numIter,                 ///< Number of rejection iterations
+                         psF32 sigmaClip,               ///< Number of standard deviations at which to reject
+                         const psStats *stats           ///< Statistics to use in the combination
+                        );
+
+psArray *pmRejectPixels(const psArray *images,          ///< Array of input images
+                        const psArray *errors,          ///< The pixels which were rejected in the combination
+                        const psArray *inToOut,         ///< Transformation from input to output system
+                        const psArray *outToIn,         ///< Transformation from output to input system
+                        psF32 rejThreshold,             ///< Rejection threshold
+                        psF32 gradLimit                 ///< Gradient limit
+                       );
+#endif
