rgb to yuv420 algorithm efficiency

后端 未结 5 2003
北荒
北荒 2021-01-30 10:05

I wrote an algorithm to convert a RGB image to a YUV420. I spend a long time trying to make it faster but I haven\'t find any other way to boost its efficiency, so now I turn to

5条回答
  •  囚心锁ツ
    2021-01-30 10:31

    You can use SSE or 3dNow assembly codes to further boost the performance.

    As for c++ code, I think it is hard to improve based on your current code.

提交回复
热议问题