Real Time Object Detection with YOLOv9 and Webcam

  Рет қаралды 10,084

Tech Watt

Tech Watt

Күн бұрын

Пікірлер: 45
@aaryadesai6224
@aaryadesai6224 3 ай бұрын
I faced the same issue of no module named torch. In the directory of YOLOV9 there is a file called requirements.txt, this file lists all the required dependencies. use this command in the terminal (pip install -r requirements.txt). this installed everything for me. I faced another issue where it could not find the source. I am using a usb webcam, but had to change my source from 1 to 0 for it to work. Thanks for this amazing and easy tutorial.
@tech_watt
@tech_watt 3 ай бұрын
Love it 😍 thanks for your explanation. You’ve help me a lot 👍
@GamerDudeBYT
@GamerDudeBYT 6 ай бұрын
Thank you for this video. You made it very straightforward and very useful. I have been looking for 5 months for a good object detection video and you have done that.
@tech_watt
@tech_watt 6 ай бұрын
Thanks 😊 so much for your kind words. Am super excited you’ve finally found this tutorial
@aiforyounow
@aiforyounow 7 ай бұрын
Great tutorial dude. You make everything very easy to understand.
@Deepsim
@Deepsim 7 ай бұрын
Very great tutorial on yolov9. Brother, how to print the bbox and center of it? Thanks
@tech_watt
@tech_watt 7 ай бұрын
Tutorial on that coming soon
@kristijanlazarev
@kristijanlazarev 7 ай бұрын
It's so awesome and simple damn!!
@tech_watt
@tech_watt 7 ай бұрын
Thanks 😊
@EiNETCORPPvtLtd
@EiNETCORPPvtLtd 7 ай бұрын
Great video!! dude. Can you please make a video using CSI camera
@tech_watt
@tech_watt 7 ай бұрын
Yes but I don’t have it
@dakaradakaradakara699
@dakaradakaradakara699 3 ай бұрын
Please do this with the custom dataset on roboflow ?
@samuraix2193
@samuraix2193 Ай бұрын
I faced some issue it say 'Phyton was not found; run without arguments to install from the Microsoft store, or disable this shortcut from Settings > Manage app execution aliases. ' can you help me
@BangtanArmy-mt7ph
@BangtanArmy-mt7ph 5 ай бұрын
Import torch is not resolved
@YigalBZ
@YigalBZ 7 ай бұрын
Thank you for the good video. Very easy to follow and understand! If my laptop has a P1000 GPU of Nvidia, how to use it? Just by writing gpu instead of cpu?
@tech_watt
@tech_watt 7 ай бұрын
In that case you just write 0. But if the gpu is not configured, you will get error
@YigalBZ
@YigalBZ 7 ай бұрын
@@tech_watt I am not sure I understand - configure where? It exists there, just like the CPU.
@tech_watt
@tech_watt 7 ай бұрын
@YigalBZ no I mean you have to set up your GPU on your computer before it will be able to pick it.
@GamerDudeBYT
@GamerDudeBYT 6 ай бұрын
Do you know how to get it work with a video? I tried just making the source with a video but it never stops the script and the video is not playable
@tech_watt
@tech_watt 6 ай бұрын
When you give source to a video file it will detect objects in the video file and when it’s done running it will save it in a folder 📂 path called runs. The name of the path will be written on the terminal.
@GamerDudeBYT
@GamerDudeBYT 6 ай бұрын
@@tech_watt Thanks. I had tried that but the video was not working but i found that adding --view-img on the end of the command showed it in real time
@Rapper_Ash
@Rapper_Ash 5 ай бұрын
bro it is showing that no torch module is showing what to do for that
@tech_watt
@tech_watt 5 ай бұрын
Before running the code make sure you’re in same directory you’ve clone the repository and also do install all the dependencies in the requirements file
@varshhadinesh7538
@varshhadinesh7538 6 ай бұрын
hello!! thank you for the great video. I just wanted to ask whether this project works only for torch version 1.7.0 or will it work for any other latest version? I'm facing an error while running the project as I couldn't able to download torch. error: Traceback (most recent call last): File "C:\Users\varsh\OneDrive\Desktop\yolo v9 det\yolov9\detect.py", line 231, in main(opt) File "C:\Users\varsh\OneDrive\Desktop\yolo v9 det\yolov9\detect.py", line 226, in main run(**vars(opt)) File "C:\Users\varsh\AppData\Local\Programs\Python\Python310\lib\site-packages\torch\utils\_contextlib.py", line 115, in decorate_context return func(*args, **kwargs) File "C:\Users\varsh\OneDrive\Desktop\yolo v9 det\yolov9\detect.py", line 89, in run im = torch.from_numpy(im).to(model.device) NameError: name 'torch' is not defined please suggest me a solution for this. TIA
@tech_watt
@tech_watt 6 ай бұрын
You can pip install all the packages in the requirements. txt file to get all the packages installed
@varshhadinesh7538
@varshhadinesh7538 6 ай бұрын
@@tech_watt can you please tell me the command? I've already tried pip install -r requirements.txt
@tech_watt
@tech_watt 6 ай бұрын
@varshhadinesh7538 yes that’s the command but make sure you are in the directory before executing any command
@tech_watt
@tech_watt 6 ай бұрын
@varshhadinesh7538 just follow all the steps in the tutorial
@varshhadinesh7538
@varshhadinesh7538 6 ай бұрын
@@tech_watt Thank youu!! got the output :)
@Shashika_Janith
@Shashika_Janith 5 ай бұрын
Thank you
@tech_watt
@tech_watt 5 ай бұрын
You're welcome
@jaimeabug9090
@jaimeabug9090 5 ай бұрын
it said Traceback (most recent call last): File "detect.py", line 7, in import torch ModuleNotFoundError: No module named 'torch'
@tech_watt
@tech_watt 5 ай бұрын
Make sure you install all the dependencies in the requirements.txt file
@jaimeabug9090
@jaimeabug9090 5 ай бұрын
@@tech_watt where should I see them all?
@kristijanlazarev
@kristijanlazarev 7 ай бұрын
No module named torch
@tech_watt
@tech_watt 7 ай бұрын
Kindly do pip install requirements.txt to install all the necessary packages from the clone repository
@kristijanlazarev
@kristijanlazarev 7 ай бұрын
@@tech_watt But it still doesn't work for some reason, hmmm
@kristijanlazarev
@kristijanlazarev 7 ай бұрын
Nvm it got fixed because i was using py instead of python in the command. Isn't it same?
@tech_watt
@tech_watt 7 ай бұрын
@kristijanlazarev that’s great 😀. They are not the same py is just the extension
@mecha.mio.00
@mecha.mio.00 6 ай бұрын
@@tech_watt i have the same problem with the module "torch". in requirements txt, i just put avaible the lines 1 and 2 of pipi install requeriements.txt, but it still doesn t work. do you have an idea what is happend? PS C:\Users\MIO\Desktop\yolov9> python detect.py --weights gelan-c.pt --conf 0.5 --source 1 --device 0 Traceback (most recent call last): File "C:\Users\MIO\Desktop\yolov9\detect.py", line 7, in import torch ModuleNotFoundError: No module named 'torch' PS C:\Users\MIO\Desktop\yolov9>
End-to-End Data Science Salary Prediction Project
12:14
Sarthak Kelkar
Рет қаралды 65
MY HEIGHT vs MrBEAST CREW 🙈📏
00:22
Celine Dept
Рет қаралды 78 МЛН
Friends make memories together part 2  | Trà Đặng #short #bestfriend #bff #tiktok
00:18
Realtime Object Detection using YOLOV9
33:23
henri tantyoko
Рет қаралды 580
Real Time Object Detection with YOLO11  and Webcam
7:21
Tech Watt
Рет қаралды 512
How to do Object Detection using ESP32-CAM and Edge Impulse YOLO Model
16:50
A Comprehensive Guide to YOLO11 for Object Detection!
7:44
YOLO V10 | OBJECT DETECTION | CUSTOM DATA-SET
32:53
Data Science with GAGAN
Рет қаралды 1,1 М.
Real-time Fall Detection Using YOLOV8
12:14
Tech Watt
Рет қаралды 6 М.
YOLOv9 vs YOLOv8 Comparison on Real-world Videos
10:45
Nicolai Nielsen
Рет қаралды 17 М.
YOLOv10 Object Tracking on Live Webcam Step by Step Tutorial
18:58
Nicolai Nielsen
Рет қаралды 12 М.
MY HEIGHT vs MrBEAST CREW 🙈📏
00:22
Celine Dept
Рет қаралды 78 МЛН