octave-bug-tracker
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Octave-bug-tracker] [bug #41851] ind2rgb tests


From: Guillaume
Subject: [Octave-bug-tracker] [bug #41851] ind2rgb tests
Date: Fri, 14 Mar 2014 12:06:57 +0000
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:20.0) Gecko/20100101 Firefox/20.0

Follow-up Comment #5, bug #41851 (project octave):

Thanks for your comments. I used the code with uint8() and double() because it
is the exact one from the test cases.

Maybe I should use another example - in MATLAB you get this:

>> ind2rgb([-1 0 1 2 63 64 65 66],gray(64))
ans(:,:,1) =
         0         0         0    0.0159    0.9841    1.0000    1.0000   
1.0000
ans(:,:,2) =
         0         0         0    0.0159    0.9841    1.0000    1.0000   
1.0000
ans(:,:,3) =
         0         0         0    0.0159    0.9841    1.0000    1.0000   
1.0000


while Octave will complain of values -1 and 0, but is OK with values beyond
the size of the colormap:

octave> ind2rgb([1 2 63 64 65 66],gray(64))
ans =
ans(:,:,1) =
   0.00000   0.01587   0.98413   1.00000   1.00000   1.00000
ans(:,:,2) =
   0.00000   0.01587   0.98413   1.00000   1.00000   1.00000
ans(:,:,3) =
   0.00000   0.01587   0.98413   1.00000   1.00000   1.00000


So values larger than the size of the colormap are all reassigned to that
value (in Octave and MATLAB). And only MATLAB assigns an index of 1 to all
values less than 1.
It seems to me like a reasonable behaviour (symmetrical handling of both
extrema) and compatible to what happens when you display an image with a fixed
CLim axis (out of range values are assigned the first or last colors from the
colormap).

    _______________________________________________________

Reply to this item at:

  <http://savannah.gnu.org/bugs/?41851>

_______________________________________________
  Message sent via/by Savannah
  http://savannah.gnu.org/




reply via email to

[Prev in Thread] Current Thread [Next in Thread]