How to check if MatOfKeyPoints is empty or not?
MatOfKeyPoint matOfKeyPoint = new MatOfKeyPoint();
I need something like
if(matOfKeyPoint.size() != 1x0){
}
The error is as follows:
Multiple markers a this line:
Syntax Error on token "x0",delete this token
Incompatible operand types size and int
Any idea how to solve this problem?
Any help would be appreciated.
source
share