sri raj
Followers: 0 Following: 0
Estadística
6 Preguntas
0 Respuestas
CLASIFICACIÓN
264.275
of 295.569
REPUTACIÓN
0
CONTRIBUCIONES
6 Preguntas
0 Respuestas
ACEPTACIÓN DE RESPUESTAS
33.33%
VOTOS RECIBIDOS
0
CLASIFICACIÓN
of 20.247
REPUTACIÓN
N/A
EVALUACIÓN MEDIA
0.00
CONTRIBUCIONES
0 Archivos
DESCARGAS
0
ALL TIME DESCARGAS
0
CLASIFICACIÓN
of 154.105
CONTRIBUCIONES
0 Problemas
0 Soluciones
PUNTUACIÓN
0
NÚMERO DE INSIGNIAS
0
CONTRIBUCIONES
0 Publicaciones
CONTRIBUCIONES
0 Público Canales
EVALUACIÓN MEDIA
CONTRIBUCIONES
0 Temas destacados
MEDIA DE ME GUSTA
Feeds
Pregunta
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...
más de 8 años hace | 2 respuestas | 0
2
respuestasPregunta
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; ...
más de 8 años hace | 1 respuesta | 0
1
respuestaPregunta
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...
más de 8 años hace | 2 respuestas | 0
2
respuestasPregunta
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...
más de 8 años hace | 0 respuestas | 0
0
respuestasPregunta
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...
más de 8 años hace | 2 respuestas | 0
2
respuestasPregunta
i have array cv which contains 16 rows & 2 columns. i need to find index of any one column. for ex, ans=2 or ans=1. i tried the following code. but it doesn't give the correct answer.please send the code.thank u sir.
[ind]=find(cv(:,z),2)
más de 8 años hace | 1 respuesta | 0