how to save edges in vector
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
DSB
am 29 Mär. 2017
Kommentiert: Walter Roberson
am 10 Apr. 2017
I'm trying to save the edges in vector in .mat file how can i do that?
2 Kommentare
Akzeptierte Antwort
Walter Roberson
am 30 Mär. 2017
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 Kommentare
Walter Roberson
am 10 Apr. 2017
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.
Weitere Antworten (0)
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!