Skip to main content
. 2018 Jul 11;18(7):2229. doi: 10.3390/s18072229
Algorithm 1. Obtaining Pixel Coordinates of Control Points in Test Images
Input: image block of static objects from test image
Procedure:
  (1) Get reference image through identity of static object from database;
  (2) Extract feature points for both test image block and reference image by SIFT operator [46];
  (3) Perform feature matching to get homonymy feature point pairs;
  (4) Employed RANSAC [47] to remove false matching points; the remaining matching points marked as Ptest for test image and Pref for reference image;
  (5) Calculate homographic matrix Hhomo by solving formula below:
PTest=Hhomo×Pref
  (6) Estimate pixel coordinates of control points in test images CPT as following formula, CPTref is the set of pixel coordinates of control points in reference images:
CPT=Hhomo×CPTref
Output:CPT