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

3 visualizaciones (últimos 30 días)
can someone give the manual code

Respuesta aceptada

Nick Counts
Nick Counts el 2 de Nov. de 2016
Editada: Nick Counts el 2 de Nov. de 2016
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!

Más respuestas (0)

Categorías

Más información sobre Modify Image Colors en Help Center y File Exchange.

Etiquetas

Aún no se han introducido etiquetas.

Community Treasure Hunt

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

Start Hunting!

Translated by