mirror of
https://gitcode.com/gh_mirrors/es/esp32-opencv.git
synced 2025-08-06 18:24:38 +08:00
Added code optimization for OpenCV compilation
- Changed -DCV_DISABLE_OPTIMIZATION to OFF - This re-enable code optimization (dispatched code/intrinsics/loop unrolling/etc)
This commit is contained in:
@ -81,7 +81,7 @@ void test_spiffs()
|
||||
fgets(line, sizeof(line), f);
|
||||
fclose(f);
|
||||
|
||||
printf("Read from file: '%s'", line);
|
||||
printf("Read from file: '%s'\n", line);
|
||||
|
||||
/* Images reading/writing tests */
|
||||
Mat src;
|
||||
@ -203,7 +203,7 @@ void app_main(void)
|
||||
ESP_LOGI(TAG, "Image read of %dx%dx%d, with %d pixel depth", src.rows, src.cols, src.channels(), src.depth());
|
||||
|
||||
/* Conversions and thresholds tests */
|
||||
//test_thresholds(src);
|
||||
test_thresholds(src);
|
||||
disp_mem_infos();
|
||||
|
||||
/* Blurring tests */
|
||||
|
Reference in New Issue
Block a user