Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support for more image processing functions (DSP-81) #39

Open
X-Ryl669 opened this issue Mar 11, 2022 · 1 comment
Open

Support for more image processing functions (DSP-81) #39

X-Ryl669 opened this issue Mar 11, 2022 · 1 comment

Comments

@X-Ryl669
Copy link

It would be great if there was support for some image processing operations like:

  1. Alpha blending (a bit like: out = x * alpha + y * (1 - alpha))
  2. Conversion from/to difference colorspace (RGB888 <=> RGB565)
  3. Optimized blitting (copying some memory area to some other memory area, maybe using the new DMA engine in ESP32 S3)
  4. Texture mapping ( out = bilinear(img, [x,y]) with x,y in |R not |N)
  5. etc...

Many LCD library have to deal with RGB565 format, and constantly changing from masked u16 (red = c & 0xF800 >> 8, etc...) to i16 for operations and back to u16 is very costly in terms of performance. There might be improvement to get here when using primitives from Xtensa (like MAC16, maybe).

@dmitry1945
Copy link
Collaborator

Hi @X-Ryl669 ,
We have a plans to include it in this year.

Regards,
Dmitry

@tom-borcin tom-borcin changed the title Support for more image processing functions Support for more image processing functions Apr 3, 2023
@github-actions github-actions bot changed the title Support for more image processing functions Support for more image processing functions (DSP-81) Apr 3, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants