From 40843d06aba0fa16fdeb75b1262d6a901048854a Mon Sep 17 00:00:00 2001 From: Alexander Smorkalov Date: Fri, 7 Mar 2025 16:24:20 +0300 Subject: [PATCH] Disable CV_SIMD_SCALABLE for demosaicing as the implementation is not efficient on RISC-V RVV. --- modules/imgproc/src/demosaicing.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/imgproc/src/demosaicing.cpp b/modules/imgproc/src/demosaicing.cpp index 68816a6fd6..7916d5a319 100644 --- a/modules/imgproc/src/demosaicing.cpp +++ b/modules/imgproc/src/demosaicing.cpp @@ -129,7 +129,7 @@ public: static int bayer2Gray(const uchar* bayer, int bayer_step, uchar* dst, int width, int bcoeff, int gcoeff, int rcoeff) { -#if CV_SIMD || CV_SIMD_SCALABLE +#if CV_SIMD #if CV_NEON uint16x8_t masklo = vdupq_n_u16(255); const uchar* bayer_end = bayer + width;