필터 지우기
필터 지우기

image processing, data stimulation

조회 수: 1 (최근 30일)
mohammed abdul wadood
mohammed abdul wadood 2018년 3월 19일
댓글: mohammed abdul wadood 2018년 3월 19일
hi, i want to generation an matrix that simulate an image of size 198*211*3 so i used this code:
clc
close all
clear all
for i=1:4;
for j=1:4;
x(i,j)=rand*100;
if x(i,j)>=0 && x(i,j)<=255;
x
end
end
end
is this work correct? thank you
  댓글 수: 1
Walter Roberson
Walter Roberson 2018년 3월 19일
Code that includes "clear all" is almost never correct.

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

채택된 답변

Walter Roberson
Walter Roberson 2018년 3월 19일
x = randi([0 255], 198, 211, 3, 'uint8');
  댓글 수: 1
mohammed abdul wadood
mohammed abdul wadood 2018년 3월 19일
in facet i used this solution like this:
x=randi([0 255],198,211)
but I thought it's wrong; but now you Improve it in your solution, thank you sir, thank you so much.

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Image Processing Toolbox에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by