JBIG2压缩实例(C、Matlab混合编程)

这篇博客展示了如何使用C和Matlab混合编程实现JBIG2图像压缩和解压缩的过程。文章包括了压缩程序的代码,如`jbg_enc_init`和`jbg_enc_out`的调用,以及解压缩程序的实现,利用`jbg_dec_init`和`jbg_dec_in`函数进行解码。通过比较解压缩后的数据与原始数据,验证了程序的正确性。
摘要由CSDN通过智能技术生成

压缩程序:

#include <stdio.h>
#include <stdlib.h>
#include <stddef.h>
#include <string.h>
#include "jbig.h"
#include "mex.h"
#include "jbig1.h"
#include "jbig_ar1.h"

unsigned char *testbuf;
long testbuf_len,TESTBUF_SIZE;

static void output_bie(unsigned char *start, size_t len, void *file)
{
 printf("\n%d\n",7);
 printf("\n%d\t%d",len,testbuf_len);
 if (testbuf_len < TESTBUF_SIZE) {
    if (testbuf_len + len < TESTBUF_SIZE)
      memcpy(testbuf + testbuf_len, start, len);
    else
      memcpy(testbuf + testbuf_len, start, TESTBUF_SIZE - testbuf_len);
    }
 testbuf_len += len;
 (void) file;
 return;
}


void mexFunction(int nlhs, mxArray *plhs[],  int nrhs, const mxArray *prhs[])
{
unsigned char

评论 18
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值