二维码Data Matrix编码、解码使用举例

二维码Data Matrix的介绍见: http://blog.csdn.net/fengbingchun/article/details/44279967  ,这里简单写了个生成二维码和对二维码进行识别的测试例子,如下:

int test_data_matrix_encode()
{
	std::string str = "中国_abc_DEF_123_@#$!HTTP://WWW.LIBDMTX.ORG";

	DmtxEncode* enc = dmtxEncodeCreate();
	assert(enc != NULL);
	int ret = dmtxEncodeDataMatrix(enc, strlen(str.c_str()), (unsigned char*)str.c_str());
	assert(ret == 1);

	int width = dmtxImageGetProp(enc->image, DmtxPropWidth);
	int height = dmtxImageGetProp(enc->image, DmtxPropHeight);
	int bytesPerPixel = dmtxImageGetProp(enc->image, DmtxPropBytesPerPixel);
	fprintf(stderr, "image width: %d, image height: %d, channels: %d\n", width, height, bytesPerPixel);
	assert(bytesPerPixel == 1 || bytesPerPixel == 3 || bytesPerPixel == 4);

	cv::Mat mat;
	if (bytesPerPixel == 1)
		mat = cv::Mat(height, width, CV_8UC1);
	else if (bytesPerPixel == 3)
		mat = cv::Mat(height, width, CV_8UC3);
	else
		mat = cv::Mat(height, width, CV_8UC4);

	mat.data = enc->image->pxl;

	std::string image_name = "E:/GitCode/BarCode_Test/test_images/data_matrix_encode.jpg";
	cv::imwrite(image_name, mat);

	dmtxEncodeDestroy(&enc);

	return 0;
}

int test_data_matrix_decode()
{
	std::string image_name = "E:/GitCode/BarCode_Test/test_images/data_matrix_encode.jpg";
	cv::Mat mat = cv::imread(image_name, 1);
	if (!mat.data) {
		fprintf(stderr, "read image error\n");
		return -1;
	}

	int width = mat.cols;
	int height = mat.rows;
	int channels = mat.channels();

	DmtxImage* img = dmtxImageCreate(mat.data, width, height, DmtxPack24bppRGB);
	if (!img) {
		fprintf(stderr, "dmtx image create fail\n");
		return -1;
	}

	DmtxDecode* dec = dmtxDecodeCreate(img, 1);
	if (!dec) {
		fprintf(stderr, "dmtx decode create fail\n");
		return -1;
	}

	DmtxRegion* reg = dmtxRegionFindNext(dec, nullptr);
	if (!reg) {
		fprintf(stderr, "dmtx region fail\n");
		return -1;
	}

	DmtxMessage* msg = dmtxDecodeMatrixRegion(dec, reg, DmtxUndefined);
	if (!msg) {
		fprintf(stderr, "dmtx decode matrix region fail\n");
		return -1;
	}

	std::string str(reinterpret_cast<char*>(msg->output));
	fprintf(stderr, "decode result: %s\n", str.c_str());

	dmtxMessageDestroy(&msg);
	dmtxRegionDestroy(&reg);
	dmtxDecodeDestroy(&dec);
	dmtxImageDestroy(&img);

	return 0;
}
其中test_data_matrix_encode函数用来生成二维码,如下:

test_data_matrix_decode函数用来简析上面生成的二维码,执行结果如下:

可看出,前后结果是一致的。


GitHubhttps://github.com/fengbingchun/BarCode_Test

  • 2
    点赞
  • 27
    收藏
    觉得还不错? 一键收藏
  • 5
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 5
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值