Java API: KeyPoint::toString() is added

pull/13383/head
Andrey Pavlenko 14 years ago
parent d2233f9de2
commit ec1023813f
  1. 8
      modules/java/src/java/features2d+KeyPoint.java

@ -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 + "]";
}
}

Loading…
Cancel
Save