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

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? ipl.h

?? 微軟的基于HMM的人臉識別原代碼, 非常經典的說
?? H
?? 第 1 頁 / 共 3 頁
字號:
#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

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
91小视频在线| 日韩欧美中文字幕公布| 男女男精品视频网| 国产精品视频你懂的| 欧美一区二区女人| 黄色成人免费在线| 国产片一区二区| 成人免费av网站| 亚洲国产精品av| 欧美不卡一区二区三区| 欧美日韩国产片| 国产麻豆9l精品三级站| 午夜精品久久久久久久| 亚洲欧洲性图库| 国产偷国产偷亚洲高清人白洁| 欧美日本一区二区三区四区| 99热国产精品| 国产91丝袜在线播放九色| 日韩黄色片在线观看| 亚洲精品乱码久久久久久 | 国产美女精品在线| 视频在线在亚洲| 亚洲午夜羞羞片| 一区二区三区电影在线播| 亚洲国产精品精华液ab| 久久久www成人免费无遮挡大片 | 欧美电影免费观看高清完整版在线观看| a级精品国产片在线观看| 高清成人在线观看| 国产伦精品一区二区三区在线观看| 免费成人在线播放| 另类小说图片综合网| 美女一区二区视频| 免费欧美日韩国产三级电影| 丝袜诱惑制服诱惑色一区在线观看 | 成人久久久精品乱码一区二区三区| 老鸭窝一区二区久久精品| 日本女优在线视频一区二区| 午夜激情一区二区三区| 艳妇臀荡乳欲伦亚洲一区| 亚洲免费观看高清完整版在线| 国产精品国产三级国产aⅴ入口 | 欧美一二三区在线观看| 在线成人免费观看| 欧美一区二区国产| 久久免费美女视频| 国产精品少妇自拍| 亚洲欧美福利一区二区| 亚洲一区二区三区四区的| 午夜精品一区二区三区电影天堂| 午夜视频在线观看一区二区| 视频在线在亚洲| 激情综合色综合久久综合| 国产精品1024| 日本道精品一区二区三区| 欧美性videosxxxxx| 欧美人伦禁忌dvd放荡欲情| 正在播放一区二区| 2020国产精品久久精品美国| 国产欧美日韩卡一| 亚洲美女屁股眼交| 91首页免费视频| 欧美亚洲另类激情小说| 欧美一级日韩不卡播放免费| 久久色成人在线| 国产精品福利电影一区二区三区四区| 亚洲卡通动漫在线| 日韩二区三区四区| 国产成人综合自拍| 在线视频一区二区免费| 日韩你懂的电影在线观看| 国产日韩精品一区二区三区| 国产精品久久精品日日| 亚洲激情自拍偷拍| 日韩精品视频网站| 国产69精品久久99不卡| 欧美午夜精品久久久| 精品久久久久久久久久久久久久久久久 | 欧美区在线观看| 久久日韩精品一区二区五区| 亚洲视频香蕉人妖| 免费在线欧美视频| 成人激情动漫在线观看| 3d动漫精品啪啪1区2区免费| 国产午夜亚洲精品不卡| 亚洲综合精品自拍| 国产91精品露脸国语对白| 欧美日本在线视频| 国产精品久久久久久久久动漫| 天堂va蜜桃一区二区三区漫画版 | 91视频国产观看| 日韩亚洲欧美一区二区三区| 国产精品嫩草久久久久| 免费在线看成人av| 91麻豆自制传媒国产之光| 日韩一区二区三| 一区二区三区av电影| 国产a区久久久| 日韩亚洲欧美成人一区| 一区二区高清免费观看影视大全| 激情av综合网| 欧美精品精品一区| 亚洲欧美成aⅴ人在线观看| 国产精品自产自拍| 欧美一区二区在线观看| 亚洲激情在线激情| 国产ts人妖一区二区| 精品国产第一区二区三区观看体验| 一区二区三区四区不卡在线| 国产成人亚洲精品青草天美| 欧美一区二区高清| 亚洲线精品一区二区三区八戒| 99热在这里有精品免费| 国产欧美精品一区二区色综合 | 日本韩国欧美一区二区三区| 久久精品在这里| 美腿丝袜一区二区三区| 在线观看亚洲成人| 一区二区在线看| www.欧美.com| 日本一区二区三区高清不卡| 老司机免费视频一区二区| 欧美一区二区三区播放老司机| 亚洲自拍与偷拍| 色噜噜狠狠成人网p站| 日韩久久一区二区| 成人免费的视频| 麻豆中文一区二区| 欧美一卡二卡三卡| 天天色综合天天| 欧美二区乱c少妇| 日韩精品成人一区二区三区| 欧美在线观看你懂的| 怡红院av一区二区三区| 色天天综合久久久久综合片| 18涩涩午夜精品.www| 一本大道久久a久久精品综合| 自拍偷拍国产精品| 色8久久人人97超碰香蕉987| 亚洲激情自拍偷拍| 欧美日本韩国一区| 日本aⅴ免费视频一区二区三区| 欧美高清激情brazzers| 日本成人在线电影网| 精品国一区二区三区| 国产精品一区在线| 国产精品久久午夜夜伦鲁鲁| 99精品久久久久久| 亚洲va韩国va欧美va精品| 欧美一区二区三区男人的天堂| 精品一区二区三区免费观看| 精品久久久久久久久久久院品网| 国产一区二区三区黄视频 | 欧美人动与zoxxxx乱| 免费日韩伦理电影| 久久久久亚洲蜜桃| 成人黄色av网站在线| 亚洲一区二区视频在线观看| 欧美精品色一区二区三区| 久久99热99| 久久精品男人的天堂| 99国产一区二区三精品乱码| 亚洲国产成人av好男人在线观看| 4438x亚洲最大成人网| 久久精品99久久久| 国产精品私人影院| 欧美日韩一区高清| 精品一区二区三区在线播放| 国产欧美一区二区精品仙草咪| 成人精品一区二区三区四区| 亚洲一区二区视频在线观看| 欧美一区二区三区在线观看| 从欧美一区二区三区| 亚洲永久免费av| 久久奇米777| 欧美又粗又大又爽| 黑人巨大精品欧美一区| 综合电影一区二区三区| 3d成人动漫网站| 成人激情文学综合网| 日韩国产欧美三级| 国产精品素人一区二区| 欧美日韩亚洲丝袜制服| 欧美卡1卡2卡| 丁香网亚洲国际| 日韩成人免费在线| 亚洲欧洲精品天堂一级| 日韩亚洲国产中文字幕欧美| 91蝌蚪porny九色| 国产剧情在线观看一区二区| 亚洲国产精品嫩草影院| 国产亚洲污的网站| 欧美一区二区视频在线观看 | 激情欧美日韩一区二区| 亚洲免费观看高清在线观看| 久久只精品国产| 在线电影欧美成精品| 一本色道久久综合亚洲精品按摩| 国产又黄又大久久| 免费在线观看成人|