- OpenCV 3 Blueprints
- Joseph Howse Steven Puttemans Quan Hua Utkarsh Sinha
- 196字
- 2021-08-05 16:35:52
Conventions
In this book, you will find a number of text styles that distinguish between different kinds of information. Here are some examples of these styles and an explanation of their meaning.
Code words in text, database table names, folder names, filenames, file extensions, pathnames, dummy URLs, user input, and Twitter handles are shown as follows: "You can find the OpenCV software by going to http://opencv.org and clicking on the download link."
A block of code is set as follows:
Mat input = imread("/data/image.png", LOAD_IMAGE_GRAYSCALE); GaussianBlur(input, input, Size(7,7), 0, 0); imshow("image", input); waitKey(0);
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 input = imread("/data/image.png", LOAD_IMAGE_GRAYSCALE);
GaussianBlur(input, input, Size(7,7), 0, 0);
imshow("image", input);
waitKey(0);
Any command-line input or output is written as follows:
New terms and important words are shown in bold. Words that you see on the screen, for example, in menus or dialog boxes, appear in the text like this: "Clicking the Next button moves you to the next screen."
Note
Warnings or important notes appear in a box like this.
Tip
Tips and tricks appear like this.
- PHP動態網站程序設計
- 玩轉Scratch少兒趣味編程
- 自然語言處理實戰:預訓練模型應用及其產品化
- MATLAB圖像處理超級學習手冊
- 零基礎學Scratch少兒編程:小學課本中的Scratch創意編程
- Blender 3D Incredible Machines
- SAS數據統計分析與編程實踐
- C語言實驗指導及習題解析
- Unity 2D Game Development Cookbook
- Microsoft 365 Certified Fundamentals MS-900 Exam Guide
- Spring MVC+MyBatis開發從入門到項目實踐(超值版)
- Learning Modular Java Programming
- Mastering Python Design Patterns
- 計算機應用基礎(第二版)
- 現代C++語言核心特性解析