Image edge to black
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Hi,
Anyone develop algorithm to change the outer pixel(edge) become full black ? like a frame.
Thanks
1 comentario
Respuesta aceptada
Image Analyst
el 21 de Ag. de 2012
How about
imageArray(1,:) = 0;
imageArray(end,:) = 0;
imageArray(:,1) = 0;
imageArray(:,end) = 0;
0 comentarios
Más respuestas (0)
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!