Issue in recognising multiple objects in an Image
3 次查看(过去 30 天)
显示 更早的评论
I have images of Apples as well as of Oranges, which I am using as training images. The test image is an image consisting of both apple and orange. I am using GIST descriptor for feature extraction. When I train the classifier using extracted features, it gives an output as apple or orange for the test image. I have a query, as how can I make classifier recognise both of them in the test image. I am using KNN classifier
4 个评论
william pyae
2018-5-26
Hi Rohan, I'm doing a similar project as yours. Could you able to post all your matlab code in the file exchange? I would like to take references from your project. Thank you so much.
采纳的回答
Image Analyst
2017-1-25
Why not simply look at the color? Just convert to HSV color space, mask out the background and look at the amount of orange in the image. If there's more orange than non-orange, it's an orange.
3 个评论
Image Analyst
2017-1-27
regionprops() will tell you the hue of every single region in the image. Once you've made a determination, you can assign a string with the name of the fruit. Like
props = regionprops(binaryImage, hueImage, 'MeanIntensity');
for k = 1 : length(props)
thisHue = props(k).MeanIntensity
if thisHue < 0.1 % or whatever
fruitType{k} = 'Apple'
else
fruitType{k} = 'Orange'
end
end
更多回答(1 个)
Takuji Fukumoto
2017-1-25
I think you should cut block from a whole image and slide it for recognition if you want to use that classification.
3 个评论
Takuji Fukumoto
2017-1-25
编辑:Takuji Fukumoto
2017-1-25
I mean it can work if you create 'search window'. The search window is used in some detector algorithm.
RCNN find something like object first and then use classifier.
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!