www.pudn.com > FacialFeature.rar
To Read all the content
[file head]:
/*
//
// INTeL CORPORATION PROPRIETARY INFORMATION
// This software is supplied under the terms of a license agreement or
// nondisclosure agreement with Intel Corporation and may not be copied
// or disclosed except in accordance with the terms of that agreement.
// Copyright (c) 1995 Intel Corporation. All Rights Reserved.
//
//
// Purpose: IPL Common Header file
//
*/
#if !defined (__IPL_H__) || defined (_OWN_BLDPCS)
#define __IPL_H__
#if defined( _WIN32 )
#define __STDCALL __stdcall
#define __CDECL __cdecl
#define __INT64 __int64
#else
#define __STDCALL
#define __CDECL
#define __INT64 long long
#endif
#if defined( _WIN32 )
#define __INLINE static __inline
#elif defined( __ICC )
#define __INLINE static __inline
#elif defined( __GNUC__ )
#define __INLINE static __inline__
#else
#define __INLINE static
#endif
#if defined( _VXWORKS )
#include "types/vxTypesOld.h"
#endif
#if !defined (_INC_WI
... ...
[file tail]:
... ...
s:
*/
IPLAPI(void, iplNoiseGaussianInit, (IplNoiseParam* noiseParam,
unsigned int seed, int mean, int stDev))
IPLAPI(void, iplNoiseGaussianInitFP, (IplNoiseParam* noiseParam,
unsigned int seed, float mean,
float stDev))
/* /////////////////////////////////////////////////////////////////////////
// Name: iplNoiseImage
// Purpose: Addition of the generated noise to the image with saturation.
// Returns: IPLStatus
// Parameters:
// image - The image on which is imposed noise.
// noiseParam - A pointer to the structure containing parameters for the
// generator of noise.
//
// Notes:
*/
IPLAPI(IPLStatus, iplNoiseImage, (IplImage* image,
const IplNoiseParam* noiseParam))
#include "iplerror.h"
#include "iplmisc.h"
#ifdef __cplusplus
}
#endif
#endif /*__IPL_H__*/