Tracking Objects | OpenCV Python Tutorials for Beginners 2020

แชร์
ฝัง
  • เผยแพร่เมื่อ 27 พ.ย. 2024

ความคิดเห็น • 285

  • @murtazasworkshop
    @murtazasworkshop  2 ปีที่แล้ว +23

    If you are using the latest version of opencv contrib and you get the error
    AttributeError: module 'cv2' has no attribute 'TrackerMOSSE_create'
    use
    cv2.legacy.TrackerMOSSE_create()
    instead of
    cv2.TrackerMOSSE_create()

    • @proskurlandsky
      @proskurlandsky 2 ปีที่แล้ว +1

      but now it has no module legacy

    • @mangostain
      @mangostain 2 ปีที่แล้ว +5

      @@proskurlandsky please uninstall opencv-python and the install the opencv-contrib-python package
      pip uninstall opencv-python
      pip install opencv-contrib-python
      it worked for me

  • @TheNazbul
    @TheNazbul ปีที่แล้ว

    in the whole youtube nobody is better than you when it comes to explanation. no one can explain each and every line you do sir. this indicates how much you like coding. thank you sir i learnt a lot from you.

  • @douwebdevries
    @douwebdevries 4 ปีที่แล้ว +31

    When you get this error: OpenCV: camera failed to properly initialize!
    Try changing cap = cv2.VideoCapture(1) to cap = cv2.VideoCapture(0)

  • @aniketroy5865
    @aniketroy5865 3 ปีที่แล้ว

    You are really a savior for beginners like us, you provide us a headstart otherwise we had to bang our heads in long documents to get things done

  • @ChickenJY
    @ChickenJY 4 ปีที่แล้ว +3

    Dear Murtaza, a very big thanks for your help! Your video is sharp and crystal clear.

  • @antoniodome9306
    @antoniodome9306 4 ปีที่แล้ว +3

    Perfect for what i need, good luck with the next videos!

  • @fahimkamalahmed3544
    @fahimkamalahmed3544 4 ปีที่แล้ว +2

    Simple but clear explanation. Thank you ☺️

  • @kyriosabbes3737
    @kyriosabbes3737 4 ปีที่แล้ว +6

    Good work ☺️, we are waiting about YOLOv3 🔥🔥🔥

  • @karthikeyaanar
    @karthikeyaanar 3 ปีที่แล้ว +1

    Excellent Tutorial. Keep it up !!!

  • @ettiennegerwel6616
    @ettiennegerwel6616 3 ปีที่แล้ว

    Great tutorial! Very simple and clear. Awesome man.

  • @LeonardoJPaes
    @LeonardoJPaes ปีที่แล้ว

    wow!! awesome tutorial. Thank you very much for your explanation and the way of introducing the subject and all the useful tools for beginners like me!

  • @GasherProdStudio
    @GasherProdStudio 2 ปีที่แล้ว +2

    For those who would have an error when initializing the tracker : use cv2.legacy.TrackerMOSSE_create() because now the trackers have been moved in the legacy class since OpenCV 4.5.1

    • @abdifatahabdillahi6166
      @abdifatahabdillahi6166 2 ปีที่แล้ว +1

      it doesn't work for me bro, still trying to find solution

    • @cheken3136
      @cheken3136 ปีที่แล้ว

      Thanks bro, you are my hero .

  • @DerinMalik
    @DerinMalik 7 หลายเดือนก่อน

    thanks you open new goals to us

  • @hetthummar9582
    @hetthummar9582 3 ปีที่แล้ว +2

    if you get error
    " You might be loading two sets of Qt binaries into the same process. Check that all plugins are compiled against the right Qt binaries. Export DYLD_PRINT_LIBRARIES=1 and check that only one set of binaries are being loaded. Restarting kernel... "
    1.
    Make sure opencv-contrib-python-headless is installed
    (pip install opencv-contrib-python-headless)
    2.
    opencv-python, opencv-python-headless and opencv-contrib-python-headless version has to be same
    (For check version just write pip list|grep opencv-python)
    In my case all version are 4.3.0.36
    (pip install opencv-contrib-python-headless==4.3.0.36)

  • @zrlcproject
    @zrlcproject 4 ปีที่แล้ว +7

    I have tried to install opencv-contrib-python but it has the same error and it can't. TrackMOSSE_crate ()
    like this:
    tracker = cv2.TrackerMOSSE_crate ()
    AttributeError: module 'cv2.cv2' has no attribute 'TrackerMOSSE_crate'

    • @hridaanshugusain474
      @hridaanshugusain474 3 ปีที่แล้ว

      same, but I've spelled create correct lol

    • @haniefknight
      @haniefknight 3 ปีที่แล้ว

      @@hridaanshugusain474 hi how about now, are you still have the same problem? ive just install opencv-contrib-python and it doesnt work

    • @haniefknight
      @haniefknight 3 ปีที่แล้ว +2

      tracker = cv2.legacy.TrackerMOSSE_create()
      i found on stack overflow

    • @hridaanshugusain474
      @hridaanshugusain474 3 ปีที่แล้ว

      @@haniefknight ok i will try this. thank you

    • @hridaanshugusain474
      @hridaanshugusain474 3 ปีที่แล้ว

      @@haniefknight this worked thank you

  • @sujitvasanth2502
    @sujitvasanth2502 3 ปีที่แล้ว

    wonderful ! I love this - i didn't know opencv ad bui;t in trackers...your code is perfect..

  • @A3A3adamsan
    @A3A3adamsan 3 ปีที่แล้ว +10

    Even after adding opencv-contrib-python package (version 4.5), no MOSSE tracker was found, only MIL and GOTURN. Anyone knows why?

    • @anuraagsaxena7942
      @anuraagsaxena7942 3 ปีที่แล้ว +16

      change tracker = cv2.legacy_TrackerMOSSE.create()
      this might help

    • @bhanukadasanayaka3457
      @bhanukadasanayaka3457 3 ปีที่แล้ว

      @@anuraagsaxena7942 Thanks bro

    • @abeatperday9189
      @abeatperday9189 3 ปีที่แล้ว

      @@anuraagsaxena7942 thanks for this, it worked for me

    • @jishnupillai5295
      @jishnupillai5295 3 ปีที่แล้ว

      @@anuraagsaxena7942 thanks for this..it really helped. So what changes to be made if we are using another tracker?

    • @vinayakdhinde5606
      @vinayakdhinde5606 3 ปีที่แล้ว

      @@anuraagsaxena7942 Thanks Bro , It's working

  • @oleksandrromaniuk3557
    @oleksandrromaniuk3557 2 ปีที่แล้ว

    Thank you very much, very clear and with life example!

  • @leojax3275
    @leojax3275 3 ปีที่แล้ว

    Thank You Good Sir. Very good tutorial, very helpful. Have a wonderful day!

  • @Not0rious7
    @Not0rious7 4 ปีที่แล้ว +1

    Seriously, good work!!! This is a great intro.

  • @1phong.djk.392
    @1phong.djk.392 4 ปีที่แล้ว +3

    Thank you very much for upload wonderful tutorials. Keep going

  • @MrYyope15555
    @MrYyope15555 6 หลายเดือนก่อน

    Thank you so much sir!

  • @ingokaminski935
    @ingokaminski935 3 ปีที่แล้ว

    This helps me a lot... 👍 Thank you!!!

  • @jollysaintthicc3920
    @jollysaintthicc3920 3 ปีที่แล้ว

    Love your stuff! keep up the good work!!!

  • @siddharthrana512
    @siddharthrana512 2 ปีที่แล้ว

    any course of computer vision include person tracking under multiple overlapping cameras , so that there id does not change when they move from one camera to other.

  • @flexiadmin
    @flexiadmin ปีที่แล้ว

    awesome tutorial for my plane crazy plane ciws tracking

  • @playfifalikeapro9773
    @playfifalikeapro9773 3 ปีที่แล้ว +2

    thanks so much
    i just wanna ask you when I wanna run the code I see the error
    module 'cv2.cv2' has no attribute 'TrackerMOSSE_create'
    I am using Spyder IDE and I cant solve it
    plz help me
    thanks in advance

    • @PolarUVTeam
      @PolarUVTeam 3 ปีที่แล้ว +2

      Try
      tracker = cv2.legacy.TrackerMOSSE_create()
      and use only opencv-contrib-python library

  • @nishantgarg3688
    @nishantgarg3688 2 ปีที่แล้ว +1

    thanks bhai

  • @sanketyeru
    @sanketyeru 4 ปีที่แล้ว +3

    Your videos are awesome. I would like to request you to make a video on yolo detector combined with object tracker.

  • @aronhegedus
    @aronhegedus 3 ปีที่แล้ว

    really useful tutorial, thank you!
    It would. be useful for beginners to tell them where they could go if they get stuck (google, or documentation)

    • @easonvictor3749
      @easonvictor3749 2 ปีที่แล้ว

      speaking of which, do you know why my external camera wouldn't pick up any feed besides the gray void of absolotly nothin?

  • @magelauditore333
    @magelauditore333 4 ปีที่แล้ว

    Great and very detailed explanation. Thanks a lot

  • @rodrigobucrin7912
    @rodrigobucrin7912 4 ปีที่แล้ว +2

    Thank you for your quality contributions!

  • @havehalkow
    @havehalkow 3 ปีที่แล้ว +1

    I'm not using PyCharm but Sublime Text and CMD. I pip installed the opencv-contrib-python package which was successfully done, however the error is still there

  • @rashasalim1259
    @rashasalim1259 3 ปีที่แล้ว

    Thanks! This was really informative
    I would like to ask you for advice in case I needed the speed estimate of the moving object.
    Thanks!

  • @selcukmisir2399
    @selcukmisir2399 4 ปีที่แล้ว

    Great videos again and again! Thanks

  • @1_and_only_Crjase
    @1_and_only_Crjase 3 ปีที่แล้ว

    Thank you. Great tutorial.

  • @oladapoafolabi274
    @oladapoafolabi274 ปีที่แล้ว

    I want to learn how to set up Robot arm performing orientation identification, pick and place cube object using artificial intelligence in webots simulation environment

  • @aykutsirma4260
    @aykutsirma4260 3 ปีที่แล้ว +1

    tracker = cv2.TrackerMOSSE_create()
    AttributeError: module 'cv2.cv2' has no attribute 'TrackerMOSSE_create'
    I have installed opencv-contrib-python as first and I have installed opencv-python too. However, once I uninstall the opencv-python and keep the opencv-contrib-python. Then python compiler gives error about "You don't have cv2"... Do you know how to solve this issue? thank you.

  • @josephadamu2723
    @josephadamu2723 4 ปีที่แล้ว +1

    hello please i have a question concerning filters (gaussian, median, bilateral and averaging) associated with OpenCV. I have seen some tutorials using gaussian blur for object detection i would like to know why this particular filter is used for object detection, why is it the best and what are the features that differ from other 3 filters that i have mentioned.

    • @murtazasworkshop
      @murtazasworkshop  4 ปีที่แล้ว +1

      Median Filter is to remove Salt Pepper Noise
      Bilateral gives a painting feel. It uses weighted average of surrounding pixels.
      Guassian filter uses convolution . This means futher pixels get lower weights
      Averaging. uses single averaged value for all surrounding pixels.
      It depends on the situation . Guassian is good but it is slower than Averaging.

  • @coolprojects5297
    @coolprojects5297 3 ปีที่แล้ว

    Thank you for nice work,,, but please when I run the code it stuck and the camera did not update the view why did this happen?

  • @1wanqo1
    @1wanqo1 4 ปีที่แล้ว

    cap = cv2.VideoCapture(0, cv2.CAP_MSMF)

  • @dompower500
    @dompower500 4 ปีที่แล้ว +2

    Dear Sir, I am following all your training videos. Excellent and easy to follow. I always get positive result too. There are many tranining videos available in youtube for the same subject. But your videos are the best and error free. Thank you very much sir.
    My request: Pls can you also make a traning video for car license plate recognition using TF? thanks in advance. Also pls provide your email sir.

  • @theengineered1949
    @theengineered1949 3 ปีที่แล้ว +4

    Wonderful video. I am trying to make a motor move using the tracked object. How do you export the x,y,w,h ?

  • @samirakhrif3098
    @samirakhrif3098 4 ปีที่แล้ว +1

    hello.please can you enplane in video haw calcul speed of the cars

  • @satya5561
    @satya5561 3 ปีที่แล้ว

    Can you please help me to find vision based vibration on any object using python

  • @josueperrit
    @josueperrit 3 ปีที่แล้ว +1

    Is there a way to know the first frame at which the bbox starts moving?

  • @thaibaohuynh1298
    @thaibaohuynh1298 2 ปีที่แล้ว

    Can you share the video you used to test?

  • @kristaqvin
    @kristaqvin 4 ปีที่แล้ว +3

    The first frame is just an orange square. Then, after I press enter, it shows me the webcam video

  • @selenaycakc9584
    @selenaycakc9584 3 ปีที่แล้ว

    Great thanks Sir! I have a question: how can I add a custom trained model to this code? can anyone help me? my own model is ready with yolov4.

  • @tjssr8261
    @tjssr8261 3 ปีที่แล้ว

    Sir, this video helped me a lot. Thank you so much. I am using Spyder for Python. Where can I see the values of the x, y ,w and h in my window?
    PLease help me sir.

  • @alexhernandez8550
    @alexhernandez8550 4 ปีที่แล้ว

    some advice I would not recommend using cv2 to capture the screen use mss also I would try PyGLM or numpy for better performance .

  • @technoshamanarchist
    @technoshamanarchist 2 ปีที่แล้ว

    Thank you for this wonderful tutorial! However, the page for the code is no longer available :(

  • @sankasuvarna1764
    @sankasuvarna1764 4 ปีที่แล้ว

    Hi sir u can label the names the tracked images so that will be much better any way this is also a superb tutorial

  • @yashdggjs
    @yashdggjs 4 ปีที่แล้ว +2

    who are you mannn who are you awesome workss,ı really admire you

  • @abeerilyas8337
    @abeerilyas8337 9 หลายเดือนก่อน

    Sir, I would like some suggestion. How can we implement this if the object is moving and we are doing real time tracking?

  • @gregoryM101
    @gregoryM101 4 ปีที่แล้ว +1

    Can you save these selected object for tracking and reuse it without having to select it again? Perhaps set up a library of objects that can be reused as needed?

    • @murtazasworkshop
      @murtazasworkshop  4 ปีที่แล้ว

      usually its detection and then tracking. so if tracking is lost detection can kick in again. The selected region could be saved but since tracking is sensitive to variance you might not get good results.

  • @shravannanjunda
    @shravannanjunda 4 ปีที่แล้ว +2

    If it was controlled with servo motors ...pan and tilt it would be awesome

    • @murtazasworkshop
      @murtazasworkshop  4 ปีที่แล้ว +1

      ill look into that

    • @munibmarwan
      @munibmarwan 2 ปีที่แล้ว

      I'm trying to work on something similar ..

    • @munibmarwan
      @munibmarwan 2 ปีที่แล้ว

      @@murtazasworkshop I'm trying to work on something similar, is there anything you can add might help me to take the first step in it? .. Thank you for your time.

  • @elixpo
    @elixpo 3 ปีที่แล้ว

    I am not getting the open-cv contrib, it always says not available even after downloading by PIP too

  • @ssaniljainn
    @ssaniljainn 3 ปีที่แล้ว +1

    Can you make a tutorial on Kalman Filters? Especially in object tracking for state estimation and in some cases, for the velocity estimation. The whole Computer Vision world, it seems, is looking out for the subject to be more implementable if clear. Would be grateful if you could do the honors :)

  • @einjhellace
    @einjhellace 3 ปีที่แล้ว

    Is it possible to do this using 2 cameras, perpendicular to each other, showing the XY coordinate for one and YZ on the other?

  • @j4s0n67
    @j4s0n67 4 ปีที่แล้ว +2

    how do you install opencv2-contrib-pyhton on terminal?

    • @abhaysharma1139
      @abhaysharma1139 3 ปีที่แล้ว +2

      just type "pip install opencv-contrib-pyhton" in your command prompt

  • @lobdooks
    @lobdooks 3 ปีที่แล้ว

    For some reason after I click "enter" when I select an object to track it gives me the error message for "cv.rectangle(img,(x,y),((x+w... (that thing)" that says "TypeError: function takes exactly 4 arguments (2 given)" how do I fix this?

  • @TECHNICALHUBInfo
    @TECHNICALHUBInfo 4 ปีที่แล้ว

    Hello sir. Sir how to detect any bird or any small object plzzz guide me

  • @AbdullahJirjees
    @AbdullahJirjees 3 ปีที่แล้ว

    Hi, thanks a lot for this tutorial, I am following exactly what you doing but when I draw the square on the object it keeps showing LOST status, I am using VS Code and I installed pip install opencv-contrib-python to my environment.
    what I am missing??

  • @AjibesinSamson
    @AjibesinSamson 3 ปีที่แล้ว

    If I want to track objects in a video and make use of a detector such as YOLOv4, how can I go about it?

  • @AbdulHannan-dg8by
    @AbdulHannan-dg8by 3 ปีที่แล้ว +1

    Trackermosse create not present in cv2
    I am havin this error, tracKerMOSSE_create() attribute is not working.
    can anyone please help..
    I have a project and i really need this.

  • @bilalahmadai
    @bilalahmadai 3 ปีที่แล้ว

    Kindly sir make video on gestures for mouse

  • @shivadumnawar7741
    @shivadumnawar7741 3 ปีที่แล้ว

    Thank you sir.

  • @dennisasamoah2213
    @dennisasamoah2213 3 ปีที่แล้ว

    great video as always

  • @teobong6939
    @teobong6939 4 ปีที่แล้ว +2

    It workn't. You put the tracker code outside the while loop so its just a picture with a rectangle on it

    • @AlmaasAAli
      @AlmaasAAli 4 ปีที่แล้ว

      How did you solve this? So that there is an image(from the camera) at the start while initialising the tracking.

    • @ahmedshiref4935
      @ahmedshiref4935 4 ปีที่แล้ว

      when you press enter it comes non frozen new screen

  • @carloscusiter2972
    @carloscusiter2972 4 ปีที่แล้ว +2

    How would you track multiple objects?

    • @AlmaasAAli
      @AlmaasAAli 4 ปีที่แล้ว

      This would be interesting to see.

  • @milesgiehtbrock8510
    @milesgiehtbrock8510 3 ปีที่แล้ว

    how do we implement trackers into robotics? The output coordinates tell a robot arm to go to that position for example.

  • @prajjwal1642
    @prajjwal1642 2 ปีที่แล้ว

    sorry sir but the cv2.TrackerMOSSE_create() function is not working in other ide s. can you give an alternative? also a request to build a project on social distancing using opencv

  • @lusher00
    @lusher00 2 ปีที่แล้ว

    selectROI only gives me a black box to draw on. Even if I just select a black region is continues to show me a black frame.

  • @teezhenquan5855
    @teezhenquan5855 3 ปีที่แล้ว

    Love your work. Can you share tracking with C++ as well

  • @manoubilahbib2572
    @manoubilahbib2572 2 ปีที่แล้ว

    Hey !
    How can i install the package that contains all the trackers on thonny python IDE because i am using a raspberry pi ?

  • @Mark-Zuckerberg
    @Mark-Zuckerberg 4 ปีที่แล้ว +11

    This code isn't working window is freeze on the first frame.

    • @murtazasworkshop
      @murtazasworkshop  4 ปีที่แล้ว

      It is suppose to freeze on the first frame so that you can select the object you want to track

    • @Mark-Zuckerberg
      @Mark-Zuckerberg 4 ปีที่แล้ว

      @@murtazasworkshop No it continuously freezes the 1st frame.

    • @emilio4961
      @emilio4961 4 ปีที่แล้ว

      @@Mark-Zuckerberg how did you fix it ??

    • @Poo1199-c1o
      @Poo1199-c1o 4 ปีที่แล้ว

      were u able to resolve it?

  • @kj4051
    @kj4051 4 ปีที่แล้ว

    Thanks for great project. But how to get cv2.selectROI while in the loop?

  • @afifabinteislam4675
    @afifabinteislam4675 3 ปีที่แล้ว

    And when I installed OpenCV-contrib-python for the first time, my video was not capturing and I got panicked. then uninstalled it and installed it again. then it worked. I don't know any other way to solve the issue. if you do, please let me know

  • @thienduyen2518
    @thienduyen2518 4 ปีที่แล้ว

    Thanks Pro!

  • @hemanthy2835
    @hemanthy2835 3 ปีที่แล้ว

    For the same application can we have a circular tracker instead of a rectangular one? If so, how?

  • @ahmadmaleh
    @ahmadmaleh 4 ปีที่แล้ว

    Hi, Is it possible to know all pixels of the detected object? because I want to change the object color after that.

  • @amitdutta3875
    @amitdutta3875 3 ปีที่แล้ว

    Is its possible to calculate distance
    using openCV???

  • @ohnoooooo3831
    @ohnoooooo3831 4 ปีที่แล้ว

    hey thanks.
    but if we have the same problem with the trackerCSRT_create but on spyder(anacondaà.
    how can we solve it ?

  • @andky1991
    @andky1991 3 ปีที่แล้ว +1

    Keep it simple:
    x,y,w,h = bbox

  • @thienduyen2518
    @thienduyen2518 4 ปีที่แล้ว

    You are the Best! Haha!

  • @mustafaaslan1520
    @mustafaaslan1520 2 ปีที่แล้ว

    i use win 10 and help me pls cv2.error: OpenCV(4.6.0) D:\a\opencv-python\opencv-python\opencv\modules\highgui\src\window.cpp:1267: error: (-2:Unspecified error) The function is not implemented. Rebuild the library with Windows, GTK+ 2.x or Cocoa support. If you are on Ubuntu or Debian, install libgtk2.0-dev and pkg-config, then re-run cmake or configure script in function 'cvShowImage'

  • @FoodKannadaVlog
    @FoodKannadaVlog 3 ปีที่แล้ว

    'cv2' has no attribute 'TrackerMOSSE_create'
    I
    got this type of error. installing the pip install opencv-contrib-python I install this library still get the same error so. please tell me what extra library can install

    • @acfromspace
      @acfromspace 2 ปีที่แล้ว

      The attribute moved to the legacy api, so in order to access it it has to be "cv2.legacy.TrackerMOSSE_create()" instead of "cv2.TrackerMOSSE_create()"

  • @enarm5947
    @enarm5947 3 ปีที่แล้ว

    "Status: Tracking" shows when the tracker is working, but when it loses an object. Is the "status" changing?

  • @twinklewolf6794
    @twinklewolf6794 4 ปีที่แล้ว +2

    Awesome keep going🔥🔥
    But why did u delete arduino tutorial?

    • @murtazasworkshop
      @murtazasworkshop  4 ปีที่แล้ว +2

      Thanx. They are not ready yet

    • @twinklewolf6794
      @twinklewolf6794 4 ปีที่แล้ว +1

      @@murtazasworkshop
      so when you finish them all u gonna upload them again?
      hope so cuz those two videos were amazing tutorial to be honest❤️

    • @murtazasworkshop
      @murtazasworkshop  4 ปีที่แล้ว +2

      @@twinklewolf6794 Yes

    • @twinklewolf6794
      @twinklewolf6794 4 ปีที่แล้ว +1

      @@murtazasworkshop
      Can't wait 🔥🔥🔥

  • @nadiamumtaz6270
    @nadiamumtaz6270 4 ปีที่แล้ว

    Thanks for sharing but i m facing one issue, that it misses the target but still says tracking instead of lost? Why

  • @saltanatseitzhan625
    @saltanatseitzhan625 4 ปีที่แล้ว

    great video! also, how could one track multiple objects?

  • @pinehteshapple3666
    @pinehteshapple3666 4 ปีที่แล้ว

    can we use mobile camera instead of webcam

  • @zack-ow9yl
    @zack-ow9yl 4 ปีที่แล้ว

    I am not able to add the OpenCV package because the plus sign isn't highlighted when I click "Python Interpreter." Also, can you make a video on tracking multiple objects at once?

  • @SAMETELMACI
    @SAMETELMACI 3 ปีที่แล้ว

    thanks, where is this procects code

  • @amr6657
    @amr6657 2 ปีที่แล้ว

    how to reset tracker init without restart program?

  • @ajayspatil
    @ajayspatil 3 ปีที่แล้ว

    Video is perfectly made. But, I am still getting cv2 has no attribute 'TrackerMOSSES_create even after installing contrib python.?

    • @aronhegedus
      @aronhegedus 3 ปีที่แล้ว

      People unfortunately can't help you with this as there's too many things that are a variable. Either google this, or to be safe, delete and reinstall the package to lastest

    • @aronhegedus
      @aronhegedus 3 ปีที่แล้ว

      Also check if you're running a virtual environment, and what you have installed
      pip freeze will tell you all the packages you have

  • @Quasarss
    @Quasarss 4 ปีที่แล้ว

    can get x y z of center of the track box?

  • @HadronCollisionYT
    @HadronCollisionYT 4 ปีที่แล้ว

    Can we make circle instead of box for tracking

    • @murtazasworkshop
      @murtazasworkshop  4 ปีที่แล้ว

      I don't believe that option is available.

  • @ДавидШорвоглян-л3м
    @ДавидШорвоглян-л3м 3 ปีที่แล้ว

    Doesn't this program determine the distance?