필터 지우기
필터 지우기

Entering RGB values from a matrix

조회 수: 4 (최근 30일)
Ali Afshar Dodson
Ali Afshar Dodson 2014년 8월 22일
편집: dpb 2014년 8월 24일
Hi all,
I'm trying to plot an rgb matrix onto co-ordinates defined by Seed0Orange and Seed0Blue. However whilst the results work for i=1 when I try and cycle through the matrix I get "Error using plot Color value contains NaN, or element out of range 0.0 <= value <= 1.0". However there are no elements outside of the range or any NaNs. Any help would be much appreciated
for i = 1:5000
plot(Seed0Orange(1,i), Seed0Blue(1,i), 'kx','MarkerEdgeColor',[datanew(i,1) datanew(i,2) datanew(i,3)],...
'MarkerFaceColor',[datanew(i,1) datanew(i,2) datanew(i,3)]);
end
  댓글 수: 7
Ali Afshar Dodson
Ali Afshar Dodson 2014년 8월 24일
Looks like that might be the problem.
any(datanew>1)
ans =
1 0 1
EDU>> any(datanew<1)
ans =
1 1 1
dpb
dpb 2014년 8월 24일
편집: dpb 2014년 8월 24일
How was the array datanew generated?
If result of a floating point computation, it's always possible for the above to occur. To fix the issue can use several alternatives, probably the simplest is simply to clip the result on the upper bound by
datanew=min(datanew,1);
To find which one(s) are the issue use find -- perhaps there's a slight error in the computation or another reason for the problem that you want to correct other than by the above; can't tell that from here, of course.
The second test above was intended to be <0 but that's not the case as I'd neglected that the previous result of min was shown to be 0.05. The result of any<1 is as expected of course, what would show the problem would be all<1 which will show 0 1 0, the complement of any>1.

댓글을 달려면 로그인하십시오.

답변 (1개)

Image Analyst
Image Analyst 2014년 8월 24일
(Regarding dpb's comment) You can find out which ones are above or below via the second return argument of min() or max(). Why not just clip
datanew(datanew>1)=1;
datanew(datanew<0)=0;
before you enter the for loop and pass it into plot()?
I know I asked for your data before (above in the comments) but I haven't seen it yet, or any code as to how you created it. How was your colormap, datanew, generated?

카테고리

Help CenterFile Exchange에서 Annotations에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by