0
을 사용하여 이미지 기능 분류를위한 SVM 내 프로젝트 범위는 샘플 이미지 기능 세트를 비교하여 통화 메모입니다. 샘플 이미지의 피쳐 추출 부분을 완료했습니다. 또한 나는 텍스트 파일이나 XML 파일과 그 분류에 샘플 이미지 기능을 저장할 필요가있다. OpenCv에서 SVM 분류자를 사용하여 이미지 분류 부분을 도와주세요.OpenCv
이것은 내가 완료 한 피쳐 추출 코드입니다.
INT 본체 (intargc, 숯 ** ARGV) {계조로 화상을로드 //
//declaring Mat object.This will holds an image(like iplimage in old opencv versions).
Mat gray_scale_img;
//imread is used to load an image. in here i have load the image as a grayscale image.
gray_scale_img=imread("100.jpg",CV_LOAD_IMAGE_GRAYSCALE);
/*surf detector settings*/
//setting the threshold value.high value will result low number of keypoints.
int hessian=100;
//initializing the surf keypoint detector
SurfFeatureDetectordetector(hessian);
/*detect surf key points*/
//creating vector to store detected keypoints
std::vector<KeyPoint>keypoints;
//detect keypoints
detector.detect(gray_scale_img,keypoints);
/*extract descriptor vectors/feature vectors from each and every keypoints */
SurfDescriptorExtractor extractor;
//this mat object will goinf to hold the extracted descriptors.
Mat descriptors;
//extracting descriptors/features
extractor.compute(gray_scale_img,keypoints,descriptors);
}
을 OpenCV에서
일부 소스 코드를 얻을 수 있습니까? –