[C++] 객체 초기화 방법

프로그래밍/그 외2018. 4. 12. 18:43

안녕하세요. 개발자 드리머즈입니다.


https://stackoverflow.com/questions/49482647/convert-opencv-mat-to-texture2d에 보면



1
cv::Mat resizedMat(height, width, _currentFrame.type());
cs


위의 코드가 있습니다.

저게 무슨 이미인지 궁금했었는데 resizedMat이라는 Mat형의 객체를 만드는 코드인 것 같습니다.


1
cv::Mat resizedMat = Mat(height, width, _currentFrame.type());
cs

와 같은 의미라는 말입니다.



C++을 안쓴지가 너무나도 오래되서.. 참 새롭게 느껴지네요.

작성자

Posted by 드리머즈

관련 글

댓글 영역