Java API: KeyPoint::toString() is added

This commit is contained in:
Andrey Pavlenko 2011-07-28 13:09:58 +00:00
parent d2233f9de2
commit ec1023813f

View File

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