forked from RonnyldoSilva/OpenCV_Mat_to_Base64
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathConvertImage.h
executable file
·47 lines (36 loc) · 949 Bytes
/
ConvertImage.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
#include <opencv2/opencv.hpp>
#include<opencv2/core.hpp>
#include <opencv2/imgcodecs.hpp>
#include <vector>
#include <string>
using namespace std;
using namespace cv;
#ifndef CONVERTIMAGE_H_
#define CONVERTIMAGE_H_
/**
* Classe que converte as imagens para base64 e virse e versa
*/
class ImagemConverter {
public:
/**
* Constritor default da classe
*/
ImagemConverter();
/**
* Método que converte uma imagem base64 em um cv::Mat
* @param imageBase64, imagem em base64
* @return imagem em cv::Mat
*/
cv::Mat str2mat(const string& imageBase64);
/**
* Método que converte uma cv::Mat numa imagem em base64
* @param img, imagem em cv::Mat
* @return imagem em base64
*/
string mat2str(const Mat& img);
virtual ~ImagemConverter();
private:
std::string base64_encode(uchar const* bytesToEncode, unsigned int inLen);
std::string base64_decode(std::string const& encodedString);
};
#endif /* CONVERTIMAGE_H_ */