- Mastering OpenCV 4
- Roy Shilkrot David Millán Escrivá
- 177字
- 2021-07-02 14:47:34
Conventions used
There are a number of text conventions used throughout this book.
CodeInText: Indicates code words in text, database table names, folder names, filenames, file extensions, pathnames, dummy URLs, user input, and Twitter handles. Here is an example: "To see the remaining space on your SD card, run df -h | head -2."
A block of code is set as follows:
Mat bigImg;
resize(smallImg, bigImg, size, 0,0, INTER_LINEAR);
dst.setTo(0);
bigImg.copyTo(dst, mask);
When we wish to draw your attention to a particular part of a code block, the relevant lines or items are set in bold:
Mat bigImg;
resize(smallImg, bigImg, size, 0,0, INTER_LINEAR);
dst.setTo(0);
bigImg.copyTo(dst, mask);
Any command-line input or output is written as follows:
sudo apt-get purge -y wolfram-engine
Bold: Indicates a new term, an important word, or words that you see on screen. For example, words in menus or dialog boxes appear in the text like this. Here is an example: "Navigate to Media | Open Network Stream."
Warnings or important notes appear like this.
Tips and tricks appear like this.
推薦閱讀
- 零起步玩轉掌控板與Mind+
- 零基礎學Scratch少兒編程:小學課本中的Scratch創意編程
- Java持續交付
- Magento 1.8 Development Cookbook
- 51單片機C語言開發教程
- Java網絡編程實戰
- Python Digital Forensics Cookbook
- Redmine Cookbook
- Three.js權威指南:在網頁上創建3D圖形和動畫的方法與實踐(原書第4版)
- Android高級開發實戰:UI、NDK與安全
- Python編程基礎教程
- Learning ECMAScript 6
- Ubuntu Server Cookbook
- Getting Started with the Lazarus IDE
- Unity 3D UI Essentials