Changeset 8232 for trunk/psLib/src/imageops/psImageStats.c
- Timestamp:
- Aug 8, 2006, 1:32:23 PM (20 years ago)
- Location:
- trunk/psLib/src
- Files:
-
- 2 edited
-
. (modified) (1 prop)
-
imageops/psImageStats.c (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src
- Property svn:ignore
-
old new 10 10 libpslib.la.temp 11 11 config.h.in 12 psErrorText.h13 12 *.bb 14 13 *.bbg
-
- Property svn:ignore
-
trunk/psLib/src/imageops/psImageStats.c
r7766 r8232 9 9 * @author GLG, MHPCC 10 10 * 11 * @version $Revision: 1.9 8$ $Name: not supported by cvs2svn $12 * @date $Date: 2006-0 6-30 02:20:06$11 * @version $Revision: 1.99 $ $Name: not supported by cvs2svn $ 12 * @date $Date: 2006-08-08 23:32:23 $ 13 13 * 14 14 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii … … 30 30 #include "psImageStats.h" 31 31 #include "psAssert.h" 32 #include "psErrorText.h" 32 33 33 #include "psRegion.h" 34 34 #include "psRegionForImage.h" … … 497 497 if (mask == NULL) { 498 498 psError(PS_ERR_BAD_PARAMETER_NULL, true, 499 PS_ERRORTEXT_psImage_IMAGE_NULL);499 _("Can not operate on a NULL psImage.")); 500 500 return -1; 501 501 } … … 592 592 return -1; 593 593 }/* else if (col0 == col1 && row0 == row1) { 594 psError(PS_ERR_BAD_PARAMETER_VALUE, true,595 "Invalid psRegion specified. Region contains only 1 pixel.\n");596 return -1;597 }598 */594 psError(PS_ERR_BAD_PARAMETER_VALUE, true, 595 "Invalid psRegion specified. Region contains only 1 pixel.\n"); 596 return -1; 597 } 598 */ 599 599 x0 = col0; 600 600 x1 = col1; … … 632 632 default: 633 633 psError(PS_ERR_BAD_PARAMETER_TYPE, true, 634 PS_ERRORTEXT_psImage_IMAGE_MASK_TYPE, type, PS_TYPE_U8);634 _("Input psImage mask type, %s, is not the supported mask datatype of %s."), type, PS_TYPE_U8); 635 635 return -1; 636 636 }
Note:
See TracChangeset
for help on using the changeset viewer.
