my example.
img is dlib image variable. img22 is opencv image variable.
cv::Mat img22 = dlib::toMat(img);
for(int i=0; i<250; i++)
{
for(int j=0; j<250; j++)
{
mexPrintf("%d ",img22.at<unsigned char>(i,j));
}
mexPrintf("\n");
}
'C,C++ > OpenCV' 카테고리의 다른 글
OpenCV 4.2.0이 정식 릴리즈되었습니다. 이번 릴리즈에서 드디어 CUDA를 이용하여 DNN 모듈을 실행할 수 있게 되었네요. 대박입니다! (0) | 2019.12.23 |
---|---|
“The program can't start because opencv_world300.dll is missing from your computer” error in C++ (0) | 2016.10.19 |
Print out the values of a (Mat) matrix in OpenCV C++ (0) | 2016.09.28 |
OpenCV 3.1 개발환경 셋팅 (0) | 2016.09.19 |
OpenCV 3.0 + Visual Studio 2013 으로 컴파일하기 (0) | 2016.09.13 |