Height and width of an image

2 vues (au cours des 30 derniers jours)
Wong Wei Weng
Wong Wei Weng le 8 Oct 2018
Commenté : Guillaume le 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 commentaires
KSSV
KSSV le 8 Oct 2018
Modifié(e) : KSSV le 8 Oct 2018
Read about imdistline, regionprops.
Wong Wei Weng
Wong Wei Weng le 8 Oct 2018
can it be 2 value? one horizontally and one is vertically?

Connectez-vous pour commenter.

Réponse acceptée

ANKUR KUMAR
ANKUR KUMAR le 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 commentaires
Guillaume
Guillaume le 8 Oct 2018
Note:
nnz(something)
is simpler and a lot faster to compute than:
length(find(something))

Connectez-vous pour commenter.

Plus de réponses (0)

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by