79713089

Date: 2025-07-24 09:12:25
Score: 1.5
Natty:
Report link

Create a Matrix:

cv::Mat Matrix= (cv::Mat_<float>(3, 3) << 0, 1, 0, 1, -4, 1, 0, 1, 0);

Use the Mat_ Object to access the values:

cv::Mat_<float> Matrixvals= Matrix;

Matrixvals(1,0) = 2;

Matrixvals(1,1) = -8;

Matrixvals(1,2) = 2;

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: jamk