added comments

This commit is contained in:
FT24 Intel NUC ACU 2025-06-25 15:49:28 +02:00
parent b43d2da209
commit 0bc5e631d6

View File

@ -335,7 +335,7 @@
img.copyTo(cv_input_umat);
/* do the undistort */
cv::remap (cv_input_umat, cv_output_umat, undist->map1.getUMat(cv::ACCESS_READ), undist->map2.getUMat(cv::ACCESS_READ), cv::INTER_LINEAR);
cv::remap (cv_input_umat, cv_output_umat, undist->map1, undist->map2, cv::INTER_LINEAR);
/* UMat output back to Mat */
cv_output_umat.copyTo(outimg);