- OpenCV By Example
- Prateek Joshi David Millán Escrivá Vinícius Godoy
- 170字
- 2021-07-23 14:41:57
Conventions
In this book, you will find a number of styles of text that distinguish between different kinds of information. Here are some examples of these styles, and an explanation of their meaning.
Code words in text are shown as follows: "For a basic project based on an executable build from one source code file, a two line CMakeLists.txt
file is all that is needed ."
A block of code is set as follows:
#include "opencv2/opencv.hpp" using namespace cv; int main(int, char** argv) { FileStorage fs2("test.yml", FileStorage::READ); Mat r; fs2["Result"] >> r; std::cout << r << std::endl; fs2.release(); return 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:
@Path("departments")
@Produces(MediaType.APPLICATION_JSON)
public class DepartmentResource{
//Class implementation goes here...
}
Any command-line input or output is written as follows:
C:\> setx -m OPENCV_DIR D:\OpenCV\Build\x64\vc11
New terms and important words are shown in bold. Words that you see on the screen, in menus or dialog boxes for example, appear in the text like this: "To show the control panel we can push the last tool bar button, right click in any part of QT Window and select Display properties window."
Note
Warnings or important notes appear in a box like this.
Tip
Tips and tricks appear like this.
- SQL Server 從入門到項(xiàng)目實(shí)踐(超值版)
- Python 3.7網(wǎng)絡(luò)爬蟲快速入門
- Visual FoxPro程序設(shè)計(jì)教程(第3版)
- CockroachDB權(quán)威指南
- 自己動(dòng)手實(shí)現(xiàn)Lua:虛擬機(jī)、編譯器和標(biāo)準(zhǔn)庫
- 造個(gè)小程序:與微信一起干件正經(jīng)事兒
- Mastering QGIS
- 面向?qū)ο蟪绦蛟O(shè)計(jì)(Java版)
- Symfony2 Essentials
- 深入淺出Serverless:技術(shù)原理與應(yīng)用實(shí)踐
- Apache Kafka Quick Start Guide
- Mastering JavaScript High Performance
- C語言程序設(shè)計(jì)
- Regression Analysis with Python
- Python數(shù)據(jù)科學(xué)實(shí)踐指南