Clear Filters
Clear Filters

How to calculate Picture length from picture?

3 views (last 30 days)
How to calculate Picture length from picture?
  20 Comments
Esila Darci
Esila Darci on 9 Feb 2021
Edited: Esila Darci on 9 Feb 2021
I attended the onramp course now completaly but still don't know how to recall measured h1, h2, h3 and h4 value
Walter Roberson
Walter Roberson on 9 Feb 2021
number_of_measurements = 4;
h = zeros(1, number_of_measurements);
for K = 1 : number_of_measurements
measure a distance, giving a result D
h(K) = D;
end
meanh = mean(h);
stdh = std(h);

Sign in to comment.

Accepted Answer

Image Analyst
Image Analyst on 9 Feb 2021
Run my attached spatial calibration demo and then you will understand what to do.
  9 Comments
Image Analyst
Image Analyst on 2 Apr 2021
@Devyani Sankhe, not sure what your edit was, but did my Answer solve your problem?

Sign in to comment.

More Answers (0)

Categories

Find more on Image Processing and Computer Vision in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!