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

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

?? ipl.h

?? 本程序實現打開兩幅圖像并且提取Harris角點,是角點特征匹配的第一步
?? 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一区二区三区免费野_久草精品视频
五月天欧美精品| 日本一区二区免费在线观看视频| 欧美一级二级在线观看| 国产欧美久久久精品影院| 亚洲综合另类小说| 丁香六月综合激情| 欧美一区二区三区免费| 亚洲欧美一区二区在线观看| 精品亚洲成a人在线观看 | 久久久亚洲午夜电影| 亚洲一区二区三区小说| 成人免费毛片app| 国产精品久久久久影院老司| 日韩精品一级二级| 日本乱人伦aⅴ精品| 国产日韩精品视频一区| 免费成人性网站| 欧美在线看片a免费观看| 国产精品久久三| 国产一区二区调教| 日韩欧美一区二区三区在线| 久久久久亚洲蜜桃| 日本亚洲三级在线| 色婷婷综合久久久| 中文字幕在线一区免费| 国产精品69毛片高清亚洲| 日韩欧美的一区二区| 午夜久久久久久久久| 在线观看视频一区二区欧美日韩| 国产精品五月天| 国产成+人+日韩+欧美+亚洲| 久久一区二区视频| 国产成人综合亚洲网站| 久久久综合九色合综国产精品| 精品一区二区三区在线播放 | 国产精品影视天天线| 欧美sm极限捆绑bd| 美日韩一区二区三区| 亚洲精品一区二区三区在线观看| 麻豆国产精品一区二区三区| www久久久久| 日韩精品国产精品| 欧美一级在线视频| 久久成人18免费观看| 精品国产电影一区二区| 国产精品一级在线| ww久久中文字幕| 波多野结衣在线一区| 国产精品久久久久影院色老大 | 青青草精品视频| 一区二区三区中文字幕精品精品| 日韩精品亚洲专区| 日本麻豆一区二区三区视频| 午夜精品福利在线| 成人精品免费看| 亚洲国产精品一区二区www在线| 精品日韩99亚洲| 成人午夜伦理影院| 欧美日本在线一区| 七七婷婷婷婷精品国产| 日韩一区二区在线观看视频播放| 九色porny丨国产精品| 国产精品九色蝌蚪自拍| 欧美日韩国产综合草草| 国产一区二区看久久| 日韩美女久久久| 在线播放国产精品二区一二区四区| 美女脱光内衣内裤视频久久网站| 国产亚洲制服色| 91在线观看一区二区| 亚洲一区二区3| 九一久久久久久| 亚洲男女一区二区三区| 色琪琪一区二区三区亚洲区| 亚洲福利一二三区| 亚洲精品在线三区| 色综合中文字幕| 蜜臀av性久久久久蜜臀av麻豆| 亚洲国产精品成人综合 | 亚洲天堂2014| 91精品国产手机| 99久久婷婷国产综合精品| 日本成人在线网站| 亚洲品质自拍视频| 精品国产免费人成电影在线观看四季 | 欧美电视剧免费观看| 欧美高清一级片在线| 粉嫩13p一区二区三区| 一区二区三区四区不卡视频| 久久精品男人的天堂| 欧美日本免费一区二区三区| 国产成人在线视频免费播放| 日本麻豆一区二区三区视频| 一区二区三区在线视频观看 | 91蜜桃视频在线| 国产美女一区二区| 蜜桃一区二区三区在线观看| 一区二区三区欧美日| 中文字幕视频一区| 国产网站一区二区| 欧美成人性福生活免费看| 欧美日韩五月天| 色综合久久久网| 成人av电影在线网| 国产原创一区二区三区| 美腿丝袜一区二区三区| 视频一区二区中文字幕| 一个色妞综合视频在线观看| 久久久久99精品国产片| 欧美精品一区二区在线播放| 欧美一区二区成人| 日韩三级视频在线观看| 欧美日韩aaa| 正在播放一区二区| 69久久99精品久久久久婷婷| 欧美日韩国产高清一区二区| 欧美日韩国产大片| 欧美日韩免费一区二区三区| 欧美日韩三级在线| 欧美日韩国产区一| 日韩视频免费观看高清完整版| 日韩一级免费一区| 欧美α欧美αv大片| 欧美精品一区在线观看| 国产偷国产偷亚洲高清人白洁| 26uuu亚洲| 中文字幕 久热精品 视频在线| 国产精品国产a| 亚洲精品视频在线观看免费| 亚洲综合男人的天堂| 亚洲第四色夜色| 日韩av网站免费在线| 韩国欧美国产1区| 国产成人精品一区二| 99re热这里只有精品免费视频| 日本精品免费观看高清观看| 欧美精品tushy高清| 精品黑人一区二区三区久久| 久久精品人人爽人人爽| 最新不卡av在线| 亚洲成av人片一区二区| 青青草国产成人99久久| 国产精品1区2区3区在线观看| 99国产精品久久久| 欧美三电影在线| 日韩精品一区二区三区老鸭窝 | 欧美一二三四区在线| 国产视频一区二区在线观看| 亚洲视频在线一区| 亚洲成人福利片| 国内精品写真在线观看| 色综合天天综合网国产成人综合天| 欧美亚洲国产一区二区三区va| 538prom精品视频线放| 国产欧美日韩亚州综合| 亚洲a一区二区| 国产一区二区三区av电影| 一本到高清视频免费精品| 日韩一区二区免费高清| 亚洲三级免费电影| 美女一区二区视频| 日本久久电影网| 国产欧美日韩中文久久| 午夜激情一区二区| 成人av一区二区三区| 91精品国产综合久久精品性色| 中文字幕欧美激情| 美女视频一区二区三区| 一本大道久久a久久精二百| 精品久久久久久久久久久久久久久 | 亚洲综合自拍偷拍| 国产精品538一区二区在线| 91精品国产综合久久久久久久久久| 中文字幕一区三区| 经典三级在线一区| 91精品国产欧美一区二区| 亚洲女与黑人做爰| 成人午夜碰碰视频| www一区二区| 日韩电影一区二区三区| 色屁屁一区二区| 自拍av一区二区三区| 国产精品18久久久久久久久久久久 | 欧美精品一区二区三区四区 | 国产精品久久久久一区| 激情欧美一区二区三区在线观看| 欧美日韩国产免费一区二区| 亚洲蜜桃精久久久久久久| 粉嫩av一区二区三区| 久久久精品tv| 韩国三级在线一区| 精品国产一区二区亚洲人成毛片 | 亚洲免费资源在线播放| 波多野结衣中文字幕一区| 中文一区在线播放| 国产成人精品亚洲777人妖| 久久综合久久99| 激情六月婷婷久久| 久久你懂得1024| 激情五月婷婷综合|