Intel® Integrated Performance Primitives
Deliberate problems developing high-performance vision, signal, security, and storage applications.

pixel-wise max and min

supercaspian
Beginner
517 Views
Does IPP provide pixel-wise max and min operation? That is, given two imagesA and B, assign imageC so that C(x,y) = max(A(x,y),B(x,y)) or min(A(x,y),B(x,y))? Thanks!
0 Kudos
4 Replies
Vladimir_Dudnik
Employee
517 Views
Hello,
we do not have such functions in IPP v5.1 but they are plaaned for the next version of IPP.
By the way, you can use similar functions from ippS library. In this case you need to call functions for each image's line.
Regards,
Vladimir
0 Kudos
Goran_N
Beginner
517 Views
Hello,
we do not have such functions in IPP v5.1 but they are plaaned for the next version of IPP.
By the way, you can use similar functions from ippS library. In this case you need to call functions for each image's line.
Regards,
Vladimir
I am using IPP v6.0 and looking for this functionality. It's not in yet?
Thanks.
0 Kudos
Chao_Y_Intel
Moderator
517 Views

Are these the functions you are looking for?

ippiMaxEvery_
ippiMinEvery_


Thanks,
Chao

0 Kudos
Goran_N
Beginner
517 Views
Quoting - Chao Yu (Intel)

Are these the functions you are looking for?

ippiMaxEvery_
ippiMinEvery_


Thanks,
Chao

Yes, great. Thanks!
0 Kudos
Reply