Hello Aarohi Your channel is very knowledgeable & helpful for all Artificial Intelligence/ Data Scientist Professionals. Stay blessed & keep sharing such a good content.
You need to change the values here for vertical line: cv2.line(frame,(172,198),(774,198),red_color,3) # starting cordinates and end of line cordinates cv2.putText(frame,('red line'),(172,198),cv2.FONT_HERSHEY_SIMPLEX, 0.5, text_color, 1, cv2.LINE_AA) cv2.line(frame,(8,268),(927,268),blue_color,3) # seconde line cv2.putText(frame,('blue line'),(8,268),cv2.FONT_HERSHEY_SIMPLEX, 0.5, text_color, 1, cv2.LINE_AA)
Great work! Can you also explain the difference between YOLO NAS and YOLO V8 model in your upcoming video series!? discussing about its specific use cases/ functionalities
Unable to import tracker, also installed it using !pip install tracker, getting error as follows: ImportError: cannot import name 'izip_longest' from 'itertools' (unknown location)
Thank you for this video. How could I use this on a custom model? I have changed the model=YOLO('my_best_weight.pt') class_list=['my_class_name']. Why can't I detect any object? However, I can detect it with this code: from ultralytics import YOLO !yolo task=detect mode=predict model='my_best_weight.pt' conf=0.25 source= '0626.mp4'
I am sorry, I don't have this video now but htere is another video present in this repo. You can try that: github.com/AarohiSingla/Track-and-Count-Using-yolov9
I appreciate aarohi ma'am for all your efforts in explaining. Thank you very much
It's my pleasure
Hello Aarohi
Your channel is very knowledgeable & helpful for all Artificial Intelligence/ Data Scientist Professionals. Stay blessed & keep sharing such a good content.
My go-to channel for learning Computer Vision
That's great to hear! I'm glad you find my video helpful for learning Computer Vision.
Lots of love from Lahore Pakistan.your videos are extremely beautiful in understanding core concepts
Glad you like them!
you are the best , thank you
You're welcome!
Its worth watching again and again
Thank you!
Amazing
Thanks
Thank you for sharing these invaluable tutorials
You are welcome!
golden content
thanks
how can i get your video dataset
Mam i want to make hybrid of yolo and faster at what step it can be done plz reply
thank you , could i ask you , how to make the same thing having a vertical line
You need to change the values here for vertical line:
cv2.line(frame,(172,198),(774,198),red_color,3) # starting cordinates and end of line cordinates
cv2.putText(frame,('red line'),(172,198),cv2.FONT_HERSHEY_SIMPLEX, 0.5, text_color, 1, cv2.LINE_AA)
cv2.line(frame,(8,268),(927,268),blue_color,3) # seconde line
cv2.putText(frame,('blue line'),(8,268),cv2.FONT_HERSHEY_SIMPLEX, 0.5, text_color, 1, cv2.LINE_AA)
@@CodeWithAarohi thank you so much
Great work! Can you also explain the difference between YOLO NAS and YOLO V8 model in your upcoming video series!? discussing about its specific use cases/ functionalities
Sure
from tracker import* giving error any solution mam
but I need specific count, like
Bus - 1
Truck - 2
CoverVan - 3
Motorcycle - 5
You can modify the code to run the counter for each object instead of all objects together.
Great tutorial. Can you provide the video that you're using? (highway_mini.mp4)
Youc an get it from here: github.com/AarohiSingla/Speed-detection-of-vehicles
Thank you! Do you think it would work using YOLOv8n?
Yes it will
Unable to import tracker, also installed it using !pip install tracker, getting error as follows: ImportError: cannot import name 'izip_longest' from 'itertools' (unknown location)
tracker.py is a file which is available on the mentioned github link. Paste it in your directory.
Not able to import tracker in python showing error please help
Make sure that you have a tracker.py file in the same directory where your Jupyter notebook is.
Can you please share the requirement file to run the code.
python 3.9, ultralytics==8.0.66 , pytorch 2.1.2 with cuda 11.8
Thank you for this video.
How could I use this on a custom model? I have changed the
model=YOLO('my_best_weight.pt')
class_list=['my_class_name'].
Why can't I detect any object?
However, I can detect it with this code:
from ultralytics import YOLO
!yolo task=detect mode=predict model='my_best_weight.pt' conf=0.25 source= '0626.mp4'
Can i get the video named highway_mini.mp4
I am sorry, I don't have this video now but htere is another video present in this repo. You can try that: github.com/AarohiSingla/Track-and-Count-Using-yolov9