Skip to content

Instantly share code, notes, and snippets.

#include <iostream>
#include <string>
#include <sstream>
using namespace std;
// OpenCV includes
#include <opencv2/core.hpp>
#include <opencv2/highgui.hpp>
@diogon01
diogon01 / CMakeLists.txt
Last active August 20, 2021 18:09
CMakeLists.txt
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}")
@diogon01
diogon01 / c_cpp_properties.json
Last active July 2, 2021 22:12
ROS Vscode configurarion
{
"configurations": [
{
"browse": {
"databaseFilename": "",
"limitSymbolsToIncludedHeaders": true
},
"name": "Linux",
"includePath": [
"${workspaceFolder}/**",