How do I perform a fast pixellation filter on an image?

后端 未结 6 545
心在旅途
心在旅途 2020-12-05 03:46

I have a little problem with my pixellation image processing algorithm.

I load the image from the beginning into an array of type unsigned char* After t

6条回答
  •  囚心锁ツ
    2020-12-05 04:24

    I agree with @Xorlev. The only thing I would hope is (provided that you are using a lot of floating point operations) that you are building for arm6 and using thumb isa. In that case compile without -mthumb option and the performance might improve.

提交回复
热议问题