what does the L-shaped bracket mean?
27 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Elysi Cochin
el 16 de Feb. de 2019
Comentada: Image Analyst
el 17 de Feb. de 2019

N1 = N2 = 4
xi = ith pixel of 4 x 4 block

What does the 'L - shaped bracket' mean? How to write code for alpha and beta?
Respuesta aceptada
Image Analyst
el 16 de Feb. de 2019
Editada: Image Analyst
el 17 de Feb. de 2019
Just consider them as regular, normal brackets, or ignore them entirely.
xBar = mean(x(:));
alpha = mean(x(x >= xBar)); % Mean of x where x >= xBar
beta = mean(x(x < xBar)); % Mean of x where x < xBar
3 comentarios
Image Analyst
el 17 de Feb. de 2019
t is the number of elements in the block, which is 16 for a 4x4 block, or the number of pixels in the image if you're doing it over the whole image. Like I said, since it's only 4x4 I think it's a sliding window and you'd just use the code I gave you in the other answer and not even use t.
Ver también
Categorías
Más información sobre Image Processing Toolbox en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!