How to best train SVM on images with different aspect ratio -


can svm work on data different dimensions? (using libsvm) if images have different size, can resize standard value. if have different aspect ratios, seems not make sense resize without keeping original aspect ratio. or shall pad images zeros make them have same aspect ratio?

can svm work on data different dimensions?

no can't, give answer how overcome (resizing images).

but if have different aspect ratios, seems not make sense resize without keeping original aspect ratio. or shall pad images zeros make them have same aspect ratio?

agreed, not maintaining aspect ratio make problem harder. people pre-process images 1 aspect ratio , use letterboxing or pillarboxing when necessary.


Comments

Popular posts from this blog

c# - DetailsView in ASP.Net - How to add another column on the side/add a control in each row? -

javascript - firefox memory leak -

Trying to import CSV file to a SQL Server database using asp.net and c# - can't find what I'm missing -