我已经阅读了很多关于在获取图像的筛选功能后实现单词包的文章,但我仍然对下一步该做什么感到困惑。我具体做什么?
提前感谢您的指导。
这是我到目前为止的代码。
cv::Mat mat_img = cropped.clone();
Mat grayForML;
cvtColor(mat_img, grayForML, CV_BGR2GRAY);
IplImage grayImageForML = grayForML.operator IplImage();
//create another copy of iplGray
IplImage *input = cvCloneImage(&grayImageForML);
Mat matInput = cvarrToMat(input);
// Mat matInput = copy_gray.clone();
cv::SiftFeatureDetector detector;
std::vector<cv::KeyPoint> keyPoints;
detector.detect(input, keyPoints);
//add results to image and save.
cv::Mat output;
cv::drawKeypoints(input, keyPoints, output); //SIFT OUTPUT RESULT
//resize and display
cv::Mat output_reduced;
cv::resize(output, output_reduced, cv::Size2i(output.cols / 2, output.rows / 2));
imshow("SIFT result", output_reduced);
答案 0 :(得分:3)
训练一袋单词系统如下:
此时培训已完成,您可以按照以下步骤开始测试:
您可以注意到,使用SIFT没有任何限制。您可以尝试使用不同的特征提取器和描述符。