how to save edges in vector
2 次查看(过去 30 天)
显示 更早的评论
I'm trying to save the edges in vector in .mat file how can i do that?
2 个评论
采纳的回答
Walter Roberson
2017-3-30
Suppose you have just done edge detection on an image, and suppose the name of the output matrix is EdgeMatrix . Then you can do
EdgeVector = EdgeMatrix(:);
save EdgeMat.mat EdgeVector
6 个评论
Walter Roberson
2017-4-10
Use a different Classification method, or experiment with different kernels, or choose a different set of features.
SVM on detected edges might not be a useful approach at all.
更多回答(0 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!