Official YOLO v7 Pose Estimation | Windows & Linux

  Рет қаралды 20,240

TheCodingBug

TheCodingBug

Күн бұрын

Пікірлер: 46
@kenzaba
@kenzaba Жыл бұрын
thanks a lot, i've tried this code on colab and i'm getting this type of error: ( File "detect.py", line 117, in detect s += f"{n} {names[int(c)]}{'s' * (n > 1)}, " # add to string IndexError: list index out of range). could help me please?!
@kapilsaxena1
@kapilsaxena1 Жыл бұрын
Great video, can this be done on mouse or rat behaviour videos. We have several of those videos where we want to detect of mouse is moving sleeping/resting or freezing?
@TheCodingBug
@TheCodingBug Жыл бұрын
Yes. You can write a program for that but you'll have to train custom pose estimation model on that.
@boppadapusaiteja8074
@boppadapusaiteja8074 Жыл бұрын
Hat's off great I like the way you are demonstrate the codes.👍👍
@jonathantobias4244
@jonathantobias4244 2 жыл бұрын
Good video. How do you create a custom dataset for pose estimation in YOLO format?
@gadgetboyplaysmc
@gadgetboyplaysmc Жыл бұрын
Would love to know as well! please!
@lordfarquad1530
@lordfarquad1530 2 жыл бұрын
Thank you for video ,looking forward for the tracking an object video , How do we train the official yolov7 instance segmentation on custom ? or how to even test yolov7-mask on webcam
@TheCodingBug
@TheCodingBug 2 жыл бұрын
YOLOv7 instance segmentation video is scheduled for Monday.
@lordfarquad1530
@lordfarquad1530 2 жыл бұрын
@@TheCodingBug hello , is there any update regarding the video? Thank you so much
@TheCodingBug
@TheCodingBug 2 жыл бұрын
@@lordfarquad1530 It will be uploaded by the end of this month.
@hughmungus8784
@hughmungus8784 2 жыл бұрын
Very cool my friend!
@akremgomri9085
@akremgomri9085 7 ай бұрын
No errors for me so far, but when I test with images or a video, no one is detected inside the frame. Weird !
@sezermezgil9304
@sezermezgil9304 Жыл бұрын
Hi great tutorial and I have one question. How do I run it in real time?
@TheCodingBug
@TheCodingBug Жыл бұрын
Instead of video file name as source, use 0 for webcam along with --view-img
@abdelhamidazanzal4403
@abdelhamidazanzal4403 2 жыл бұрын
thanks a lot for this great tutorial really like it! I have a question about evaluation of the model how can we evaluate the model and make sure that it will suit on a real time?
@TheCodingBug
@TheCodingBug 2 жыл бұрын
I don't understand what you mean by evaluation? If you are looking for metrics on validation split, its available in the official paper. If you are asking for speed for real-time, well its almost real-time (with FPS 12-15).
@abdelhamidazanzal4403
@abdelhamidazanzal4403 2 жыл бұрын
@@TheCodingBug thanks for the answer. Yes I'm looking for the metrics ( confusion matrix..) I will check the official paper
@mihaelaplats
@mihaelaplats 2 жыл бұрын
Cool video, could you please help on how to use HRNet for detecting pose on custom dataset??
@TheCodingBug
@TheCodingBug 2 жыл бұрын
I don't understand. Why would we need pose estimation on custom dataset? Is it for some specific use case?
@mihaelaplats
@mihaelaplats 2 жыл бұрын
@@TheCodingBug yes, to use it with photos taken with webcam
@mihaelaplats
@mihaelaplats 2 жыл бұрын
Same usage with "detect" of yolo and any random picture
@TheCodingBug
@TheCodingBug 2 жыл бұрын
@@mihaelaplats same code would work for that!!! You do not need to retrain the model.
@mihaelaplats
@mihaelaplats 2 жыл бұрын
@@TheCodingBug yesss i know, but i don't know how to call hrnet with any picturw
@sutranvan9203
@sutranvan9203 8 ай бұрын
I am calculating the object's velocity. Is there any way to increase velocity accuracy? (eg increase fps)
@faatihahrs
@faatihahrs 2 жыл бұрын
Is this can run in google colab? I've been trying to use it on colab but always get this error Traceback (most recent call last): File "detect.py", line 195, in detect() File "detect.py", line 116, in detect s += f"{n} {names[int(c)]}{'s' * (n > 1)}, " # add to string IndexError: list index out of range
@kenzaba
@kenzaba Жыл бұрын
hello i've tried the same thing, i get this error: File "detect.py", line 117, in detect s += f"{n} {names[int(c)]}{'s' * (n > 1)}, " # add to string IndexError: list index out of range do you know a solution for that ??
@LordWildbeast
@LordWildbeast Жыл бұрын
I met the same problem, and I don't know the solution yet
@sakinamosavi1104
@sakinamosavi1104 Жыл бұрын
I faced the same error, Could you solve it. If yes, please share the solution.
@muhammadraza1374
@muhammadraza1374 Жыл бұрын
Can we detect multiple objects & pose estimation for only person in this repo ?
@thanossiouras1135
@thanossiouras1135 2 жыл бұрын
Nice video! could you please tell me how to extract the key point per joint in a file? thanks
@gajanen9734
@gajanen9734 Жыл бұрын
Hi, Can we do this in Python in Visual Studio editor?
@TheCodingBug
@TheCodingBug Жыл бұрын
Yes
@alaaali5739
@alaaali5739 Жыл бұрын
I try it on webcam but I have a low fps..how can I fix it ?!
@benaamediajo
@benaamediajo Жыл бұрын
run on GPU not cpu, by adding --device 0 if available
@abrarluvrabit
@abrarluvrabit 2 жыл бұрын
another great video thanks alot Sir for helping us (Students) in the object detection field. Can you please also make a video on a Multi-label object dection in a single bounding box. I have a dataset that involves images with bounding boxes which have more than 1 label. For example, I have 5 classes (0-4), then an image might have a bounding box with label "2" and another might have a bounding box with two labels "2, 4" ie it belongs to both categories. so how can we show two labels or classes on a single bounding box? please make a video on this or atleast provide some solution in your ans here i will be very thankful to you.
@TheCodingBug
@TheCodingBug 2 жыл бұрын
You can add two bounding boxes on same object with different labels or define single multi-word label and use that for a bounding box.
@moahaimen
@moahaimen 2 жыл бұрын
is it possible to detect certain pose? and make alarm on it
@TheCodingBug
@TheCodingBug 2 жыл бұрын
Yes it is.
@moahaimen
@moahaimen 2 жыл бұрын
@@TheCodingBug how ? can i get you help please? i need to do that
@akremgomri9085
@akremgomri9085 7 ай бұрын
It doesn't seem to be working for me
@brunospfc8511
@brunospfc8511 2 жыл бұрын
Thanks you sir, if you could, please do the instance on this Yolov7, thanks
@TheCodingBug
@TheCodingBug 2 жыл бұрын
It's scheduled for the next week.
@LordWildbeast
@LordWildbeast Жыл бұрын
Sir, how to run it from colab?
@nemiw4429
@nemiw4429 2 жыл бұрын
Please tell your Indian countrymen that's how you do your job as a KZbin video producer and publisher. From the title it in English -not half Indian and half English - production quality and detail. Job well done. I dont want to appear rude but it has become, as you can imagine, frustrating when you click on an english title, except a quality video. What you get is poor quality (which is not the main issue at all, everybody has to start), but half the text spoken is in English and half in Indian.
@TheCodingBug
@TheCodingBug 2 жыл бұрын
I hope things would get better :) PS: I am not Indian.
@Nostalgia-futuro
@Nostalgia-futuro Жыл бұрын
Do You have linkedin or a way to contact you
Official YOLO v7 Custom Object Detection on Colab
11:05
TheCodingBug
Рет қаралды 38 М.
Flipping Robot vs Heavier And Heavier Objects
00:34
Mark Rober
Рет қаралды 41 МЛН
pumpkins #shorts
00:39
Mr DegrEE
Рет қаралды 108 МЛН
Part 5. Roblox trend☠️
00:13
Kan Andrey
Рет қаралды 2,9 МЛН
А что бы ты сделал? @LimbLossBoss
00:17
История одного вокалиста
Рет қаралды 8 МЛН
YOLO-World: Real-Time, Zero-Shot Object Detection Explained
17:49
Official YOLO v7 Custom Object Detection Tutorial | Windows & Linux
13:07
I learned to make Deepfakes... and the results are terrifying
16:19
Switching to Linux
11:05
AbsoluteVendingMachine
Рет қаралды 458 М.
Push-up Counting App - Official YOLOv7 Pose Estimation | CPU & GPU
35:52
Is Windows RUINING your Coding Career?
10:52
Harkirat Singh
Рет қаралды 105 М.
YOLOv8 Instance Segmentation on Custom Dataset | Windows & Linux
14:13
Flipping Robot vs Heavier And Heavier Objects
00:34
Mark Rober
Рет қаралды 41 МЛН