At the age of 5 : Using paper and pen to draw 😭 At the age of 10 : Using MsPaint to draw 😂 At the age of 15 : Using OpenCV to draw 😎 Tim works so hard 😘 so it's the duty of his every viewer to subscribe. Right Tim?
Tim, your videos are great and I always learn something new from you. Your style keeps me on track with just the right amount of information to keep me focused and not all over the place like I usually am. Im a big fan of all your videos but I very much look forward to the next video in this series!
Hi, I am your new subscriber who from South Korea. I am studying degree Computing Science in Singapore. I watched your video. Your coding skill looks very awesome. I really want to have good coding skills. I am feel very respectful to you
Where are you from ? I'm french and I can understand 100% of what you're saying. Perfect accent for me. And obviously, your tutorial is also perfect : opencv appears to be easy. Great!
here beside using cap.get(3) and cap.get(4) for width and height, we can also use frame.shape[0] and frame.shape[1] for height and width, so is there any reason for using the .get() method? He also then convert the value of cap.get() in int, while we get value from frame.shape already in integer.
Using cap.get(3) and cap.get(4) ensures consistency across different video files, not all videos may have frames of the same size, and using the get() method guarantees that you are getting the width and height information directly from the video file
Nice video, again. Great to code along and play around. I am currently taking an online course and it´s rather boring, compared to this. So thanks and I am really looking forward to the next parts.
Great Videos Tim! A question I have is at 3:52, you changed frame to img so the next line will be drawn on top of img. However, it seems to work for me by just writing cv2.rectange(...)? (So we remove img keep the first argument as frame) I played around with drawing 5 rectangles on top of each other, and defining each cv2.rectangle(...) as img1, img 2 etc. It would always draw 5 rectangles on top of each other, no matter what i put into the first argument of cv2.rectangle(), and no matter which I showed for cv2.imshow('frame', img...) I was wondering if this is the same for you? i.e. does defining img and writing cv2.rectange(img,...) actually do anything unique, since it doesn't seem to for me
quick question! in your video at around 3:23 changed cv2.imshow('frame', frame) to cv2.imshow('frame', img) is there an important difference? I ran it both ways and they both worked. Great video BTW!
hi, can you please help me with my script. i am trying to save the image detected by opencv and yolov5 custom model. and i need to save the whole image when the object detected.thanks in advance
Hi , i am using ubuntu but unable to install opencv with python 3.7.3 version there is an error stoping me to go ahead. Would you help me out plz .(using jupyter notebook) 🙂
Hello, I just saw you have a video titled 'Why You Should STOP Using an IDE (Integrated Development Environment)', yet you're still using an IDE. Does that mean the video was complete clickbait to waste your viewers time for money, or was there some other reason? Thank you in advance for the answer.
Hi. Did you watch the video? I don’t feel it was a waste of time otherwise I would not have created or posted it. Funny thing is in this series I’m actually not using an IDE. This is a text editor not a full pledged ide... Before you make such assumptions I’d encourage to watch the video in question, hopefully I can articulate in that video why i titled the video as such.
I liked the animation used for explaining the arguments. Nice improvement. Thanks, Tim
Working on an image/motion detection project right now, these videos came at the perfect time! Good stuff!
Thanks! Best of luck on your project :)
Absolutely wonderful series, definitely can't wait for the next tutorial! Keep on educating us Tim!
At the age of 5 : Using paper and pen to draw 😭
At the age of 10 : Using MsPaint to draw 😂
At the age of 15 : Using OpenCV to draw 😎
Tim works so hard 😘 so it's the duty of his every viewer to subscribe. Right Tim?
im from iran i cann't speak english very well, i try to undrestand couse you are good teacher❤🌷 .
Great video, super easy to follow and understand. Solved a problem I immediately had with drawing rectangles!!
Tim, your videos are great and I always learn something new from you. Your style keeps me on track with just the right amount of information to keep me focused and not all over the place like I usually am. Im a big fan of all your videos but I very much look forward to the next video in this series!
2 years later, Tim is still great
This tutorials been so easy for me to follow, and I quickly feel like I am learning. Thanks!
Hi, I am your new subscriber who from South Korea. I am studying degree Computing Science in Singapore. I watched your video. Your coding skill looks very awesome. I really want to have good coding skills. I am feel very respectful to you
Great videos, the perfect length to stay interested
Ima download this vid. Currently doing a maths course but I'll be back for some relaxing programming
Where are you from ? I'm french and I can understand 100% of what you're saying. Perfect accent for me. And obviously, your tutorial is also perfect : opencv appears to be easy. Great!
I am working on the HTML code generator with element structure. Thanks bro, love u a lot
I was looking for this series Tim tnx👍
You are really great Tim!
Tim is in fact great!
cv2.LINE_AA enables Anti Aliasing (AA). You can add those to most of the draw functions (including cv2.line, .circle, .rectangle from this video)
here beside using cap.get(3) and cap.get(4) for width and height, we can also use frame.shape[0] and frame.shape[1] for height and width, so is there any reason for using the .get() method?
He also then convert the value of cap.get() in int, while we get value from frame.shape already in integer.
Using cap.get(3) and cap.get(4) ensures consistency across different video files, not all videos may have frames of the same size, and using the get() method guarantees that you are getting the width and height information directly from the video file
Nice video, this gives me inspirations
Amazing tutorial Tim!!!
12:55
tim: and after that thats baisicly all fo rthis tutorials series...
me: WHAT!?! he's already done?!
HaHa, I got scared and then realised that it was just a mistake by Tim
Nice video, again. Great to code along and play around. I am currently taking an online course and it´s rather boring, compared to this. So thanks and I am really looking forward to the next parts.
Great Videos Tim! A question I have is at 3:52, you changed frame to img so the next line will be drawn on top of img. However, it seems to work for me by just writing cv2.rectange(...)? (So we remove img keep the first argument as frame)
I played around with drawing 5 rectangles on top of each other, and defining each cv2.rectangle(...) as img1, img 2 etc. It would always draw 5 rectangles on top of each other, no matter what i put into the first argument of cv2.rectangle(), and no matter which I showed for cv2.imshow('frame', img...)
I was wondering if this is the same for you? i.e. does defining img and writing cv2.rectange(img,...) actually do anything unique, since it doesn't seem to for me
Thanks Tim!!!!!!!!!
Will you have a video combining OpenCV & TKinter?
img and frame are the same thing, you can verify it yourself by doing assert id(img) == id(frame)
quick question! in your video at around 3:23 changed cv2.imshow('frame', frame) to cv2.imshow('frame', img) is there an important difference? I ran it both ways and they both worked. Great video BTW!
I believe that is just the name of the window it’s displaying in.
Will you do Hands-tracking tutorials with Opencv?
Hey Tim could you make videos about Tkinter module?
Hey Tim I want to make curved lines in Opencv can you help me out🙏🙏
waiting for this thanks
heart
hi, can you please help me with my script. i am trying to save the image detected by opencv and yolov5 custom model. and i need to save the whole image when the object detected.thanks in advance
Hi , i am using ubuntu but unable to install opencv with python 3.7.3 version there is an error stoping me to go ahead. Would you help me out plz .(using jupyter notebook) 🙂
Is it possible to add a donnut instead of a circle with volume??
I mean, is it possible to add a simple circle without volume unlike the example?
how can we show 4 different video cameras in a single window like the one you did in the video with your camera
which package you are using in sublime
?
Good speed
Please make a video regarding django using automated tests
Tim. I liked... but 'axis' is spelled like this (not axsis). I chuckled. DrV
The delay when you're drawing on the video stream is very noticeable
Please create an api using flask and use docker, want to see end to end project.
Hello, I just saw you have a video titled 'Why You Should STOP Using an IDE (Integrated Development Environment)', yet you're still using an IDE. Does that mean the video was complete clickbait to waste your viewers time for money, or was there some other reason? Thank you in advance for the answer.
Hi. Did you watch the video? I don’t feel it was a waste of time otherwise I would not have created or posted it. Funny thing is in this series I’m actually not using an IDE. This is a text editor not a full pledged ide... Before you make such assumptions I’d encourage to watch the video in question, hopefully I can articulate in that video why i titled the video as such.
I completed your 1000th View at least gimme a Hii in reply ❤
Tim
Please tell the advance things which you will do in the series, like any ml stuff
2nd video...😅
I think u make mistake 6:15
Noice
Eighth
first
Congratulations 👏
Second
Third