# LearningOpenCV **Repository Path**: graysnail6/LearningOpenCV ## Basic Information - **Project Name**: LearningOpenCV - **Description**: LearningOpenCV3学习笔记和代码 - **Primary Language**: C++ - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 1 - **Forks**: 0 - **Created**: 2019-03-04 - **Last Updated**: 2021-03-17 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # LearningOpenCV #### 介绍 LearningOpenCV3学习笔记和代码 仅作为对学习的记录 #### 编译 简单的单文件例子,直接采用命令行编译 ```bash g++ example4_3.cpp -o run `pkg-config --cflags --libs opencv` ``` 9-5的示例程序,使用 cmake 构建 ```bash mkdir build cd build cmake .. make ./example9_5 ../data/quanlv.mp4 ```