亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? ipl.h

?? 是一個(gè)人臉識(shí)別特征提取的Vc代碼
?? H
?? 第 1 頁 / 共 3 頁
字號(hào):
#define IPL_BORDER_CONSTANT   0
#define IPL_BORDER_REPLICATE  1
#define IPL_BORDER_REFLECT    2
#define IPL_BORDER_WRAP       3

/*---  Indexes to access IplImage.BorderMode[],IplImage.BorderConst[]  ----*/
#define IPL_SIDE_TOP_INDEX    0
#define IPL_SIDE_BOTTOM_INDEX 1
#define IPL_SIDE_LEFT_INDEX   2
#define IPL_SIDE_RIGHT_INDEX  3

/*----------  values of argument of iplSetBorderMode(,,border,)  ----------*/
#define IPL_SIDE_TOP        (1<<IPL_SIDE_TOP_INDEX)
#define IPL_SIDE_BOTTOM     (1<<IPL_SIDE_BOTTOM_INDEX)
#define IPL_SIDE_LEFT       (1<<IPL_SIDE_LEFT_INDEX)
#define IPL_SIDE_RIGHT      (1<<IPL_SIDE_RIGHT_INDEX)
#define IPL_SIDE_ALL \
     (IPL_SIDE_RIGHT | IPL_SIDE_TOP | IPL_SIDE_LEFT | IPL_SIDE_BOTTOM)


/* /////////////////////////////////////////////////////////////////////////
// Name:       iplSetBorderMode
// Purpose:    
// Returns:    
// Parameters: 
//      mode  - The following modes are supported:
//              IPL_BORDER_CONSTANT  -  The value constVal will be used for 
//                                      all pixels.
//              IPL_BORDER_REPLICATE -  The last row or column will be 
//                                      replicated for the border.
//              IPL_BORDER_REFLECT   -  The last n rows or columns will be 
//                                      reflected in reverse order to create 
//                                      the border.
//              IPL_BORDER_WRAP      -  The required border rows or columns 
//                                      are taken from the opposite side of  
//                                      the image.
//      border   - The side that this function is called for. Can be an OR of
//                 one or more of the following four sides of an image:
//                  IPL_SIDE_TOP     -  Top side.
//                  IPL_SIDE_BOTTOM  -  Bottom side.
//                  IPL_SIDE_LEFT    -  Left side.
//                  IPL_SIDE_RIGHT   -  Right side.
//                  IPL_SIDE_ALL     -  All sides
//                 If  no mode has been set for a side, the default 
//                 IPL_BORDER_CONSTANT
//      constVal - The value to use for the border when the mode is set
//                 to IPL_BORDER_CONSTANT.
//
// Notes:      
*/

IPLAPI(void,iplSetBorderMode,(IplImage *src,int mode,int border,int constVal))



/* /////////////////////////////////////////////////////////////////////////
// Name:       iplCreateImageHeader
// Purpose:    Creates an IPL image header according to the specified 
//             attributes.
// Returns:    The newly constructed IPL image header.
// Parameters: 
//  nChannels     - Number of channels in the image.
//  alphaChannel  - Alpha channel number (0 if no alpha channel in image).
//  depth         - Bit depth of  pixels. Can be one of
//                      IPL_DEPTH_1U,
//                      IPL_DEPTH_8U,
//                      IPL_DEPTH_8S,
//                      IPL_DEPTH_16U,
//                      IPL_DEPTH_16S,
//                      IPL_DEPTH_32S.
//                      IPL_DEPTH_32F.
//  colorModel    - A four character array describing the color model,
//                  e.g. "RGB", "GRAY", "MSI" etc.
//  channelSeq    - The sequence of channels in the image,
//                  e.g. "BGR" for an RGB image.
//  dataOrder     - IPL_DATA_ORDER_PIXEL or IPL_DATA_ORDER_PLANE.
//  origin        - The origin of the image.
//                  Can be IPL_ORIGIN_TL or IPL_ORIGIN_BL.
//  align         - Alignment of image data.
//                  Can be IPL_ALIGN_4BYTES (IPL_ALIGN_DWORD) or 
//                  IPL_ALIGN_8BYTES (IPL_ALIGN_QWORD) or 
//                  IPL_ALIGN_16BYTES IPL_ALIGN_32BYTES.
//  width         - Width of  the image in pixels.
//  height        - Height of  the image in pixels.
//  roi           - Pointer to an ROI (region of interest) structure.
//                  This can be NULL (implying a region of interest comprising
//                  all channels and the entire image area).
//  maskROI       - Pointer on mask image
//  imageId       - use of the application
//  tileInfo      - contains information on tiling
//
// Notes:      
*/

IPLAPI(IplImage*, iplCreateImageHeader,
               (int   nChannels,  int     alphaChannel, int     depth,
                char* colorModel, char*   channelSeq,   int     dataOrder,
                int   origin,     int     align,
                int   width,      int   height, IplROI* roi, IplImage* maskROI,
                void* imageId,    IplTileInfo* tileInfo))



/* /////////////////////////////////////////////////////////////////////////
// Name:       iplAllocateImage, iplAllocateImageFP
// Purpose:    Allocates memory for image data according to the
//             specified header.
// Returns:    
// Parameters: 
//  image     - An IPL image header with a NULL image data pointer.
//              The image data pointer will be set to newly allocated
//              image data memory after calling this function.
//  doFill    - Use a 0 to leave the pixel data uninitialized.
//              Use a not 0 to initialized the pixel data of fillValue
//  fillValue - The initial value to use for pixel data.
//
// Notes:      
*/

IPLAPI(void, iplAllocateImage,(IplImage* image, int doFill, int fillValue))
IPLAPI(void, iplAllocateImageFP,(IplImage* image, int doFill, float fillValue))


/* /////////////////////////////////////////////////////////////////////////
// Name:       iplCreateImageJaehne
// Purpose:    Creates a gray (one channel) test image
// Returns:    IPL image or NULL
// Parameters: 
//    depth  - depth of the image to be created.
//             All IPL depths are possible including 32f.
//             For the 32f depth a data range is [0..1)
//    width  - width of the image to be created
//    height - height of the image to be created
//
// Notes:   This test image was seen in
//          B.Jaehne, Digital Image Processing, third edition, 1995   
*/

IPLAPI(IplImage*, iplCreateImageJaehne, ( int depth, int width, int height ))



/* /////////////////////////////////////////////////////////////////////////
// Name:       iplCloneImage
// Purpose:    Creates a clone of an image
// Returns:    IPL image or NULL
// Parameters: img - image to be cloned.
//             
// Notes:      The function creates a copy of an image img including
//             the field roi by copying. The following fields of the
//             created image are set by function
//             ID = 0, imageId = NULL, maskROI = NULL, tileInfo = NULL      
//             All IPL depths are possible including 32f.
*/

IPLAPI(IplImage*, iplCloneImage, ( const IplImage* img ) )


/* /////////////////////////////////////////////////////////////////////////
// Name:       iplDeallocateHeader
// Purpose:    deallocate IPL header
// Returns:    
// Parameters: 
//
// Notes:      if image->imageData!=NULL, then first frees imageData
*/

IPLAPI(void, iplDeallocateHeader,(IplImage* image))


/* /////////////////////////////////////////////////////////////////////////
// Name:       iplDeallocateImage
// Purpose:    Deallocates (frees) memory for image data pointed to in
//             the image header.
// Returns:    
// Parameters: 
//     image - An IPL image header with a pointer
//             to allocated image data memory. 
//
// Notes:      The image data pointer will be set to NULL after this 
//             function executes.
*/

IPLAPI(void, iplDeallocateImage,(IplImage* image))


#define IPL_IMAGE_HEADER 1
#define IPL_IMAGE_DATA   2
#define IPL_IMAGE_ROI    4
#define IPL_IMAGE_TILE   8
#define IPL_IMAGE_MASK  16
#define IPL_IMAGE_ALL (IPL_IMAGE_HEADER|IPL_IMAGE_DATA|\
                       IPL_IMAGE_TILE|IPL_IMAGE_ROI|IPL_IMAGE_MASK)
#define IPL_IMAGE_ALL_WITHOUT_MASK (IPL_IMAGE_HEADER|IPL_IMAGE_DATA|\
                       IPL_IMAGE_TILE|IPL_IMAGE_ROI)

/* /////////////////////////////////////////////////////////////////////////
// Name:       iplDeallocate
// Purpose:    Deallocates or frees memory for image header or data or
//             mask ROI or rectangular ROI, etc or all.
// Returns:    
// Parameters: 
//  image    - An IPL image header
//  flag     - what item to free:
//     IPL_IMAGE_HEADER - free header structure
//     IPL_IMAGE_DATA   - free image data, set pointer to NULL
//     IPL_IMAGE_ROI    - free image roi, set pointer to NULL
//     IPL_IMAGE_TILE   - free image tile, set pointer to NULL
//     IPL_IMAGE_MASK   - free image maskROI, set pointer to NULL
//     IPL_IMAGE_ALL    - free image data, roi, header, maskROI, tile
//     IPL_IMAGE_ALL_WITHOUT_MASK
//                      - as well as IPL_IMAGE_ALL, but maskROI does not 
//                        release
//
// Notes:      
*/

IPLAPI(void, iplDeallocate,(IplImage* image, int flag))


/* /////////////////////////////////////////////////////////////////////////
// Name:       iplCreateROI
// Purpose:    Allocates and sets the region of interest (ROI) structure.
// Returns:    Newly constructed ROI structure.
// Parameters: 
//      coi      - The channel region of interest. It can be set to 0 
//                 (for all channels) or a specific channel number.
//      xOffset,
//      yOffset  - The offset from the origin of the rectangular region.
//      height,
//      width    - The size of the rectangular region.
//
// Notes:      
*/

IPLAPI(IplROI *,iplCreateROI,(int coi,    int xOffset, int   yOffset,
                              int width, int height ))


/* /////////////////////////////////////////////////////////////////////////
// Name:       iplSetROI
// Purpose:    Sets the IplROI structure fields.
// Returns:    
// Parameters: 
//      roi      - The ROI structure to modify.
//      coi      - The channel region of interest. It can be set to 0 
//                 (for all channels) or a specific channel number.
//      xOffset,
//      yOffset  - The offset from the origin of the rectangular region.
//      height,
//      width    - The size of the rectangular region.
//
// Notes:      
*/

IPLAPI(void, iplSetROI,(IplROI*   roi,      int coi,
                        int       xOffset,  int yOffset,
                        int width,          int height))



/* /////////////////////////////////////////////////////////////////////////
// Name:       iplDeleteROI
// Purpose:    Deletes ROI structure
// Returns:    
// Parameters: 
//      roi    The ROI structure to be deleted. 
//
// Notes:      
*/

IPLAPI(void, iplDeleteROI,(IplROI* roi))


/* /////////////////////////////////////////////////////////////////////////
// Name:       iplCreateTileInfo
// Purpose:    Creates the IplTileInfo structure.
// Returns:    Newly constructed TileInfo structure.
// Parameters: 
//      callBack           callback function
//      id                 additional identification field
//      width              width of tile
//      height             height of tile
//
// Notes:      
*/

IPLAPI(IplTileInfo*, iplCreateTileInfo, ( IplCallBack  callBack,
                                          void* id, int width, int height ))


/* /////////////////////////////////////////////////////////////////////////
// Name:       iplSetTileInfo
// Purpose:    Sets attributes for an existing IplTileInfo structure.
// Returns:    
// Parameters: 
//      tileInfo           The TileInfo structure to modify.
//      callBack           callback function
//      id                 additional identification field
//      width              width of tile
//      height             height of tile
//
// Notes:      
*/

IPLAPI(void, iplSetTileInfo, ( IplTileInfo* tileInfo,
                   IplCallBack  callBack, void* id, int width, int height ))


/* /////////////////////////////////////////////////////////////////////////
// Name:       iplDeleteTileInfo
// Purpose:    Deletes the IplTileInfo structure.
// Returns:    
// Parameters: 
//      tileInfo - The pointer to the IplTileInfo structure.
//
// Notes:      
*/

IPLAPI(void, iplDeleteTileInfo, (IplTileInfo* tileInfo))



/*==========================================================================
      Section: Windows* DIB Conversion Functions
 ==========================================================================*/
 
/* /////////////////////////////////////////////////////////////////////////
// Name:       iplTranslateDIB
// Purpose:    Translates a DIB image into an IPL image.
// Returns:    The constructed IPL image.
// Parameters: 
//      dib       - The DIB image.
//      cloneData - A boolean, result of work of the function. If true, 
//                  the image data pointer in IPL image is made to point 
//                  to the DIB image data. Otherwise the DIB image data 
//                  was converting to the IPL image data.
//
// Notes:      
*/

IPLAPI(IplImage*, iplTranslateDIB,(BITMAPINFOHEADER* dib, BOOL* cloneData))


/* /////////////////////////////////////////////////////////////////////////
// Name:       iplConvertFromDIB
// Purpose:    Converts a DIB image to an IPL image with specified attributes.
// Returns:    
// Parameters: 
//      dib   - The input DIB image.
//      image - The IPL image header with specified attributes.
//              
// Notes:       If the data pointer is NULL, image data memory
//              will be allocated and the pointer set to it.
*/

IPLAPI(void, iplConvertFromDIB,(BITMAPINFOHEADER* dib, IplImage* image))

/*----------  Consts of Palette conversion for iplConvertToDIB*  ----------*/
#define IPL_PALCONV_NONE      0
#define IPL_PALCONV_POPULATE  1
#define IPL_PALCONV_MEDCUT    2

/* /////////////////////////////////////////////////////////////////////////
// Name:       iplConvertToDIB
// Purpose:    Converts an IPL image to a DIB image with specified attributes.
// Returns:    
// Parameters: 
//   image  - The input IPL image.
//   dib    - The output DIB image.
//   dither - The dithering algorithm to use if applicable.
//            Dithering will be done if  the bit depth in the DIB
//            is less than that of the IPL image.
//            The following algorithms are supported for all dither 
//            type (see iplReduceBits).
//   paletteConversion -
//      Applicable when the DIB is a palette image.
//      Specifies the palette algorithm to use when converting
//      the IPL absolute color image.
//      The following options are supported:
//          IPL_PALCONV_NONE     - The existing palette in the DIB is used.
//          IPL_PALCONV_POPULATE - The popularity palette conversion
//                                 algorithm is used.
//          IPL_PALCONV_MEDCUT   - The median cut algorithm palette 
//                                 conversion algorithm is used.
//
// Notes:      
*/

IPLAPI(void, iplConvertToDIB,(IplImage* image, BITMAPINFOHEADER* dib, 
                              int dither, int paletteConversion))


/* /////////////////////////////////////////////////////////////////////////
// Name:       iplConvertFromDIBSep

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
欧洲一区二区av| 久久精品欧美日韩精品| 国产盗摄精品一区二区三区在线| 亚洲精品美腿丝袜| 国产日韩精品一区二区三区| 7777精品伊人久久久大香线蕉超级流畅 | 国产精品久久久久久久久晋中| 91精选在线观看| 日本丰满少妇一区二区三区| 国产激情91久久精品导航| 视频一区在线视频| 亚洲影视在线播放| 亚洲欧洲成人精品av97| 久久久久久综合| 日韩精品一区国产麻豆| 欧美日韩在线三区| 欧美亚洲精品一区| 日本精品一级二级| eeuss鲁片一区二区三区在线观看 eeuss鲁片一区二区三区在线看 | 欧美三级中文字| 91美女在线看| 99久久国产综合精品女不卡| 国产精品69久久久久水密桃| 久久激五月天综合精品| 七七婷婷婷婷精品国产| 天天操天天干天天综合网| 一区二区三区欧美激情| 一区二区在线免费观看| 亚洲精品水蜜桃| 亚洲免费视频成人| 夜夜夜精品看看| 亚洲午夜精品一区二区三区他趣| 一区二区三区影院| 一级做a爱片久久| 亚洲制服欧美中文字幕中文字幕| 亚洲免费在线看| 一区2区3区在线看| 五月天精品一区二区三区| 亚洲成人av电影| 日本在线播放一区二区三区| 免播放器亚洲一区| 美女视频黄免费的久久| 久久成人免费日本黄色| 极品尤物av久久免费看| 国产成人精品免费网站| 成人夜色视频网站在线观看| 成人av免费网站| 色国产综合视频| 欧美日韩久久一区| 欧美一区二区三区不卡| 亚洲精品在线电影| 国产精品少妇自拍| 亚洲精品免费在线| 天天综合天天做天天综合| 麻豆成人久久精品二区三区小说| 激情综合一区二区三区| 99久久精品免费看国产免费软件| 97久久人人超碰| 欧美日韩极品在线观看一区| 日韩一区二区三区三四区视频在线观看 | 亚洲综合一区二区精品导航| 日本欧美肥老太交大片| 国产精品一品视频| 99久久国产综合精品色伊| 欧美日韩高清一区二区不卡| 久久一日本道色综合| 中文字幕一区在线| 欧美aaaaa成人免费观看视频| 国产一区二区视频在线播放| 成人动漫视频在线| 在线电影国产精品| 久久九九久久九九| 亚洲一区中文在线| 国产乱子轮精品视频| 91麻豆123| 亚洲精品一线二线三线无人区| 亚洲色图都市小说| 美女www一区二区| jlzzjlzz欧美大全| 日韩写真欧美这视频| 国产精品久久久久久久久快鸭| 亚洲777理论| 成人成人成人在线视频| 日韩三级在线观看| 亚洲欧美另类综合偷拍| 精品一区二区三区的国产在线播放| av午夜精品一区二区三区| 制服丝袜激情欧洲亚洲| 一区精品在线播放| 狠狠色丁香久久婷婷综合_中 | 韩国女主播一区二区三区| 日本道免费精品一区二区三区| 日韩欧美视频一区| 亚洲另类色综合网站| 国产麻豆精品theporn| 欧美日本乱大交xxxxx| 亚洲欧洲日产国码二区| 国产一区二区三区在线观看免费视频 | 日韩激情一区二区| 91首页免费视频| 国产视频一区二区三区在线观看| 五月天一区二区| 色系网站成人免费| 中文字幕欧美日韩一区| 久久国产福利国产秒拍| 欧美另类z0zxhd电影| 最新国产成人在线观看| 国产乱码精品1区2区3区| 这里只有精品免费| 亚洲曰韩产成在线| 成人动漫中文字幕| 国产亚洲一二三区| 激情综合色丁香一区二区| 欧美美女直播网站| 亚洲国产成人av网| 欧美亚洲国产一区在线观看网站 | 日韩欧美国产一区二区在线播放| 亚洲一区二区高清| 在线日韩av片| 亚洲欧美精品午睡沙发| 99免费精品在线| 国产精品久久久久一区二区三区| 久久99久久久久| 欧美一级在线视频| 男女男精品视频网| 日韩欧美中文字幕制服| 日本不卡视频一二三区| 这里只有精品免费| 美日韩一级片在线观看| 日韩欧美在线不卡| 久久精品国产久精国产爱| 欧美乱妇一区二区三区不卡视频| 亚洲成a人v欧美综合天堂下载| 色婷婷久久99综合精品jk白丝| 国产精品剧情在线亚洲| av在线免费不卡| 亚洲精品老司机| 欧美色手机在线观看| 亚洲不卡在线观看| 3d成人h动漫网站入口| 免费人成在线不卡| 欧美xxxxx裸体时装秀| 国产在线不卡一区| 久久精品亚洲乱码伦伦中文 | 精品久久一区二区| 国产一区福利在线| 国产日产精品一区| 99久久精品国产精品久久| 亚洲精品免费看| 欧美日韩国产小视频在线观看| 热久久国产精品| 精品国产免费一区二区三区四区| 国产老妇另类xxxxx| 国产精品久久久久久亚洲伦| 色欧美乱欧美15图片| 天堂资源在线中文精品| 精品国产乱码91久久久久久网站| 国产精品自产自拍| 综合激情成人伊人| 欧美日韩黄视频| 国内久久精品视频| 国产精品福利一区| 欧美理论在线播放| 国产精品1024| 亚洲福利一二三区| 久久综合久久99| 91捆绑美女网站| 日本视频一区二区三区| 国产欧美一区二区精品仙草咪| 一本久道久久综合中文字幕| 青青草97国产精品免费观看无弹窗版 | 国产精品一区二区黑丝| 亚洲精品国产无天堂网2021 | 亚洲成精国产精品女| 久久久久综合网| 欧美在线啊v一区| 九色porny丨国产精品| ...xxx性欧美| 精品久久久三级丝袜| 91同城在线观看| 美女任你摸久久| 亚洲与欧洲av电影| 国产拍欧美日韩视频二区| 欧美性大战久久| 丁香五精品蜜臀久久久久99网站 | 91精品在线免费| jizzjizzjizz欧美| 久久精品国产秦先生| 亚洲免费电影在线| 久久久久久久久伊人| 欧美精品 日韩| 色综合天天视频在线观看 | 成人app网站| 麻豆成人免费电影| 亚洲成人在线网站| 国产精品久久久久影视| 精品国产一区二区三区忘忧草| 欧美在线免费播放| 不卡的av网站| 国产一区二区三区国产|