_get_patches() function will extract patches from the input array, with patch dimensions that match the input dimensions of the ONNX model.
There are 4 possible cases for dimension inputs:
- Either or both Input array dimensions are less than the patch dimension --> will raise an error (GOOD)
- Both input array dimensions match the patch dimension --> will return the unaltered array (GOOD)
- One input array dimension matches the patch dimension, the other is larger --> will raise an error (BAD)
- Both input array dimensions are larger than the patch dimension --> will properly extract patches (GOOD)
The behavior for case 3 needs to be fixed.