Leptonica OpenCV Java 将 Mat 转换为 Pix,反之亦然

Posted

技术标签:

【中文标题】Leptonica OpenCV Java 将 Mat 转换为 Pix,反之亦然【英文标题】:Leptonica OpenCV Java convert Mat to Pix and vise versa 【发布时间】:2018-02-19 14:41:22 【问题描述】:

我使用以下 lept4jOpenCV Maven 依赖项:

<!-- Leptonica -->
<dependency>
    <groupId>net.sourceforge.lept4j</groupId>
    <artifactId>lept4j</artifactId>
    <version>1.9.0</version>
</dependency>

<!-- OpenCV -->
<dependency>
    <groupId>org.openpnp</groupId>
    <artifactId>opencv</artifactId>
    <version>3.2.0-1</version>
</dependency>

我想同时使用 OpenCV 和 Leptonica 函数。为此,我需要能够将 Mat 转换为 Pix 并将 Pix 转换为 Mat。

这是我现在拥有的:

public static Pix matToGrayscalePix(Mat mat) 

    if (mat == null) 
        throw new IllegalArgumentException("Recycled matrix");
    

    final byte[] bytes = new byte[(int) mat.total()];
    mat.get(0, 0, bytes);

    ByteBuffer buff = ByteBuffer.wrap(bytes);
    return Leptonica1.pixReadMem(buff, new NativeSize(buff.capacity()));


public static Mat pixToGrayscaleMat(Pix pix) 

    if (pix == null) 
        throw new IllegalArgumentException("Recycled matrix");
    

    PointerByReference pdata = new PointerByReference();
    NativeSizeByReference psize = new NativeSizeByReference();
    int format = net.sourceforge.lept4j.ILeptonica.IFF_TIFF;
    Leptonica1.pixWriteMem(pdata, psize, pix, format);
    byte[] b = pdata.getValue().getByteArray(0, psize.getValue().intValue());

    return new MatOfByte(b).reshape(0, pix.h);

但是这些功能现在不起作用。我做错了什么?

【问题讨论】:

【参考方案1】:

尝试以下方法:

public static Pix convertMatToPix(Mat mat) 
    MatOfByte bytes = new MatOfByte();
    Imgcodecs.imencode(".tif", mat, bytes);
    ByteBuffer buff = ByteBuffer.wrap(bytes.toArray());
    return Leptonica1.pixReadMem(buff, new NativeSize(buff.capacity()));


public static Mat convertPixToMat(Pix pix) 
    PointerByReference pdata = new PointerByReference();
    NativeSizeByReference psize = new NativeSizeByReference();
    Leptonica1.pixWriteMem(pdata, psize, pix, ILeptonica.IFF_TIFF);
    byte[] b = pdata.getValue().getByteArray(0, psize.getValue().intValue());
    Leptonica1.lept_free(pdata.getValue());
    return Imgcodecs.imdecode(new MatOfByte(b), Imgcodecs.CV_LOAD_IMAGE_UNCHANGED);

【讨论】:

以上是关于Leptonica OpenCV Java 将 Mat 转换为 Pix,反之亦然的主要内容,如果未能解决你的问题,请参考以下文章

Ubuntu 16.04 安装 Leptonica 1.75.3

Leptonica - 应用 otsu 阈值后无法写入图像

在 NSImage 和 Leptonica Pix 之间转换

Leptonica 与 Xcode 框架冲突

Leptonica在VS2010中的编译及简单使用举例

使用 leptonica 进行 OCR 图像处理(反色文本)