?? transform.h
字號:
void fft1D(float *arrayBuf, int n);
void fft2D(unsigned char* imgBuf, int width, int height);
void ifft2D(unsigned char* imgBuf, int width, int height);
//旋轉
void rotateGrey(unsigned char *imgBuf, int width, int height, int mean,
float slope, float orgX, float orgY,
unsigned char *rotateBuf, int outImgW, int outImgH);
void rotateRGB(unsigned char *colorBuf, int width, int height, int mean,
float slope, float orgX, float orgY,
unsigned char *rotateBuf, int outImgW, int outImgH);
//雙線性插值縮放
void zoomGray(unsigned char *imgBuf, int width, int height, float zoomTime,
unsigned char *zoomBuf, int zoomW, int zoomH);
void zoomRGB(unsigned char *imgBuf, int width, int height, float zoomTime,
unsigned char *zoomBuf, int zoomW, int zoomH);
//近鄰縮放
void zoomNeighbor(unsigned char *imgBuf, int width, int height, int biBitCount, float zoomTime,
unsigned char *zoomBuf, int zoomW, int zoomH);
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -