Borrar filtros
Borrar filtros

i want to segment image to get harizontal projection on image...... how can i do it ?

1 visualización (últimos 30 días)
img_00691.bmp
this is my original image
and i want det vertical projections curves by pairing each rising left edge and declining right edge...
how can i do it..?
like output image is...Capture.PNG

Respuesta aceptada

Image Analyst
Image Analyst el 6 de Abr. de 2019
I have no idea exactly what you're doing or why it would be useful. It kind of looks like you're just thresholding the image to find bright blobs and adding an offset to any columns where there are pixels above the threshold. Kind of like
binaryImage = grayImage > someValue;
columns = any(binaryImage, 1);
grayImage(:, columns) = grayImage(:, columns) + 50; % or whatever.
but I don't know why you'd want that.
  1 comentario
krishna kotha
krishna kotha el 6 de Abr. de 2019
Editada: krishna kotha el 6 de Abr. de 2019
i want to use vertical and horizontal projections to detect the pedestrains(Brighter pixels) using bounding boxes, i.e. i want to creat a candidate ROIs to get pedestrains...so i need vertical and horizontal projections....!! i want to do two-level intensity oriented projections for images...!!

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Image Processing Toolbox en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by