error: BadInputsShape

I am getting the following error when trying to optimize:
image

this is my alls file:
quantization_param([conv42, conv53, conv63], force_range_out=[0.0, 1.0])
normalization1 = normalization([0.0, 0.0, 0.0], [255.0, 255.0, 255.0])
performance_param(compiler_optimization_level=max)
nms_postprocess(meta_arch=yolov8, engine=cpu)

Hey @user88,

The issue appears to be that your image has 4 dimensions (likely RGBA format) while the system expects RGB (3 dimensions). We recommend converting your image from RGBA to RGB format before processing.