VecKeyPoint.fromList constructor

VecKeyPoint.fromList(
  1. List<KeyPoint> pts
)

Implementation

factory VecKeyPoint.fromList(List<KeyPoint> pts) =>
    VecKeyPoint.generate(pts.length, (i) => pts[i], dispose: false);