Is it possible to use deep network designer App to design CNN for image enhancement?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
I have matlab R2020a and I want to use deep network designer to design my own network for image enhancement. However, I found that the available layers and network examples in deep network designer App are for the task of image classification or regression. ( i.e. the network input is an image and the network output is a label not an image). and I want to design and train a network for image enhancement in which that the network recieves image as an input and outputs an image also not a label. Does anyone know is it possible to do that and how?
2 comentarios
Image Analyst
el 4 de Jun. de 2020
You can build your own network from scratch if you want. I believe you just drag and drop components onto the design layout.
Respuestas (1)
Aniket
el 11 de Oct. de 2024
To address your first question, the size of input data needs to be provided to “ImageInputlayer”. If you want the network to process input images of any size, you can resize the image before calling the network. Refer to the documentation on "imresize" function in MATLAB:
For the second question regarding image as an output, you can use “RegressionOutputLayer” in Deep Network Designer:
The following example shows an image-to-image regression in Deep Network Designer to generate a super resolution image as output: https://www.mathworks.com/help/releases/R2020b/deeplearning/ug/image-to-image-regression-in-deep-network-designer.html
I hope this helps you!
0 comentarios
Ver también
Categorías
Más información sobre Image Data Workflows en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!