| 75 | } |
| 76 | |
| 77 | public static class RoiInfo |
| 78 | { |
| 79 | public PointF origion; // (left, top) |
| 80 | public PointF pivot; |
| 81 | public Mat mask; |
| 82 | |
| 83 | RoiInfo() |
| 84 | { |
| 85 | origion = new PointF(); |
| 86 | pivot = new PointF(); |
| 87 | mask = new Mat(); |
| 88 | } |
| 89 | |
| 90 | // This method is used is used by JNI. (Don't delete it) |
| 91 | @SuppressWarnings("unused") |
| 92 | RoiInfo(PointF origion, PointF pivot, Mat mask) |
| 93 | { |
| 94 | this.origion = origion; |
| 95 | this.pivot = pivot; |
| 96 | this.mask = mask; |
| 97 | } |
| 98 | } |
| 99 | |
| 100 | private RoiInfo[] regions; // cache, filled by C++ |
| 101 |
nothing calls this directly
no outgoing calls
no test coverage detected