How to prevent conv2d from changing image size
14 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Nour Aburaed
am 22 Apr. 2019
Kommentiert: Nour Aburaed
am 22 Apr. 2019
I have an image of size 330x363 uint8. I am convoluting it with 11x11 filter using conv2. The resulting image gets padded with zeros from top (6 pixels), bottom (4 pixels), left (6 pixels), right (4 pixels). Is there a way to prevent this padding from happening? Is it a good practice to crop the resulting image after the convolution?
0 Kommentare
Akzeptierte Antwort
Walter Roberson
am 22 Apr. 2019
Bearbeitet: Walter Roberson
am 22 Apr. 2019
conv2(A, B, 'same') or conv2(A, B, 'valid')
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Get Started with MATLAB finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!