Effacer les filtres
Effacer les filtres

How to Extract the HOG Feature values?

1 vue (au cours des 30 derniers jours)
Najwa Samlan
Najwa Samlan le 28 Sep 2019
Commenté : Image Analyst le 2 Oct 2019
Hi. Please help me to solve this problem. I have two input which is a and b. The question is, how can I display HOG values for both image ? I want to display the values at the textbox called 'Purata' and 'Purata2'. The code are as below :-
function HOG_Callback(hObject, eventdata, handles)
a = getimage(handles.axes2)
b = getimage(handles.axes4)
[featureVector1,hogVisualization1] = extractHOGFeatures(a);
[featureVector2,hogVisualization2] = extractHOGFeatures(b);
axes(handles.axes16)
imshow(a);
hold on;
plot(hogVisualization1);
axes(handles.axes17)
imshow(b);
hold on;
plot(hogVisualization2);
set(handles.purata,'String',2)
set(handles.purata2,'String',2)
  1 commentaire
Image Analyst
Image Analyst le 2 Oct 2019
Attach your two images.

Connectez-vous pour commenter.

Réponses (0)

Catégories

En savoir plus sur Image Processing and Computer Vision dans Help Center et File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by