Message 1 of 3
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hi all!
I am recently doing something with AVF, and have some problems with the BoundingBoxUV of face. I use following codes to achieve the feature points of the bottom-left corner area of the face, but the result shows that the feature points refer to the upper-right corner area.
BoundingBoxUV boundingBoxUV = face.GetBoundingBox();
UV min = boundingBoxUV.Min;
double midU = (boundingBoxUV.Max.U + boundingBoxUV.Min.U) / 2;
double midV = (boundingBoxUV.Max.V + boundingBoxUV.Min.V) / 2;
UV mid = new UV(midU, midV);
I'm confused about this result! anyone can help me? Thanks in advance!
Solved! Go to Solution.