Rajesh Patidar

Results 7 comments of Rajesh Patidar

unrelated, i was getting the issue while starting up the app the app was crashing. for me the issue was the scheme and my android package name were differrent. once...

i don't remember how i actually fixed this worked for me. ``` import { RSA, RSAKeychain } from "react-native-rsa-native"; const publicKey = `-----BEGIN PUBLIC KEY----- YourPubKey -----END PUBLIC KEY-----`; const...

I am having similar issues after recent upgrade to expo 50 and camera 14 versions. autofocus does changes things but after a moment it get locked, When you change focus...

Did it work for you ?

Ohk , I am able to evaluate the standalone model with tensort - https://github.com/lyuwenyu/RT-DETR/blob/main/benchmark/trtinfer.py example shared here thought tensorrt working should have allowed deepstream to work as well, looks like...

I can confirms, I am able to use it, haven't tested all batching feature and other stuffs but for single stream its working as expected. Thanks you so much. I...

I was able to execute the ultralytics based model by adding following patch to `export_yolov8.py` ``` class DeepStreamOutput(nn.Module): - def __init__(self): + def __init__(self, img_size): + self.img_size = img_size super().__init__()...