Skip to content

Commit

Permalink
Merge pull request #52 from t13801206/develop
Browse files Browse the repository at this point in the history
Fix typos
  • Loading branch information
yoyoyo-yo authored Sep 2, 2019
2 parents 3830576 + 53aabd0 commit 5e20de1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Question_01_10/answers_cpp/answer_1.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
int main(int argc, const char* argv[]){
cv::Mat img = cv::imread("imori.jpg", cv::IMREAD_COLOR);

int width = img.rows;
int height = img.cols;
int width = img.cols;
int height = img.rows;

cv::Mat out = img.clone();

Expand Down

0 comments on commit 5e20de1

Please sign in to comment.