mirror of
https://github.com/opencv/opencv.git
synced 2025-07-30 17:37:05 +08:00
Disable CV_SIMD_SCALABLE for demosaicing as the implementation is not efficient on RISC-V RVV.
This commit is contained in:
parent
648424eaf2
commit
40843d06ab
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user