Пікірлер
@dazzlepecs
@dazzlepecs 2 ай бұрын
Im not sure what this offers over good software design patterns (like composition), a simple message bus and getting the relevant libraries yourself?
@AndreyGominiuk-qp7kk
@AndreyGominiuk-qp7kk 2 ай бұрын
Normally I don't write comments but this video was too good to leave it without one
@alexamin5003
@alexamin5003 2 ай бұрын
To add to the advantages of passing a pointer to a function rather than a reference to a variable (~27:30): Pointers offer increased flexibility due to the fact that they can be null, essentially allowing for optional parameters. They can also be reassigned to different memory addresses, allowing for increased control over manipulation of data. The disadvantages are that you should make sure the pointer is not null (ptr != nullptr) before dereferencing it, and that you have to explicitly dereference the pointer (or use the "->" operator to access a member of the object pointed to) to read or assign a value. It's important to note that a reference can never be null, so they are safer and simpler to use when you don't need the increased flexibility that pointers provide.
@alexamin5003
@alexamin5003 2 ай бұрын
Also, at 24:18, it should say: pr = &r; (NOT "pr = r;") because we're assigning the address of r to pr.
@quentin1691
@quentin1691 11 ай бұрын
@navz94
@navz94 11 ай бұрын
HAHAH
@muditgaur2779
@muditgaur2779 Жыл бұрын
🤌🤌
@SeattleShelby
@SeattleShelby Жыл бұрын
Seven years later, still no self-driving cars…
@quanle9657
@quanle9657 Жыл бұрын
I hit the TAB twice but nothing happens, can you please help me with that :((
@hermitking3718
@hermitking3718 Жыл бұрын
Good video bro bro .
@gortex8383
@gortex8383 Жыл бұрын
is everyone using a machine with ubuntu as main OS or will a VM also work fine? Currently I'm using a Docker container to run ubuntu with ROS on top. ROS works fine, but Gazebo is really slow. I'm kina hoping a VM will work better.
@olubukolaogunsola5864
@olubukolaogunsola5864 2 жыл бұрын
did anybody else get the error "only constructors take member initializers 17 | Landmarkmonitor(): landmarks_(){ " ?
@sakkamouid3343
@sakkamouid3343 2 жыл бұрын
I am new to ros , but I have a question : Is it possible that package doesn't have a launch file ? I think the service package here was the case.
@tariqsaid-ti5vx
@tariqsaid-ti5vx 2 жыл бұрын
Hi there, is there a way to download ROS indigo on a windows 11 system as they are no longer released along with ubuntu 14.04 this is because I need to control an AR10 robotic hand
@dhanushg5878
@dhanushg5878 2 жыл бұрын
Thank you for your videos it gives me confident that I can learn Ros easily
@24_Ngocquynobel
@24_Ngocquynobel 2 жыл бұрын
Thanks So useful
@tinyentropy
@tinyentropy 2 жыл бұрын
thank you!
@dhruvgaba865
@dhruvgaba865 2 жыл бұрын
great tutorial man, thanks
@MixterMerlin
@MixterMerlin 2 жыл бұрын
to many ads !
@AL-kb3cb
@AL-kb3cb 2 жыл бұрын
Now i think we're ready for the actionlib part ahah
@anonymous-bd6sc
@anonymous-bd6sc 2 жыл бұрын
Can u tell the .py code to print letter 'P' in ROS though turtlesim
@velagajaswanth8297
@velagajaswanth8297 2 жыл бұрын
During configuration setup it shows no such files or Directory...source /opt/ros/melodic/setup.bash ...what I have to do
@DieselBoulder
@DieselBoulder 2 жыл бұрын
This is really helpful, but PLEASE stop saying "um" every 1/4 s
@RaghavMudgalmeb
@RaghavMudgalmeb 2 жыл бұрын
nothing is installing it says that unable to locate package
@curiousbat5368
@curiousbat5368 2 жыл бұрын
So even if I don't buy the turtlebot, I'm gonna need to spend about 1,000 bucks to use it? Since I must not use a virtual machine 🥺
@abdelz1617
@abdelz1617 2 жыл бұрын
10
@seethemrise6047
@seethemrise6047 2 жыл бұрын
What actually a parameter is?
@berkistayn
@berkistayn 2 жыл бұрын
very good, thanks a lot!
@moneyforfreewrose
@moneyforfreewrose 3 жыл бұрын
Hmm
@lusher00
@lusher00 3 жыл бұрын
Is this still a great resource 5 years later? I don't want to find I can't follow along after the first hour.
@mr.leonhart4629
@mr.leonhart4629 3 жыл бұрын
did you find your answer? i have same question
@lusher00
@lusher00 3 жыл бұрын
@@mr.leonhart4629 the website has short tutorials you can read and I find that more helpful and faster
@mr.leonhart4629
@mr.leonhart4629 3 жыл бұрын
@@lusher00 yeah that's what i started doing later, thanks anyways
@18grape
@18grape 3 жыл бұрын
Thank you, thank you for redoing this in Python. I was so disheartened when I realised you were doing your code in C++ in Tutorial 2.1 so this was an absolute relief. This is such a good tutorial series!
@stillepic5174
@stillepic5174 3 жыл бұрын
how did he open a new terminal from the cpp terminal using 'wq' ?
@MANOJKUMAREM
@MANOJKUMAREM 3 жыл бұрын
made my day thanks Justin
@sreenivasramakrishnan3328
@sreenivasramakrishnan3328 3 жыл бұрын
Hi, my code works when following the video, however when I run this code through VS code, my imports come underlined in blue color, saying "Import "rospy" could not be resolvedPylance" likewise the same message for the msgs import, how can I fix this error? I am using vmware workstation, and have created a workspace through there...
@deadyanothaikiropool1chait713
@deadyanothaikiropool1chait713 3 жыл бұрын
You really make me know where to go next.I really thank you.
@dmitrym3757
@dmitrym3757 3 жыл бұрын
Thanks a lot. Such garganguan things are often difficult to conteptualise until you see them in action, so I was struggling to undestand what ROS really was. Thank you so much, things are way more clearer now!
@deadyanothaikiropool1chait713
@deadyanothaikiropool1chait713 3 жыл бұрын
Ahhh so I should learn both Python and C++. Dang it.
@khalidowlwalid4330
@khalidowlwalid4330 3 жыл бұрын
Really great tutorial! Love it!
@yagzyalcntas553
@yagzyalcntas553 3 жыл бұрын
i bet mcakmak is turkish :D there is always a turkish, always
@zecko9534
@zecko9534 3 жыл бұрын
Does anyone know how to apply this to noetic?
@henishviradiya1468
@henishviradiya1468 3 жыл бұрын
Your Videos Are Truly Helpful For Beginners Like Us. Easy To Understand In Short Time With Sufficient Knowledge. Thank You Very Much.
@VLSystems
@VLSystems 3 жыл бұрын
Hi Justin i have same problem with my code I want to join data from 2 callback functions, but i dont now how to do this
@aditagrawal5896
@aditagrawal5896 3 жыл бұрын
Could anyone or Justin , help me find the model states for a given world .Especially Turtlebot3_world ? It would be really kind of you Thanks
@Ahmed_Elhaddad
@Ahmed_Elhaddad 3 жыл бұрын
how did you link this nodes to the robot, i have 2 drones flying in a gazebo simulator and want to attach the node to that specific drone
@francescofraternali1531
@francescofraternali1531 3 жыл бұрын
Great Video! Do you know how to use AirSim and Cartographer_ROS to builda map? I m struggling and some help will be highly appreciated. Thanks
@damiaK0017
@damiaK0017 3 жыл бұрын
Hi, I am doing everything that's mentioned in your video but constantly this unmet dependencies error is coming and ros indigo cannot be recognized. I have done everything that's mentioned in google to resolve this issue but still no luck. Kindly help in this regard.
@अण्वायुवरीवर्त
@अण्वायुवरीवर्त 3 жыл бұрын
Oh boy I know what I'll be doing this weekend
@akmaralmoldagalieva4253
@akmaralmoldagalieva4253 3 жыл бұрын
So helpful. Thanks a lot !
@henishviradiya1468
@henishviradiya1468 3 жыл бұрын
I'm Unable to install turtlebot, and I'm using ROS FOXY, how to install on it?
@deepanshuyadav6946
@deepanshuyadav6946 3 жыл бұрын
WILL IT WORK IN WINDOWS
@sapiential9939
@sapiential9939 3 жыл бұрын
Thanks a lot! These tutorials were my reference when I first started with ROS-:)