前提・実現したいこと
同一レイアウトのひな形に対して、読込画像にアファイン変換を行っています。
変換後の画像が縮小され、左上に寄ってしまいます。
Pythonのソースを元に作成しましたが、Numpy関連の部分が完全に再現できていないと思われます。
何か解決策をご教授いただければ幸いです。
発生している問題
1.読込(3307×2338) ※ひな形は(2480×1753)
2.結果(3307×2338)
3.結果から必要な部分を手動で切り出した画像(1819×1310)
該当のソースコード
C#
1//MatHinagata ひな形の画像=画像A 2using (Mat MatHinagata = ReadToMat(styleClass.FileFullPath)) 3{ 4 Mat MatKekka = new Mat(); 5 KeyPoint[] key_point1; //比較元画像の特徴点 6 KeyPoint[] key_point2; //比較先画像の特徴点 7 Mat descriptor1 = new Mat(); //比較元画像の特徴量 8 Mat descriptor2 = new Mat(); //比較先画像の特徴量 9 DescriptorMatcher matcher; //マッチング方法 10 DMatch[][] matches; //特徴量ベクトル同士のマッチング結果を格納する配列 11 12 //MatYomikomi 読込=画像B 13 using (Mat MatYomikomi = ReadToMat(imgB)) 14 { 15 Comfunc.ReadXMLToObject(System.Windows.Forms.Application.StartupPath + @"\01" + tgtFrlb.StyleID.ToString("00") + ".xml", out loadAry); 16 //特徴量の検出と特徴量ベクトルの計算 17 akaze.DetectAndCompute(MatHinagata, null, out key_point1, descriptor1);//ひな形の画像=画像A 18 akaze.DetectAndCompute(MatYomikomi, null, out key_point2, descriptor2);//読込=画像B 19 matcher = new BFMatcher(); 20 matches = matcher.KnnMatch(descriptor1, descriptor2, 2); 21 22 const double match_per = 0.8;//マッチングの閾値 23 24 List<Point2f> p1 = new List<Point2f>(),p2 = new List<Point2f>(); 25 26 //検出された特徴量の精査 27 foreach (var m in matches) 28 { 29 double dis1 = m[0].Distance; 30 double dis2 = m[1].Distance; 31 if (dis1 <= dis2 * match_per) 32 { 33 p1.Add(key_point1[m[0].QueryIdx].Pt); 34 p2.Add(key_point2[m[1].TrainIdx].Pt); 35 } 36 } 37 //変換行列生成 38 Mat matresult2 = Cv2.EstimateAffinePartial2D(InputArray.Create(p1), InputArray.Create(p2)); 39 40 //画像を変換 41 Cv2.WarpAffine(MatYomikomi, MatKekka, matresult2, MatYomikomi.Size()); 42 } 43}
Python
1#完全に再現できていないところのみ抜粋します。 2#変換行列生成 3mtx = cv2.estimateAffinePartial2D( 4 np.float32([kp1[m[0].queryIdx].pt for m in good]).reshape(-1, 1, 2), 5 np.float32([kp2[m[0].trainIdx].pt for m in good]).reshape(-1, 1, 2))[0] 6# 画像を変換 7warped_image = cv2.warpAffine(img1, mtx, (img1.shape[1], img1.shape[0]))
試したこと
Cv2.WarpAffine時のサイズ指定を読込画像、ひな形と試しましたがダメでした。
補足情報(FW/ツールのバージョンなど)
C# OpenCvSharp3(v4.00) .NETFramework(4.5.2)
回答1件
あなたの回答
tips
プレビュー