how to extract the bounding box area as segmented object from video frame?...I have been trying imcrop but the rectangle cropped out is not as same as bbox rectangle.
10 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
I am using computer vision toolbox.. this is the code..Is there any other way of doing it??
please help..thankyou in advance!
crop=bbox(:,); % all bbox that hav objects
crop=transpose(crop); % bbox as crop in row major as for rectangles
num = size(crop,1);
for k = 1: num
crop(k,2)=crop(k,2)-crop(k,3); % ymin is required but ymax is in upper left corner
temp=crop(k,3); % swapping height and width as required in rectangle! crop(k,3)=crop(k,4); crop(k,4)=temp;
[Xtest,Ytest,itest,Rtest]=imcrop(image,crop(k,:));
imshow(itest);
0 comentarios
Respuesta aceptada
Image Analyst
el 24 de Abr. de 2013
I don't know what bbox is. Don't use image as the name of your image variable because it's the name of a built-in function. Simply crop like this:
croppedImage = imcrop(fullImage, [leftColumn, topRow, numberOfColumns, numberOfRows]);
You have to figure out how to get leftColumn, topRow, numberOfColumns, numberOfRows.
2 comentarios
Image Analyst
el 29 de Abr. de 2013
I don't know what step() does, but in all the MATLAB functions that I can think of when it wants a rectangle, it's [xStart, yStart, xSize, ySize]. Check with the documentation for step() - for example make sure it's not using row, column instead of x,y.
Más respuestas (1)
Anand
el 29 de Abr. de 2013
It seems to work for me...The rectangle specification provided by the vision.BlobAnalysis object is the same as that required by imcrop.
im = padarray(strel('disk',100,0).getnhood,[50 25],'pre');
hblob = vision.BlobAnalysis;
[area,centroid,bbox] = step(hblob,im);
>> bbox
bbox =
26 51 201 201
out = imcrop(im,bbox);
imshow(out);
2 comentarios
Ver también
Categorías
Más información sobre Computer Vision 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!