From 2f926c1a552f4c19ec0cd500fd97075f5a13abd5 Mon Sep 17 00:00:00 2001 From: Noureldin Abdelfattah Date: Fri, 11 Jul 2025 15:31:41 +0100 Subject: [PATCH] Fix Replace unsupported COLOR_YUV2RGBA/BGRA with CX_YUV2RGBA/BGRA --- scripts/benchmark/benchmarks.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/benchmark/benchmarks.txt b/scripts/benchmark/benchmarks.txt index 7427c3e18..4001aef9a 100755 --- a/scripts/benchmark/benchmarks.txt +++ b/scripts/benchmark/benchmarks.txt @@ -24,8 +24,8 @@ BGRA2YUV: opencv_perf_imgproc '*cvtColor8u/*' '($PIXEL_FORMAT, CX_BGRA2YUV YUV2RGB: opencv_perf_imgproc '*cvtColor8u/*' '($PIXEL_FORMAT, COLOR_YUV2RGB)' YUV2BGR: opencv_perf_imgproc '*cvtColor8u/*' '($PIXEL_FORMAT, COLOR_YUV2BGR)' -YUV2RGBA: opencv_perf_imgproc '*cvtColor8u/*' '($PIXEL_FORMAT, COLOR_YUV2RGBA)' -YUV2BGRA: opencv_perf_imgproc '*cvtColor8u/*' '($PIXEL_FORMAT, COLOR_YUV2BGRA)' +YUV2RGBA: opencv_perf_imgproc '*cvtColor8u/*' '($PIXEL_FORMAT, CX_YUV2BGRA)' +YUV2BGRA: opencv_perf_imgproc '*cvtColor8u/*' '($PIXEL_FORMAT, CX_YUV2RGBA)' BinaryThreshold: opencv_perf_imgproc '*ThreshFixture_Threshold.Threshold/*' '($PIXEL_FORMAT, 8UC1, THRESH_BINARY)' -- GitLab