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?

댓글 수: 1

KALYAN ACHARJYA
KALYAN ACHARJYA 2019년 2월 16일
Is this Matlab ralated question?
Check here for different Maths Sysmbols

댓글을 달려면 로그인하십시오.

 채택된 답변

Image Analyst
Image Analyst 2019년 2월 16일
편집: Image Analyst 2019년 2월 17일

2 개 추천

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

Image Analyst
Image Analyst 2019년 2월 17일
Since N is 4 this appears to be a sliding window operation, like a convolution. So the whole thing can be done with conv2() like I showed you in your other question. Then just threshold to values above or below zero to get the thresholded images -- the alpha and beta images. There is no need to round down with floor to create the images.
Elysi Cochin
Elysi Cochin 2019년 2월 17일
편집: Elysi Cochin 2019년 2월 17일
sir what about the variable t
Image Analyst
Image Analyst 2019년 2월 17일
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.

댓글을 달려면 로그인하십시오.

추가 답변 (1개)

Stephen23
Stephen23 2019년 2월 16일
편집: Stephen23 2019년 2월 16일

2 개 추천

카테고리

질문:

2019년 2월 16일

댓글:

2019년 2월 17일

Community Treasure Hunt

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

Start Hunting!

Translated by