Hello, I would require to create an image measurement tool (to measure distance between objects in an image) in Mathematica. It is not available in the documentation.
Thanks
Hi Vitality/Henrik,
Thanks for help.
Regs
A simpler alternative to @Henrik's nice version:
i = ExampleData[{"TestImage", "House"}]; Manipulate[ Labeled[Show[i, Graphics[Line[pt]]], EuclideanDistance @@ pt], {{pt, Min[ImageDimensions[i]] {{.3, .3}, {.6, .6}}}, Locator}]
Dear @Vitaliy Kaurov,
excellent - I always prefer simple solutions! Thanks for sharing!
Best regards -- Henrik