You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
in trt_module.cpp getOutput()function "
memcpy(lowResolutionMasks, mCpuBuffers[5], mBufferBindingBytes[5]);
memcpy(iouPrediction, mCpuBuffers[6], mBufferBindingBytes[6]); " in nanosam.cpp set decoder: "mMaskDecoder = new TRTModule(decoderPath, { "image_embeddings", "point_coords", "point_labels", "mask_input", "has_mask_input" }, { "iou_predictions", "low_res_masks" }, true, false);" the infer result iou_predictions in mCpuBuffers[6]? is not mCpuBuffers[5]?
The text was updated successfully, but these errors were encountered:
When I used trtexec for generating the engine from onnx model, somehow, the order of outputs in decoder were changed. So, I set it accordingly But I will debug it when I have a time.
in trt_module.cpp getOutput()function "
memcpy(lowResolutionMasks, mCpuBuffers[5], mBufferBindingBytes[5]);
memcpy(iouPrediction, mCpuBuffers[6], mBufferBindingBytes[6]); " in nanosam.cpp set decoder: "mMaskDecoder = new TRTModule(decoderPath, { "image_embeddings", "point_coords", "point_labels", "mask_input", "has_mask_input" }, { "iou_predictions", "low_res_masks" }, true, false);" the infer result iou_predictions in mCpuBuffers[6]? is not mCpuBuffers[5]?
The text was updated successfully, but these errors were encountered: