Info

此问题已关闭。 请重新打开它进行编辑或回答。

image processing

1 次查看(过去 30 天)
Taleb Almajrbi
Taleb Almajrbi 2011-4-4
关闭: MATLAB Answer Bot 2021-8-20
hi all
how can i convert 2-D matrix(image) into vector. please reply me.
many thanks

回答(3 个)

Sean de Wolski
Sean de Wolski 2011-4-4
doc reshape
doc transpose
doc colon

Taleb Almajrbi
Taleb Almajrbi 2011-4-4
hi my answer is Sv1=reshape(F1,size(F1,1)* size(F1,2),1); So is this answer correct? please reply me.
thanks
  2 个评论
Sean de Wolski
Sean de Wolski 2011-4-4
Yes, this is correct. I would do it with numel since that's robust to higher dimensional matrices and faster:
Sv1=reshape(F1,numel(F1),1);
Sean de Wolski
Sean de Wolski 2011-4-4
Also:
Sv1 = F1(:); %works also.

Taleb Almajrbi
Taleb Almajrbi 2011-4-4
Hi All in fact i am doing project of image processing by using fourier trnsform where the 1step: apply the fft2 for the image z1. 2step convert the image into vector to discard half of fourier trnsformed image then show the last image of fourier trnsformed so this my code is it correct? please reply me/ thanks
Ft=fft2(Z1); %apply fourier trnsform function St=abs(Ft);
St1=reshape(Ft,size(Ft,1)* size(Ft,2),1);%convert fourier trnsformed image into vector St2=St1(1:floor(length(St1)/2)); %iscard half of Fourier spectrum
Fct=fftshift(Ft);
F11=log(1+abs(Fct));
subplot(236),imshow(F11, []),title('fft2 image for haning window image');

此问题已关闭。

Community Treasure Hunt

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

Start Hunting!

Translated by