Halcon如何保存仿射变换矩阵

Posted 211code

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Halcon如何保存仿射变换矩阵相关的知识,希望对你有一定的参考价值。

这里我们通过序列化来实现的,如下图,写到硬盘的HomMat2D_1内容和从硬盘里HomMat2D_2读出的内容一致,源代码在图片下方。

技术分享图片

Halcon源代码:

hom_mat2d_identity (HomMat2DIdentity)
hom_mat2d_rotate (HomMat2DIdentity, -0.3, 256, 256, HomMat2D_1)


serialize_hom_mat2d (HomMat2D_1, SerializedItemHandle)
open_file (‘1.mat‘, ‘output_binary‘, FileHandle) 
fwrite_serialized_item (FileHandle, SerializedItemHandle) 
close_file (FileHandle)

 

open_file (‘1.mat‘, ‘input_binary‘, FileHandle) 
fread_serialized_item (FileHandle, SerializedItemHandle) 
deserialize_hom_mat2d (SerializedItemHandle, HomMat2D_2) 
close_file (FileHandle)

更多Halcon/Visionpro视频教程和资料,请访问 重码网,网址: http://www.211code.com

 









以上是关于Halcon如何保存仿射变换矩阵的主要内容,如果未能解决你的问题,请参考以下文章

Halcon二维仿射变换实例探究

halcon几何变换(仿射变换)

OpenGL基础仿射变换原理解析

halcon的仿射变换问题

Halcon 学习笔记3 仿射变换

【转】仿射变换及其变换矩阵的理解