Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
prevPts = new MatOfPoint2f(prev);
prevですMat;
prev
Mat;
最初の行prevPts = new MatOfPoint2f(prev);で Incompatible MAT という例外が発生します。なぜこれを行っているのかわかりません。API によると、MatOfPoint2f は MAT を取り込むことができます。
新しい MatofPoint2f(MAT) のコンストラクタ:
public MatOfPoint2f(Mat m) { super(m, Range.all()); if( !empty() && checkVector(_channels, _depth) < 0 ) throw new IllegalArgumentException("Incompatible Mat"); //FIXME: do we need release() here? }
MAT オブジェクトを確認してください