speedup for-loops by bsxfun?

1 Ansicht (letzte 30 Tage)
BY H
BY H am 10 Aug. 2021
Kommentiert: Stephen23 am 11 Aug. 2021
Is any solution to speedup my following code?
Supposed I have an RGB image, for each pixel, I want to find the closest color in given palette (k colors) for quantization.
PALETTE = [c1R, c1G, c1B; ....; ckR, ckG, ckB];
for i = 1:size(img,1)
for j = 1:size(img,2)
% find the closest color from PALETTE
end
end

Antworten (1)

Walter Roberson
Walter Roberson am 11 Aug. 2021
rgb2ind() does that, at least for some definition of "closest". You need to be specific about how you want to compute "closest" when it comes to colour.
If the task is to quantize the colors, then
Q = reshape(PALETTE(rgb2ind(YourImage, PALETTE),:),size(YourImage));
  1 Kommentar
Stephen23
Stephen23 am 11 Aug. 2021
'...at least for some definition of "closest" '
Just not a very perceptual one: https://en.wikipedia.org/wiki/Color_difference

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Modify Image Colors 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!

Translated by