我有一个小图像和一个大图像,我想使用OpenCV来计算大图像包含小图像的频率(与旋转和大小无关)。
例:
我不想使用SURF或SIFT,因为它们是非免费模块。可能的选择是“危险”或“怪胎”。
(不喜欢this帖子,因为我想计算特定对象)
我该如何实现?
最佳答案
for (int x = 0; x < width; ++x) {
for (int y = 0; y < height; ++y) {
int pixel = bmpOriginal.getPixel(x, y);
if (pixel != Color.BLACK) {
No_of_Objects = No_of_Objects + 1;
Index = ((y - 1) * width + x);
Connected[Index] = jumlahCrab;
while (Index < 0) {
pixel = Color.BLACK;
Neighbors[x][y] = jumlahCrab;
Connected[Index] = jumlahCrab;
}
jumlahCrab++;
}
}
}
Toast.makeText(this, String.valueOf(jumlahCrab), Toast.LENGTH_LONG).show();
}