Consider i have an image 'abc.jpeg' which is a RGB image how do i convert it to Grayscale without rgb2gray() func????

1 次查看(过去 30 天)
can someone give the manual code

采纳的回答

Nick Counts
Nick Counts 2016-11-2
编辑:Nick Counts 2016-11-2
You can see how TMW does it with
open rgb2gray
The entire function is available for you to read.
Also, there are many color map manipulation tools available. See the documentation for
colormap
gray <- This one especially
That should point you in the right direction. (There is example code in the help for these functions)
If you need to literally do the math yourself, it boils down to matrix manipulation. You could brute force it by adding the R, G, and B matrices together and dividing by 3. That would give you some approximation of a brightness matrix, which is essentially the image in grayscale.
You can experiment with how you weight each color channel to get different results (kind of like using filters with black and white film).
Good luck!

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Images 的更多信息

标签

尚未输入任何标签。

Community Treasure Hunt

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

Start Hunting!

Translated by