Commit ec102381 authored by Andrey Pavlenko's avatar Andrey Pavlenko

Java API: KeyPoint::toString() is added

parent d2233f9d
......@@ -58,4 +58,12 @@ public class KeyPoint {
{
this(x, y, _size, -1, 0, 0, -1);
}
@Override
public String toString() {
return "KeyPoint [pt=" + pt + ", size=" + size + ", angle=" + angle
+ ", response=" + response + ", octave=" + octave
+ ", class_id=" + class_id + "]";
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment