Height and width of an image

2 views (last 30 days)
Wong Wei Weng
Wong Wei Weng on 8 Oct 2018
Commented: Guillaume on 8 Oct 2018
Hi, is it possible to find the height and width of the object inside an image? I had attached an image with white and black line to find width and height value
  2 Comments
KSSV
KSSV on 8 Oct 2018
Edited: KSSV on 8 Oct 2018
Read about imdistline, regionprops.
Wong Wei Weng
Wong Wei Weng on 8 Oct 2018
can it be 2 value? one horizontally and one is vertically?

Sign in to comment.

Accepted Answer

ANKUR KUMAR
ANKUR KUMAR on 8 Oct 2018
Try this,
A=imread('testing.jpg');
AA=rgb2gray(A);
len=max(arrayfun(@(x) length(find(AA(:,x)~=255)),1:800))
bred=max(arrayfun(@(x) length(find(AA(x,:)~=255)),1:800))
  9 Comments
Guillaume
Guillaume on 8 Oct 2018
Note:
nnz(something)
is simpler and a lot faster to compute than:
length(find(something))

Sign in to comment.

More Answers (0)

Tags

Community Treasure Hunt

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

Start Hunting!