paint.h
来自「Dev c++, opencv, image segmentation and 」· C头文件 代码 · 共 38 行
H
38 行
struct rgb
{
int red;
int green;
int blue;
};
struct hsi
{
double hue;
double saturation;
int intensity;
};
struct xy {
int x;
int y;
};
struct list{
struct xy data;
struct list *next;
};
/***** Redefining struct list as node *****/
typedef struct list node;
int qinsert(node**,node**, struct xy); /** Inserting character function in queue **/
struct xy qdelete(node**,node**); /** Deleting character function in queue **/
int size(node*);
IplImage* segmentation(IplImage*);
IplImage* rgb2gray(IplImage*);
IplImage* sobel(IplImage*);
IplImage* laplace(IplImage*);
struct hsi rgb2hsi(struct rgb);
struct rgb hsi2rgb(struct hsi);
IplImage* average(IplImage*);
IplImage* halfToning(IplImage*);
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?