photo

Laryssa Seabra


2013년부터 활동

Followers: 0   Following: 0

메시지

통계학

  • Thankful Level 1

배지 보기

Feeds

보기 기준

질문


How to copy one image to another (blank) pixel by pixel?
Xc = imread('IM1.jpg'); tam = size(Xc) sizex = tam(1); sizey = tam(2); blank = ones(sizex,sizey,3); for i=1...

대략 11년 전 | 답변 수: 2 | 0

2

답변

질문


Error: Subscript indices must either be real positive integers or logicals.
for i = 1:sizex; for j = 1:sizey; cor = Xc(i,j,1); blank( ([i j 1]*A) ) = cor; end end ...

대략 11년 전 | 답변 수: 0 | 0

0

답변

질문


How do I apply a transformation in a image
I'm using tform = maketform('affine',A); and it throws this error: A = 1.0e+15 * 0.000000000000001 ...

대략 11년 전 | 답변 수: 1 | 0

1

답변