sri raj
自 2016 起处于活动状态
Followers: 0 Following: 0
Feeds
提问
Compute block-wise standard deviation
i have converted 80*80 image into blocks. next i converted blocks to linear array. now i need to find standard deviation of firs...
8 years 前 | 2 个回答 | 0
2
个回答提问
i have an array, named ersum which have 20000 columns (1*20000). i need to find minimum value of first 50 columns. next minimum value of next 50 columns and so on upto last 50 in that 20000 columns. please send suitable code. thank you sir.
if ersum(:,counter)<ersum(:,counter+1) minind(:,k)=counter; else minind(:,k)=counter+1; ...
8 years 前 | 1 个回答 | 0
1
个回答提问
i had converted image into blocks. I converted blocks to linear array. Next i calculated mean values for first 8 arrays as given below. now i want to calculate values by using the formula: sum(linear array(:,1)-mean(:,1)).^2. please send code.
for i=1:4:nr-3 for j=1:4:nc-3 block=I(i:i+3,j:j+3); %convert 4X4...
8 years 前 | 2 个回答 | 0
2
个回答提问
i had converted image into blocks. I converted blocks to linear array. Next i calculated mean values for first 8 arrays as given below. now i want to calculate error values by using the formula: sum(linear array(:,1)-mean(:,1)).^2. please send code.
for i=1:4:nr-3 for j=1:4:nc-3 block=I(i:i+3,j:j+3); %convert 4X4 into 16X1 colum...
8 years 前 | 0 个回答 | 0
0
个回答提问
i had converted image into blocks. I converted blocks to linear array. Next i calculated mean values for first 8 arrays as given below. now i want to convert mean values to linear array again. please send suitable code. please don't ignore it. help .
for i=1:4:16 for j=1:4:16 block=I(i:i+3,j:j+3); %convert 4X4 int...
8 years 前 | 2 个回答 | 0