gpt4 book ai didi

c++ - 在 OpenCV Mat 和 Leptonica Pix 之间转换

转载 作者:搜寻专家 更新时间:2023-10-31 00:10:12 25 4
gpt4 key购买 nike

我需要在 C++ 中的 OpenCV Mat 图像和 Leptonica Pix 图像格式之间进行转换。这用于 8 位灰度图像的二值化。

最佳答案

我找到了 @ikarliga's answer对我有用,因为我需要的是实际转换为 Mat 格式,而不必将其与 OP 所要求的 Tesseract API 一起使用。

这是我使用的两个函数。 pix8ToMat 函数取自 node-dv project

Pix *mat8ToPix(cv::Mat *mat8)
{
Pix *pixd = pixCreate(mat8->size().width, mat8->size().height, 8);
for(int y=0; y<mat8->rows; y++) {
for(int x=0; x<mat8->cols; x++) {
pixSetPixel(pixd, x, y, (l_uint32) mat8->at<uchar>(y,x));
}
}
return pixd;
}

cv::Mat pix8ToMat(Pix *pix8)
{
cv::Mat mat(cv::Size(pix8->w, pix8->h), CV_8UC1);
uint32_t *line = pix8->data;
for (uint32_t y = 0; y < pix8->h; ++y) {
for (uint32_t x = 0; x < pix8->w; ++x) {
mat.at<uchar>(y, x) = GET_DATA_BYTE(line, x);
}
line += pix8->wpl;
}
return mat;
}

关于c++ - 在 OpenCV Mat 和 Leptonica Pix 之间转换,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39293922/

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