how to use crop using coordinate?
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
reza hamzeh
el 24 de En. de 2020
Editada: Walter Roberson
el 24 de En. de 2020
hi. i want to crop the red square from this pic using coordinate. lets suppose coordinate of the top-left point of the red square is w/2 and h/2
where w and h are width and hight of the pic respectively. and width and hight of the red square are 20 pixel. this is my code but it dosent work. plz help me.
pic=imread('b.jpg');
[w, h, numberOfColorChannels] = size(pic);
I=imcrop(pic,[w*0.5 h*0.5 20 20]);
imshow(I)

2 comentarios
Respuesta aceptada
Walter Roberson
el 24 de En. de 2020
Editada: Walter Roberson
el 24 de En. de 2020
You need
[h, w, numberOfColorChannels] = size(pic);
not
[w, h, numberOfColorChannels] = size(pic);
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Surface and Mesh Plots en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!