feiyuhuahuo / Anomaly_Prediction

Pytorch implementation of anomaly prediction.
78 stars 22 forks source link

Regarding Channel information when loading video #24

Closed abhishekaich27 closed 3 years ago

abhishekaich27 commented 3 years ago

Shouldn't the channel information be part of frames when you are reading frames with 3 channels?

That is (n, 12, 256, 256) should be (n, 12, 3, 256, 256). Or is it that your code will only work with inputs of 1 channel?

EDIT: Or do we just multiply the channel information with clip length? EDIT2: Got it!! :)