11-24-2011 10:30 PM
11-25-2011 08:53 AM
There is no sub-pixel measurement for area. Usually you convert it to binary, then just count the number of pixels.
If you know the shape of the area, you could use that to your advantage. For example, you can find the diameter of a circle or the sides of a rectangle. This would give you a better measurement.
If it is the only object, you might be able to use the histogram for a sub-pixel type measurement. Instead of thresholding at a fixed level, you could pick two levels, A and B, which correspond to zero and 100 percent. All the pixels above B are counted at 100%, and all pixels below A are not counted. The ones between A and B would be weighted by their intensity such that A=0 and B=1. This might give you a slightly better value of the area, but probably isn't worth the effort.
Bruce