gpt4 book ai didi

c++ - 同一张图片不同的base64编码

转载 作者:塔克拉玛干 更新时间:2023-11-03 07:39:34 40 4
gpt4 key购买 nike

我需要将 base64 转换为 opencv::mat 文件。所以我从视频中取出一组 10 帧并附加 base64(A)(在 python 中使用 base64.b64encode)。

之后,我使用 here 中的代码将该 base64 转换为 Mat。图片看起来不错。

但它们的文件大小比原始图像大,加上当我将这些最终图像编码为 base64(B)(在 python 中使用 base64.b64encode)时,编码的 base64 不同于原始的 base64(A)。我不明白为什么?这也会影响使用 cv::mat 输出的我的应用程序的输出。

对于 base64 到 Mat,我使用来自 here 的代码(如上所示)。

已编辑:以下是我的 python 脚本,用于将一组 jpeg 转换为 base64 (.txt)

 def img2txt(file_directory):    
imageFiles = glob.glob(file_directory+"/*.jpg")
imageFiles.sort()
fileWrite='base64encoding.txt'
#print fileWrite
for i in range(0,len(imageFiles)):
image = open(imageFiles[i],'rb')
image_read = image.read()
image_64_encode = base64.b64encode(image_read)
with open (fileWrite, 'a') as f:
f.writelines(image_64_encode+'\n')

base64解码函数 : 来自here

static const std::string base64_chars =
"ABCDEFGHIJKLMNOPQRSTUVWXYZ"
"abcdefghijklmnopqrstuvwxyz"
"0123456789+/";


static inline bool is_base64(unsigned char c) {
return (isalnum(c) || (c == '+') || (c == '/'));
}

std::string base64_decode(std::string const& encoded_string) {
int in_len = encoded_string.size();
int i = 0;
int j = 0;
int in_ = 0;
unsigned char char_array_4[4], char_array_3[3];
std::string ret;

while (in_len-- && (encoded_string[in_] != '=') && is_base64(encoded_string[in_])) {
char_array_4[i++] = encoded_string[in_]; in_++;
if (i == 4) {
for (i = 0; i < 4; i++)
char_array_4[i] = base64_chars.find(char_array_4[i]);

char_array_3[0] = (char_array_4[0] << 2) + ((char_array_4[1] & 0x30) >> 4);
char_array_3[1] = ((char_array_4[1] & 0xf) << 4) + ((char_array_4[2] & 0x3c) >> 2);
char_array_3[2] = ((char_array_4[2] & 0x3) << 6) + char_array_4[3];

for (i = 0; (i < 3); i++)
ret += char_array_3[i];
i = 0;
}
}

if (i) {
/*for (j = i; j < 4; j++)
char_array_4[j] = 0;*/

for (j = 0; j < i; j++)
char_array_4[j] = base64_chars.find(char_array_4[j]);

char_array_3[0] = (char_array_4[0] << 2) + ((char_array_4[1] & 0x30) >> 4);
char_array_3[1] = ((char_array_4[1] & 0xf) << 4) + ((char_array_4[2] & 0x3c) >> 2);
//char_array_3[2] = ((char_array_4[2] & 0x3) << 6) + char_array_4[3];

for (j = 0; (j < i - 1); j++)
ret += char_array_3[j];
}

return ret;
}

C++ 主要函数:

int main()
{
ifstream in("TestBase64.txt");
if(!in) {
cout << "Cannot open input file.\n";
return 1;
}
int i=0;
string encoded_string;
while (getline(in, encoded_string))
{
string decoded_string = base64_decode(encoded_string);
vector<uchar> data(decoded_string.begin(), decoded_string.end());
cv::imwrite("/Frames_from_B_to_Mat/Frames_from_B_to_Mat"+b+".jpg");
i++;
}

return 0;
}

最佳答案

线上:

vector<uchar> data(decoded_string.begin(), decoded_string.end());

您可能在 data 中保存了一幅图像的 JPEG 编码表示。因此,您最好将其写入二进制文件,而不是使用用于将 Mat 写入文件的 cv::imwrite()

如果出于某些无法解释的原因,您想使用cv::imwrite(),您需要向它传递一个Mat。因此,您最终会将 JPEG 表示解码为 Mat,然后编码为 JPEG 并写入——这看起来很愚蠢:

cv::Mat img = cv::imdecode(data, cv::IMREAD_COLOR);
cv::imwrite('result.jpg',img);

TLDR;

我的意思是您的数据已经是 JPEG 编码的,您是从 JPEG 文件中读取的。

关于c++ - 同一张图片不同的base64编码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54072321/

40 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com