Borrar filtros
Borrar filtros

get grayImage from bitImage

4 visualizaciones (últimos 30 días)
Elysi Cochin
Elysi Cochin el 17 de Feb. de 2019
Respondida: Image Analyst el 17 de Feb. de 2019
% Compute mean in 4-by-4 blocks
kernel = ones(4);
meanImage = conv2(double(grayImage), kernel, 'same') / numel(kernel);
% Compare actual image to mean image.
bitImage = grayImage >= meanImage;
From the bitImage is it possible to get back grayImage

Respuesta aceptada

Image Analyst
Image Analyst el 17 de Feb. de 2019
No. There is no way to obtain the original gray level image from a binary image that has been created by thresholding that gray scale image. If you want the gray scale image later, be sure to save your gray scale image variable.

Más respuestas (0)

Categorías

Más información sobre Image Processing Toolbox en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by