Let's say I have converted a model from PyTorch (with ONNX export) to Myriad X blob.
Given that PyTorch models expect an input in the format (B, C, H, W) with RGB color order, in DepthAI Python API how should I initialize the Camera Node and the Image Manip node and link each other in order to feed images to the NN node?
First Assuming a 224x224 image shape and then a bigger a shape like 400x400
(I ask this question because my camera node always provides frames in (H, W, C) shape despite changing the parameter setInterleaved. Then I am unsure of how handling optimally shapes which are greater than the maximum preview size in the camera node)