Bounding box with border only in detectNet

Are there options as to how the bounding box is drawn with cuda or is it always a filled box ? I would like to draw it as a border only. I see there is a cudaRectOutline function that is commented out:

//cudaError_t cudaRectOutline( float4* input, float4* output, uint32_t width, uint32_t height, float4* boundingBoxes, int numBoxes, const float4& color );

Hi @brking, unfortunately I had problems with that function and so commented it out - something about how I was detecting which pixels in the output image the lines should be on led the kernel to be unstable. I believe other people have used OpenCV to draw the line boxes if that’s an option for you.