This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <iostream> | |
#include <string> | |
#include <sstream> | |
using namespace std; | |
// OpenCV includes | |
#include <opencv2/core.hpp> | |
#include <opencv2/highgui.hpp> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cmake_minimum_required(VERSION 2.8) | |
project(guiaOpenCV) | |
# Use with use custom OpenCV version | |
#set(OpenCV_DIR <folder-opencv>/opencv/build) | |
# Requires OpenCV | |
find_package(OpenCV REQUIRED) | |
# Show a message with the opencv version detected | |
MESSAGE("OpenCV version : ${OpenCV_VERSION}") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"configurations": [ | |
{ | |
"browse": { | |
"databaseFilename": "", | |
"limitSymbolsToIncludedHeaders": true | |
}, | |
"name": "Linux", | |
"includePath": [ | |
"${workspaceFolder}/**", |