Is color learning done in deep learning?

Asked 2 years ago, Updated 2 years ago, 83 views

In deep learning, if an image is entered with RGB values, the feature extraction related to color information will only be performed in the first layer.However, color images can be generated from black and white images.If you have any knowledge of this point, I would appreciate it if you could let me know.

python deep-learning

2022-09-30 17:14

1 Answers

The deep learning model only looks at the numbers entered and performs the sum-of-product sum operations
When expanding black and white (channel 1) to RGB (channel 3), we try to figure out which channel and where and how many numbers should be placed to reduce the difference between the correct answer and the correct answer.Therefore, in which layer and what feature quantities are extracted is a black box.


2022-09-30 17:14

If you have any answers or tips


© 2024 OneMinuteCode. All rights reserved.