var img1, img2: TIEBitmap; orb: TIEVisionORBFeaturesDetector; hmat: TIEVisionMatrix; imgres: TIEVisionImage; begin img1 := TIEBitmap.Create('scanned-form.jpg'); img2 := TIEBitmap.Create('form.jpg');
// detect matching points of the two images orb := IEVisionLib().createORBFeaturesDetector(); orb.detect(img1.GetIEVisionImage(), img2.GetIEVisionImage());
// optionally show matching graph (matching points links) //ImageEnView2.IEBitmap.AssignIEVisionImage(orb.getMatchingGraph());
// adjust "scanned-form" to the same skew of "form" image imgres := img1.GetIEVisionImage().warpPerspective(hmat, IEVisionSize(img2.Width, img2.Height));
// show final result ImageEnView1.IEBitmap.AssignIEVisionImage(imgres);