Пікірлер
@philipgeorgiev
@philipgeorgiev 8 сағат бұрын
I cannot find which yolo has annotations for a dataset, there are so many versions.
@allea-zb7kl
@allea-zb7kl 18 сағат бұрын
hi, I have a question. if I divide the dataset into training and testing only, is it necessary to run the validation part? and if not, during inference how to find out the mAP? plis help me🙏
@shikhugupta2703
@shikhugupta2703 18 сағат бұрын
Hello, the test.py you are working is not same as in repository. I am facing error. Can you please guide?
@yoshimochii
@yoshimochii 22 сағат бұрын
great video! just wanna ask, how did you split your data into train and val? is it 70-30?
@vitaminassrl3993
@vitaminassrl3993 Күн бұрын
unfortunely there is an error on step pip install -r requirements.txt and is impossible to continue with the tutorial....
@dixsonjoy5394
@dixsonjoy5394 Күн бұрын
where will i get the images?
@MrXemiu
@MrXemiu Күн бұрын
Did anyone else notice the MILFDAD license plate? At first glance it's obnoxious, but when you think about it, it's even worse. What kind of father refers to their daughter as a MILF?
@ghostwanted5510
@ghostwanted5510 Күн бұрын
First of all, thank you very much for your wonderful work in sharing your knowledge... I confess that I'm a beginner and I've never programmed in my life, I'm suffering a lot, but I see that with each step I learn a little, I still have a lot of doubts, but that's ok, I'm absorbing the knowledge and who knows, I'll improve, but I'm extremely grateful, very thank you great master.
@kemalemanetoglu3117
@kemalemanetoglu3117 Күн бұрын
First of all, thank you for your generosity in sharing your knowledge. I discovered you recently while doing research on license plate recognition systems. Do you have an e-mail address? From turkey.
@user-lk3zh1wg6y
@user-lk3zh1wg6y Күн бұрын
Great 🩵🙌🏻
@user-zt6kk7lm4z
@user-zt6kk7lm4z Күн бұрын
sir can you help me to solve this problem INFO: Created TensorFlow Lite XNNPACK delegate for CPU. WARNING: All log messages before absl::InitializeLog() is called are written to STDERR W0000 00:00:1715595257.639723 5688 inference_feedback_manager.cc:114] Feedback manager requires a model with a single signature inference. Disabling support for feedback tensors. W0000 00:00:1715595257.684985 5688 inference_feedback_manager.cc:114] Feedback manager requires a model with a single signature inference. Disabling support for feedback tensors.
@moditagrawal1846
@moditagrawal1846 2 күн бұрын
Your videos are amazing! Clear explanations, easy to follow, and super helpful. Thanks for all you do! Can you please bring a video explaining Anomalib too?
@ComputerVisionEngineer
@ComputerVisionEngineer Күн бұрын
Thank you! I will try to do a video about it. 🙌
@devdiptabiswas3072
@devdiptabiswas3072 2 күн бұрын
will this work with the base free version available for aws?
@ComputerVisionEngineer
@ComputerVisionEngineer Күн бұрын
Some of the aws services we use in this video are not in the aws free tier.
@aerogrampur
@aerogrampur 2 күн бұрын
Great video. Can I tag people with unique ids as well?
@anubhavthakur2985
@anubhavthakur2985 2 күн бұрын
Amazing VIdeo. Gotta see if yolov8 holds up to my data though
@SaksitUSE
@SaksitUSE 2 күн бұрын
Object detection or Semantic segment should i learn first
@ComputerVisionEngineer
@ComputerVisionEngineer Күн бұрын
You can learn them in any order. 🙌
@devdiptabiswas3072
@devdiptabiswas3072 3 күн бұрын
I tried to run this code in my system with a pretrained-model yolo model for license plate recognition but I'm having these issues 1) the results are not being written in the csv file 2) when showing the frames that the model is extracting are oddly tiny it would be helpful if someone can explain what is going on as I am confused regarding this
@sebastiangaviria9539
@sebastiangaviria9539 4 күн бұрын
Me volví fan tuyo, qué capo, tus explicaciones son maravillosas. Gracias por todo tu trabajo, me inspiraste más a llevar mi carrera a otro nivel. Te saluda y agradece un Ingeniero Físico :D
@ComputerVisionEngineer
@ComputerVisionEngineer 3 күн бұрын
Gracias! Me alegra que el contenido sea útil! 😃🙌
@user-xe7ww4py7u
@user-xe7ww4py7u 4 күн бұрын
How can I contact you? i'm ready to pay for your help
@thangaaadharshanatp6201
@thangaaadharshanatp6201 4 күн бұрын
give me a idea,my project is face attendance sytem using face-api first thing the webcam starts face capture and then splited into frames ,frames can be converted into images, images converted into embeddings that can be stored in mongodb and then compare the embedding with the newly given image that also converted into embeddings that embeddings can compare with previous stored embeddings in mongodb give a correct image
@mohamedlhachimi2933
@mohamedlhachimi2933 4 күн бұрын
i think guys to solve this problem we had to tell the collect data script to save just frames where he could detect our hands else we will store bad models that will ends with this getting errors like "inhomogeneous shapes" , i actually try to solved this problem by not moving my hand when collecting data and making my model else you can try this code to check your images that are stored This script will only print the paths of the images that are deleted due to no hands being detected. It won't display any image windows. ##########################################" import os import cv2 import mediapipe as mp def process_and_show(image_path, mp_drawing): mp_hands = mp.solutions.hands hands = mp_hands.Hands() # Read the image image = cv2.imread(image_path) image_rgb = cv2.cvtColor(image, cv2.COLOR_BGR2RGB) # Detect hands and landmarks results = hands.process(image_rgb) if not results.multi_hand_landmarks: print(f"Deleted image: {image_path}") # Delete the image with no hands detected os.remove(image_path) # Path to your data folder containing subfolders data_folder = "data" mp_drawing = mp.solutions.drawing_utils mp_drawing_styles = mp.solutions.drawing_styles # Iterate through subfolders for folder_name in os.listdir(data_folder): folder_path = os.path.join(data_folder, folder_name) if os.path.isdir(folder_path): print(f"Checking images in folder: {folder_name}") # Iterate through images in the folder for filename in os.listdir(folder_path): if filename.endswith(".jpg") or filename.endswith(".png"): image_path = os.path.join(folder_path, filename) process_and_show(image_path, mp_drawing)
@samb23692
@samb23692 4 күн бұрын
HI, I have a project wherein, I have to segment multiple classes, how do i go about it? What changes do I need to make in the code?
@mja3145
@mja3145 4 күн бұрын
Very helpful insights
@ikramessafi9560
@ikramessafi9560 5 күн бұрын
Thank you a lot, I would like to know how to exploit the results of a trained model on unseen data.
@NathanCamillerii
@NathanCamillerii 5 күн бұрын
Would this also apply to keypoint detection using YoloV8 please?
@ComputerVisionEngineer
@ComputerVisionEngineer Күн бұрын
I think it is likely to have similar results in a keypoints detection problem.
@rahulbharadwaj6940
@rahulbharadwaj6940 5 күн бұрын
Where can I find the video of the parking lot you have used?
@ComputerVisionEngineer
@ComputerVisionEngineer 4 күн бұрын
The video is from pexels.
@JeremyBirba
@JeremyBirba 5 күн бұрын
Hello, thank you so much for this video ! I trained my model, but the labels can't be found and I do not know why. The labels have the same names as the images, they are in .txt , yolo format and in the folder "labels". And I have used the ultimate path. Do you have any idea why ?
@abhisheknegi2888
@abhisheknegi2888 3 күн бұрын
Yes I am encountering the same problem. Please pass the feedback if you get any solution.
@JeremyBirba
@JeremyBirba Күн бұрын
@@abhisheknegi2888 I have found a solution. In my case, I have the "images" and "labels" folders. In both of them, I have "train", "val" and "test". Then I put all the labels in the three folders present in the "labels" folder. I hope my explanation is clear. Good luck
@septian5761
@septian5761 5 күн бұрын
can i ask how can you moved this into mobile / android studio
@litziadrianacruz7583
@litziadrianacruz7583 6 күн бұрын
Hi! Thanks for the video! I'm curious, is it possible to combine yolo for the detection of an object and a multimodal like LLaVA to have a description of the object?
@vasilisvasileiou8406
@vasilisvasileiou8406 6 күн бұрын
hello sir!, Is it possible to train an easyOCR model to detect images based on my own dataset?
@SpeerKING
@SpeerKING 6 күн бұрын
Hey very nice Video, i am very new to this topic. Where do you get the .txt files in the labels folder?
@ukam161
@ukam161 6 күн бұрын
Thanks for the tutorial! In X-Ray tutorial if we increase an image size from 224x224 to 448x448 for example, will it increase the accuracy of the model?
@ComputerVisionEngineer
@ComputerVisionEngineer Күн бұрын
Increasing the image resolution may help to train a more accurate model.
@josmp1169
@josmp1169 7 күн бұрын
how can i make it in real time, i mean no pre recorded video, real time video like stream ?
@beshoosama6166
@beshoosama6166 7 күн бұрын
Will this work on a person?
@linley2036
@linley2036 7 күн бұрын
Thank you for this video, I am currently working on my thesis and content like yours helps me understand topics more quickly. God bless you.
@user-uq4mc9yu8t
@user-uq4mc9yu8t 7 күн бұрын
🦾🦾🦾🦾
@afjamo
@afjamo 7 күн бұрын
Wonderful! I was wondering why prediction didn't work with your alpaca tutorial video. No I completely understood. I tested my scripts with only 56 images and did not get any prediction. I will increase the number of images! Bravo! I appreciate your work!!
@ComputerVisionEngineer
@ComputerVisionEngineer 7 күн бұрын
Glad the content is helpful! 😃🙌
@micocoloso1621
@micocoloso1621 7 күн бұрын
Your videos are very helpful! Thank you so much! However I have a question, If i want to do a multiclass object detection, do i need separate training folders or do i just put every image with different classes in one folder?
@andrewkarp
@andrewkarp 7 күн бұрын
@ComputerVisionEngineer thank you for this detailed video, much appreciated!
@andrewkarp
@andrewkarp 7 күн бұрын
Anyone else encountering this error "Unable to locate package Nvidia-driver-450
@andrewkarp
@andrewkarp 7 күн бұрын
Solved it, I created a server with an incorrect Ubuntu version.
@babcidy7963
@babcidy7963 8 күн бұрын
Hey, thank you very much. this was helpful. But when it’s done training, in the detects folder, the images have no bounding boxes. Please advice
@FazriGading
@FazriGading 8 күн бұрын
Wow. you are amazing bro. Thank you so much for teaching me this!!!
@topboydamz3937
@topboydamz3937 8 күн бұрын
Hello please I need help, I have a question
@miladsayedi59
@miladsayedi59 8 күн бұрын
can we make this project with pose detection models like openpose or deeppose? and what is the difference
@user-ej5nt6lk3q
@user-ej5nt6lk3q 8 күн бұрын
This is the best project walkthrough I can find till now. By the way love the italian accent. Sounding like the godfather is himself teaching you😂
@ComputerVisionEngineer
@ComputerVisionEngineer 6 күн бұрын
😂 Thank you! My native language is Spanish, though. 🙂
@srikantapramanik3689
@srikantapramanik3689 9 күн бұрын
The best tutorial I've ever seen. ❤ Can you please provide us the link of the annotated dataset including the train and val images, bcz it's take lot of time to annotate all the images. so that we can use it. Thank you. ❤
@confidenceoguebu7070
@confidenceoguebu7070 9 күн бұрын
Thanks for this tutorial. I didn't see how you normalized the images before training. Could you please explain more about image normalization for YOLOv8 training?
@hetti4055
@hetti4055 9 күн бұрын
How can I use this for a react native mobile app
@Mareafatima
@Mareafatima 9 күн бұрын
How to make fake facial recognition?