GluonCV Input Types

Can GluonCV handle input with more than three channels? Also, can GluonCV handle non-byte imagery like uint16?

Gluon models can handle more than three channels, you just have to take care of feeding the input to the network using a custom DataLoader. Similarly, unit16 images work as well, you may have to take care of reading the image into memory in the specific format you want it.

1 Like