renamed hello world example

This commit is contained in:
Joachim
2020-06-08 17:51:19 +02:00
parent c2221142fd
commit db545bb173
159 changed files with 4 additions and 34 deletions

View File

@ -1,3 +0,0 @@
# Esp32 OpenCV basic
This is a basic example to test that OpenCV works correctly. The project only creates some matrices and apply basic operations on them.

View File

@ -1,30 +0,0 @@
// Helper file to include dispatched functions declaration:
//
// Usage:
// #define CV_CPU_SIMD_FILENAME "<filename>.simd.hpp"
// #define CV_CPU_DISPATCH_MODE AVX2
// #include "opencv2/core/private/cv_cpu_include_simd_declarations.hpp"
// #define CV_CPU_DISPATCH_MODE SSE2
// #include "opencv2/core/private/cv_cpu_include_simd_declarations.hpp"
#ifndef CV_DISABLE_OPTIMIZATION
#ifdef _MSC_VER
#pragma warning(disable: 4702) // unreachable code
#endif
#endif
#ifndef CV_CPU_OPTIMIZATION_DECLARATIONS_ONLY
#define CV_CPU_OPTIMIZATION_DECLARATIONS_ONLY
#endif
#undef CV_CPU_OPTIMIZATION_NAMESPACE_BEGIN
#undef CV_CPU_OPTIMIZATION_NAMESPACE_END
#define CV_CPU_OPTIMIZATION_NAMESPACE_BEGIN namespace __CV_CAT(opt_, CV_CPU_DISPATCH_MODE) {
#define CV_CPU_OPTIMIZATION_NAMESPACE_END }
#include CV_CPU_SIMD_FILENAME
#undef CV_CPU_OPTIMIZATION_NAMESPACE_BEGIN
#undef CV_CPU_OPTIMIZATION_NAMESPACE_END
#undef CV_CPU_DISPATCH_MODE

View File

@ -2,4 +2,4 @@
# CMakeLists in this exact order for cmake to work correctly
cmake_minimum_required(VERSION 3.5)
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
project(esp_opencv_basic)
project(hello_opencv)

View File

@ -0,0 +1,3 @@
# Esp32 Hello OpenCV
This is a basic example to test that OpenCV works correctly on the ESP32. The project only creates some matrices and apply basic operations on them.

Some files were not shown because too many files have changed in this diff Show More