Skip to content

Commit

Permalink
minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
sangho-vision committed Aug 2, 2018
1 parent e05e295 commit 9d2a495
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions practice2_tutorial/4_template_matching.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@
"img = cv2.imread('../images/messi.jpg')\n",
"img2 = img.copy()\n",
"template = cv2.imread('../images/messi_face.jpg')\n",
"w, h, _ = template.shape\n",
"h, w, _ = template.shape\n",
"\n",
"plt.imshow(cv2.cvtColor(img, cv2.COLOR_BGR2RGB))\n",
"plt.figure()\n",
Expand Down Expand Up @@ -367,7 +367,7 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython2",
"version": "2.7.6"
"version": "2.7.12"
}
},
"nbformat": 4,
Expand Down

0 comments on commit 9d2a495

Please sign in to comment.