-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathImg_Process.h
79 lines (63 loc) · 3.49 KB
/
Img_Process.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
#pragma once
#include<algorithm>
#include<math.h>
#include<numeric>
#include<string>
#include<vector>
#include<map>
#include <io.h>
#include"Matrix_calculate.h"
using namespace std;
class Img_Process
{
public:
void GetAllFormatFiles(string path, vector<string>& files, string format);
void Proc_main(unsigned short* pArrimg, int imgwidth, int imgheight, unsigned char* pmap255);
/*************************************************
Function: // Normalize_func
Description: // 图像的归一化操作,图像灰度范围限制在01之间
Input: // matInputimg:输入图像;
Output: // matOutputimg:输出图像
Others: // 归一化过程后输出的是浮点型归一化图像
*************************************************/
void Normalize_func(double* pInputimg, double* pOutputimg, int width, int height); //归一化
/*************************************************
Function: // Imadjust_func
Description: // 图像对比度增强,类似matlab中imadjust函数
Input: // matInputimg:输入图像,uplimit和downlimit分别为对比度增强的上下限
Output: // matOutputimg:输出图像
Others: // 归一化过程后输出的是浮点型归一化图像
*************************************************/
void Imadjust_func(double* pInputimg, double downlimit, double uplimit, double* pOutputimg, int width, int height);//对比度调节
/*************************************************
Function: // AdaptIogImage
Description: // 图像自适应对数变换
Input: // matDownsample:输入图像,matSublogimag和matL3为中间变量的子空间
Output: // matLogimg: 自适应对数变换数组的输出图像
Others: // 自适应对数变换输入输出图像皆为浮点型,偏置参数bias设置为0.85.
*************************************************/
void AdaptIogImage(double* pDownsample, double* pSublogimag, double* pL3, double* pLogimg, int width, int height);
/*************************************************
Function: // Mapto255
Description: // 图像自适应对数变换
Input: // matDownsample:输入图像,matSublogimag和matL3为中间变量的子空间
Output: // matLogimg: 自适应对数变换数组的输出图像
Others: // 自适应对数变换输入输出图像皆为浮点型,偏置参数bias设置为0.85.
*************************************************/
void Mapto255(double* pInputimg, unsigned char* pOutputimg, int width, int height);
/*************************************************
Function: // DownSample
Description: // 图像自适应对数变换
Input: // matDownsample:输入图像,matSublogimag和matL3为中间变量的子空间
Output: // matLogimg: 自适应对数变换数组的输出图像
Others: // 自适应对数变换输入输出图像皆为浮点型,偏置参数bias设置为0.85.
*************************************************/
void DownSample(double* pGauresult, double* pdownsample, int ratio, int width, int height,
int sample_wid, int sample_heigh);
void Hist_Equaliation(double* pInputimg, double* pOutputimg, int levelnumber, int width, int height);
void Gaussiantemplatefunc(double* matGastemplate, int wide, double tho);
void Templatefilter(double* matInputimg, int width, int height, double* matTemplate,
int matTemplatewidth, int matTemplateheight, double* matOutputimg);
void Conectchose(Matrix<unsigned short>& matInputimg, Matrix<unsigned short>& matLabelimg, vector<int>& labval, vector<int>& labind, bool TF);
void Isinverimg(unsigned short* pArrimg, unsigned char* pmap255,int imgwidth, int imgheight);
};