How can i find the total length of this rod please anyone help me ?
3 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Shri.s
il 10 Mag 2023
Modificato: Walter Roberson
il 10 Mag 2023
please find the length of this rod from start point to end point please give me solution i am new user in matlab software.
3 Commenti
Walter Roberson
il 10 Mag 2023
Modificato: Walter Roberson
il 10 Mag 2023
Please examine this photograph of an Imperial I-class Star Destroyer and tell us, using information only from the image, how long the Star Destroyer is? How large was it in the first Star Wars film?
(credit: starwars.com )
Risposta accettata
Walter Roberson
il 10 Mag 2023
filename = 'https://www.mathworks.com/matlabcentral/answers/uploaded_files/1379339/image.png';
grey = rgb2gray(imread(filename));
BW = grey >= 250;
imshow(BW)
props = regionprops(BW, 'MajorAxisLength');
object_size = props.MajorAxisLength %in pixels
0 Commenti
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Geometric Transformation and Image Registration in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!