Borrar filtros
Borrar filtros

identify valid and invalid image

3 visualizaciones (últimos 30 días)
Elysi Cochin
Elysi Cochin el 5 de En. de 2013
i execute a code and get two types of output.... one is valid and the other is invalid.... the valid output image has content content in it.... whereas the invalid image is totally black....
based on this information what can i do to display a message that the image is valid or invalid.... some condition check so that i can display the message correctly.... please can someone reply.....

Respuesta aceptada

Walter Roberson
Walter Roberson el 5 de En. de 2013
if ~any(TheOutputImage(:))
msgdlg('Outside of a dog, a book is man''s best friend. Inside of a dog, it is too dark to read.');
else
......
end
  4 comentarios
Elysi Cochin
Elysi Cochin el 5 de En. de 2013
Editada: Elysi Cochin el 5 de En. de 2013
sir i got it... thank u sir... i wrote the display outside the for also... thank u sir...
Walter Roberson
Walter Roberson el 5 de En. de 2013
Put a breakpoint in at the "if ~any" and run your code again with something that creates an invalid image. Single-step through the code. I think you will find that the black image is not displayed by this section of code. If you continue single-stepping you will find the place that is displaying it.

Iniciar sesión para comentar.

Más respuestas (0)

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by