how to compute min for image with black border?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
fred bnm
el 8 de Jun. de 2016
Comentada: Chad Greene
el 17 de Jun. de 2016
Hi, I have an image with black border in 2000 * 2000.after using min function the output is 0 or 1.that The minimum is related to border of the image that is black.how to compute min or max other than black border? my code is here.by this code output min is NaN.
img=imread('image.tif');
figure(1),imshow(img),title('original');
[M,N]=size(img);
for i=1:M
for j=1:N
if img(i,j)<1
img(i,j)=NaN;
end
end
end
minofimg=min(min(img));
0 comentarios
Respuesta aceptada
Chad Greene
el 8 de Jun. de 2016
What about
min(img(img~=0))
That is, the minimum value of img values that are not zero.
6 comentarios
Chad Greene
el 17 de Jun. de 2016
You can specify the range of rows and columns you want to keep. For example start with this image:
img = imread('cameraman.tif');
image(img)
colormap(gray)
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/183784/image.png)
And clip the first 49 rows, and the last 47 rows. Also clip the first 124 columns:
keeprows = 50:209;
keepcols = 125:256;
img_trimmed = img(keeprows,keepcols);
image(img_trimmed)
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/183786/image.png)
Más respuestas (0)
Ver también
Categorías
Más información sobre Image Processing Toolbox en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!