Height and width of an image

1 visualizzazione (ultimi 30 giorni)
Wong Wei Weng
Wong Wei Weng il 8 Ott 2018
Commentato: Guillaume il 8 Ott 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 Commenti
KSSV
KSSV il 8 Ott 2018
Modificato: KSSV il 8 Ott 2018
Read about imdistline, regionprops.
Wong Wei Weng
Wong Wei Weng il 8 Ott 2018
can it be 2 value? one horizontally and one is vertically?

Accedi per commentare.

Risposta accettata

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

Accedi per commentare.

Più risposte (0)

Tag

Community Treasure Hunt

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

Start Hunting!

Translated by