MCPcopy Create free account
hub / github.com/KAlO2/PerfectShow / RoiInfo

Class RoiInfo

src/com/cloudream/ishow/algorithm/FaceDetector.java:77–98  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected