area calculation of black part
조회 수: 1 (최근 30일)
이전 댓글 표시
hello,
i have to calculate the area of black part how can i do it and also which image should i use green or binary?
답변 (1개)
KSSV
2020년 2월 5일
A crude/ rough estimate
I = imread('binary2.jpg') ;
[y,x] = find(I<=180) ;
iwant = nnz(x) ;
imshow(I)
hold on
plot(x,y,'.r')
참고 항목
카테고리
Help Center 및 File Exchange에서 Image Processing Toolbox에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!