1
0
mirror of https://github.com/2martens/uni.git synced 2026-05-06 11:26:25 +02:00

Changed constructor to prevent IDE error

Signed-off-by: Jim Martens<github@2martens.de>
This commit is contained in:
2017-04-28 15:23:08 +02:00
parent 65e01e1008
commit 404f650cc6

View File

@ -4,7 +4,8 @@
int main() int main()
{ {
// exercise 1 // exercise 1
cv::Mat M = (cv::Mat_<uchar>(4, 4) << 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16); float g[] = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16};
cv::Mat M(4, 4, CV_8UC1, g);
std::cout << M << std::endl << std::endl; std::cout << M << std::endl << std::endl;
// exercise 2 // exercise 2
M.at<uchar>(1, 2) = 100; M.at<uchar>(1, 2) = 100;