How to get the HOG descriptor visualization as an image?
5 ビュー (過去 30 日間)
古いコメントを表示
I need the visualizations of the HOG descriptor as an image that i can extract regions for my further analysis.
0 件のコメント
回答 (1 件)
Gayathri
2025 年 1 月 10 日
You can use the "extractHOGFeatures" function to compute the HoG features and obtain the visualization data.
img = imread('cameraman.tif');
[featureVector,hogVisualization] = extractHOGFeatures(img);
The "extractHOGFeatures" returns HOG feature visualization, using any of the preceding syntaxes. You can display this visualization using
plot(hogVisualization)
You can save this into a suitable image format.
For more information on "extractHOGFeatures" function, please refer to the below documentation link.
Hope you find this information helpful!
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Computer Vision Toolbox についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
