Yolov8 to react-native app #5023
Replies: 3 comments 6 replies
-
You can't run Python directly on mobile, so you'll need to set up a server that does the YOLO processing. You can use Flask or Django to make a simple API. Then, in your React Native app, you'll use fetch or Axios to get the processed data from the server. For the IP camera access, you could use a package that can display the camera feed in React Native. Once you've got the feed and data showing up in the app, you can start adding features like object counting based on the data you get from the server. So, in short: set up a server for YOLO, get your IP camera feed into React Native, and connect the two. |
Beta Was this translation helpful? Give feedback.
-
Hello brother, I also have the same idea as you, may I ask if you have solved this problem? If so, can you tell me the solution in a simple way? Thank you!👀 |
Beta Was this translation helpful? Give feedback.
-
Hello @BekirrUgur , |
Beta Was this translation helpful? Give feedback.
-
Hello, I have a project that accesses IP cameras through Python via Yolov8 and counts the objects it identifies when they pass certain points. I want to turn this into a mobile application via "React-Native". What is the best method to do this?
Beta Was this translation helpful? Give feedback.
All reactions