i want to segment image to get harizontal projection on image...... how can i do it ?
조회 수: 3 (최근 30일)
이전 댓글 표시

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...

댓글 수: 0
채택된 답변
Image Analyst
2019년 4월 6일
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.
추가 답변 (0개)
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!