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:逆矩阵句柄

halcon-invert_matrix返回逆矩阵

 

 

 


在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:逆矩阵句柄

 

 

 

 

halcon-invert_matrix返回逆矩阵

上一篇:用turtle库画四朵随机的雪花


下一篇:【模板】矩阵快速幂