Please can someone explain what happens in the below code cb and cr are chrominance in red and blue channels bmean and rmean is the mean value of cb and cr x = [(cb ā bmean), (cr ā rmean)] how is becomes a single image, what does that comma do there?
John Michell answered .
2025-11-20
x1 = (cb − bmean); x2= (cr − rmean); subplot(211), imshow(x1); subplot(212);imshow(x2)