質問編集履歴

1

C#のソースコードのコメントに画像Bを画像Aに合わせに行く旨を追記。

2020/10/13 06:31

投稿

nakanori773
nakanori773

スコア4

test CHANGED
File without changes
test CHANGED
@@ -64,6 +64,8 @@
64
64
 
65
65
  ```C#
66
66
 
67
+ //descriptor1は画像Aの特徴点、descriptor2は画像Bの特徴点
68
+
67
69
  matches = matcher.KnnMatch(descriptor1, descriptor2, 2);
68
70
 
69
71
  List<Point2f> p1 = new List<Point2f>(), p2 = new List<Point2f>();
@@ -102,7 +104,9 @@
102
104
 
103
105
 
104
106
 
105
- //結果:MatKekkaは元画像と同じ(1753*2480*CV_8UC3)で得たいです。
107
+ //今回は、画像B(MatMoto(1753*2480*CV_8UC3)
108
+
109
+ //画像A(1764*2478*CV_8UC4)に合わせに行っています。
106
110
 
107
111
  ```
108
112