12-02-2015 07:29 AM
Please help calculate the area of round shapes and elongated rods.
12-02-2015 07:41 AM
If you are Hiring, you posted this in the wrong Forum (see LabVIEW Developers Seeking Employment, below). If you are asking for help with code you are developing yourself, you forgot to post your code and to focus on the specific issue giving you problems.
Bob Schor
12-03-2015 10:05 AM
Round shapes: A = pi . r^2 (approximate as circles)
Rods: A = L . W (approximate as rectangles)
12-03-2015 01:16 PM
Or just count the number of pixels comprising the desired shape. (I assume you can identify the outline of the areas of interest by some algorithm).
Since the image is quantized to pixels, you won't get much more accurate than that.
12-03-2015 03:03 PM
Have a look at the NI Vision software, or the open source "ImageJ" application (I used both for similar tasks during my PhD and they work nice + easy learning curve).
12-05-2015 07:20 AM
12-05-2015 07:21 AM
How do I count on your formula? To enter this formula?
12-05-2015 10:26 AM - edited 12-05-2015 10:27 AM
In order to use the formulas, you need to fit the relevant image parts to a 2D model that contains the desired parameters. It also assumes that the areas are perfect circles or perfect rods, which does not seem to be the case. I think counting pixels as suggested is sufficient. To get the actual area, you need to know the area/pixel.
12-05-2015 11:04 AM - edited 12-05-2015 11:04 AM
Here's a very simple draft how you could calculate the area percentange of pixels that are darker than a certain threshold. Maybe it can give you some ideas.