📄 paint.h
字号:
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -