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
I was able to fix and verify that BGR8 works great on my local build by changing the if statement from if( format == IMAGE_RGB8 )
to instead be if( format == IMAGE_RGB8 || format == IMAGE_BGR8 )
I assume this could be done for the other BGR color formats as well. The CUDA template supports isBGR = True already.
The text was updated successfully, but these errors were encountered:
jetson-inference/c/tensorConvert.cu
Lines 226 to 235 in 7d40e30
I was able to fix and verify that BGR8 works great on my local build by changing the if statement from
if( format == IMAGE_RGB8 )
to instead be
if( format == IMAGE_RGB8 || format == IMAGE_BGR8 )
I assume this could be done for the other BGR color formats as well. The CUDA template supports
isBGR = True
already.The text was updated successfully, but these errors were encountered: