1
0
mirror of https://github.com/opencv/opencv.git synced 2026-07-31 08:13:04 +04:00

Add inline code backticks

This commit is contained in:
Yuval Langer
2016-09-06 12:48:13 +03:00
committed by Maksim Shabunin
parent 19464a3ed8
commit 4ac5f37d49
2 changed files with 9 additions and 9 deletions
@@ -36,7 +36,7 @@ img = cv2.imread('messi5.jpg',0)
**warning**
Even if the image path is wrong, it won't throw any error, but print img will give you None
Even if the image path is wrong, it won't throw any error, but `print img` will give you `None`
### Display an image
@@ -109,8 +109,8 @@ elif k == ord('s'): # wait for 's' key to save and exit
**warning**
If you are using a 64-bit machine, you will have to modify k = cv2.waitKey(0) line as follows :
k = cv2.waitKey(0) & 0xFF
If you are using a 64-bit machine, you will have to modify `k = cv2.waitKey(0)` line as follows :
`k = cv2.waitKey(0) & 0xFF`
Using Matplotlib
----------------