How to use DCT to create feature vectors for neural networks?
1 回表示 (過去 30 日間)
古いコメントを表示
I want to use DCT to create feature vectors for gray images and then use it for pattern recognition using neural network. Is there any example or a guide that may help me? thank you
0 件のコメント
採用された回答
Walter Roberson
2016 年 8 月 6 日
Step 1:
Read the image.
Step 2:
call dct() on the image.
Step 3:
Use reshape() on the result of step 2, to turn the results of dct( ) into a vector
Step 4:
Use the vector as input to a neural network.
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Image Data Workflows についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!