Lecture is very clear and more understandable.Is it possible to predicts colors in the RGB image using deep learning?
@learndlcodetf53313 жыл бұрын
Thank you very much. Glad you like it. I have to think about it. But talking right off my mind, an RGB image is made up of pixels. Each pixel has three integer values (r,g,b). Using regression you can predict a number and round off to nearest integer. But out of curiosity why do you need deep learning to do this task? when you have the image, i.e the input tensor, you already know the colours of an image right? if you want to mimic an image you can try auto encoders.
@Gopikha63 жыл бұрын
@@learndlcodetf5331 Thanks for your reply. Let me try it.