其他分享
首页 > 其他分享> > halcon-invert_matrix返回逆矩阵

halcon-invert_matrix返回逆矩阵

作者:互联网

在HDevelop中

create_matrix (3, 3, [1,2,3,4,5,6,7,8,9], MatrixID)

invert_matrix (MatrixID, 'general', 0, MatrixInvID)
*返回逆矩阵
*参数1:原矩阵
*参数4:逆矩阵句柄

 

 

 


在QtCreator中

    HTuple  hv_MatrixID, hv_MatrixInvID;

    CreateMatrix(3, 3, ((((((((HTuple(1).Append(2)).Append(3)).Append(4)).Append(5)).Append(6)).Append(7)).Append(8)).Append(9)),
          &hv_MatrixID);

    InvertMatrix(hv_MatrixID, "general", 0, &hv_MatrixInvID);
      //返回逆矩阵
      //参数1:原矩阵
      //参数4:逆矩阵句柄

 

 

 

 

标签:matrix,矩阵,invert,hv,halcon,MatrixID,MatrixInvID,Append
来源: https://www.cnblogs.com/liming19680104/p/15910540.html