converting classification network to fully convolutional with arbitrary sized image
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
I have trained a classification network that runs on 32x32x3 input (classify letters). How can I convert it to fully convolutional network that will run on arbitrary sized image. I don't want to resize my input to 32x32x3, but run the detection over the whole image classifying every neighborhood of 32x32x3 sequentially.
Thank you, in advance.
0 comentarios
Respuestas (1)
Prateek Rai
el 26 de Nov. de 2021
Hi,
One possible workaround could be that you can first use the whole image and find the potential patches of size 32x32x3 where there is a high chance of having letters.
(Note: If you want to use the entire image then you can start from the top left and take a window of size 32x32x3 and then start moving that window sidewards to cover the whole image eventually.)
Once you start having the small images of size 32x32x3, then you can use those to feed to your Convolutional Network and get the desired output.
0 comentarios
Ver también
Categorías
Más información sobre Image Data Workflows en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!