Efficient method of summing the values in multiple images on GPU?
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Christopher Desmond
am 27 Jun. 2016
Kommentiert: Brendan Hamm
am 7 Jul. 2016
I have a series of images sitting on GPU in a 71x71x5000 matrix.
Is there an efficient method of finding the sum of all elements in each 71x71 image on the GPU?
I wanted to do something similar to this but it isn't so simple.
sums = pagefun(@sum, images)
0 Kommentare
Akzeptierte Antwort
Brendan Hamm
am 28 Jun. 2016
I don't have a machine with the GPU capabilities with me right now, but I think this should work:
sums = pagefun(@(x) sum(x(:)),images);
7 Kommentare
Brendan Hamm
am 7 Jul. 2016
Unfortunately, I will not have access to my GPU machine for a few weeks here. I'd be more than happy to make some suggestions on your other post after this though. Likely someone else will get back to you before then.
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu GPU Computing finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!