thanku maam for this useful video, maam i want to classify this object like person, car etc how can i do??
@man9mj Жыл бұрын
Thank you for your content here. What I like about this channel is that it is more about implementation and practice. Thanks for your effort and time.
@CodeWithAarohi Жыл бұрын
Glad you enjoy it!
@sri-d18Ай бұрын
Hi Ma'am, How can I annotate 3D images, and are there any other models available for predicting defects in 3D images?
@kratos66192 жыл бұрын
Hello ma'am .. can i have the pre trained model please. Need it for a project and i don't have the compute resource to train the model
@parthasarathyk54762 жыл бұрын
Thank you so much mam. I was the first one asked to make a video on 3D object detection.
@CodeWithAarohi2 жыл бұрын
Most welcome 😊
@soheilmajidi93472 жыл бұрын
thanks will be training video for custom data ?
@soravsingla6574 Жыл бұрын
Code with Aarohi is Best KZbin channel for Artificial Intelligence #CodeWithAarohi
@vedantpratik935211 ай бұрын
Thanks Mam, Great Video
@CodeWithAarohi11 ай бұрын
Most welcome 😊
@8eck2 жыл бұрын
I'm confused. This trained model can work with 2d images and give 3d bounding boxes with their coordinates or that model can work only with Lidar data?
@teetanrobotics53632 жыл бұрын
thank you so much Aarohi for the content. please keep updating the playlists as well
@CodeWithAarohi2 жыл бұрын
Sure, I will update the playlists
@paulosantosbim4 ай бұрын
Is there any way to use my Yolov8 fine tuned model for point cloud segmentation ? This model was trained with custom images dataset
@0GRANATE02 жыл бұрын
your camera needs to have lidar? A normal smartphone camera stream (no lidar) is not enough for detection?
@ramanapraghee37662 жыл бұрын
You are actually doing a great job Aarohi👌🏻
@CodeWithAarohi2 жыл бұрын
Thankyou
@gizemce1880 Жыл бұрын
Hello , l would like to make object detection directly point cloud data , it means l will use camera , is it possible .
@shprai2496 Жыл бұрын
Mam I have downloaded torch for CPU and when I'm running the train.py in command prompt it's showing: torch not compiled with cuda enabled What do I do mam
@LScattabomb8 ай бұрын
Also to me
@utkarshtripathi91182 жыл бұрын
Thank u thank u so .much mam for this video 👍👍
@CodeWithAarohi2 жыл бұрын
Welcome
@jamilahmarramduarte15752 жыл бұрын
hi mam, how can i use this to self navigate our trash collector robot maam? because were using lidar sensor maam
@NERELLAAKHIL Жыл бұрын
When I try to unzip the above datasets in Google Colab,The RAM is getting finished and runtime disconnection.Can you please tell an alternative
@CodeWithAarohi Жыл бұрын
One alternative approach you can try is to use a cloud storage service such as Google Drive or Dropbox to store the zipped LiDAR dataset, and then mount the cloud storage drive in your Colab notebook. This way, you can directly access the zipped dataset without having to unzip it, and avoid the issues with memory and runtime disconnection. Here are the steps you can follow to mount a cloud storage drive in your Colab notebook: First, upload the zipped LiDAR dataset to your Google Drive or Dropbox account. In your Colab notebook, run the following code snippet to authenticate your Google Drive account: from google.colab import drive drive.mount('/content/drive') Follow the instructions to authenticate your Google account and authorize access to your Google Drive files. Once the authentication is successful, you can navigate to the zipped LiDAR dataset file in your Google Drive folder using the file path: /content/drive/MyDrive/path/to/zipfile.zip You can then read the LiDAR dataset directly from the zipped file, without unzipping it, using libraries like laspy or entwine. Here's an example code snippet to read a LAS file from a zipped dataset using laspy: import laspy import zipfile with zipfile.ZipFile('/content/drive/MyDrive/path/to/zipfile.zip') as myzip: with myzip.open('path/to/lasfile.las') as myfile: las = laspy.read(myfile)
@shirshakpattnaik2869 Жыл бұрын
Is it possible to train dataset using yolov7?
@utkarshtripathi91182 жыл бұрын
Mam we want to know difference between YOLO and Detectron2 Means which one is good, which one fast, which one easy to use pls mam 🙏 one video
@CodeWithAarohi2 жыл бұрын
Will do after finishing my pipelined videos.
@utkarshtripathi91182 жыл бұрын
@@CodeWithAarohi Thank u so much 🙏🙏 mam..........
@anuragshrivastava78552 жыл бұрын
How u started ur journey, ur experiences in this field if it is possible make a video on it
@CodeWithAarohi2 жыл бұрын
Sure, Will do
@lohit85432 жыл бұрын
its based on yolov2 or yolov4?
@AmanKumarSharma-de7ft2 жыл бұрын
What's the fps you are getting for the inference and also your system configuration specially the gpu? So the we have an idea of the performance
@CodeWithAarohi2 жыл бұрын
GPU: RTX 3090
@soravsingla87822 жыл бұрын
Excellent video. Really amazing
@CodeWithAarohi2 жыл бұрын
Thank you very much!
@aloktiwari55562 жыл бұрын
Ma'am after running test.py. my results folder is not created. Please help me with that, and can you please make a video on how to analyze these results
@mdabuahammedbabu24582 жыл бұрын
same here. did you find any answer for that?
@shefak952 жыл бұрын
Did you find a solution for that problem?
@francescopiomanna46214 ай бұрын
same here, any solution?
@NERELLAAKHIL Жыл бұрын
@CodeWithAarohi I have a query, What do we have inside .bin files in velodyne folder in dataset. How to find the lidar 3D coordinates of detected objects.
@CodeWithAarohi Жыл бұрын
The .bin files in the Velodyne folder of a dataset typically contain raw point cloud data captured by a lidar sensor. Each .bin file represents a single 360-degree scan of the environment, with each point in the point cloud representing a measurement of the distance and angle of a reflective object in the environment.
@CodeWithAarohi Жыл бұрын
To find the lidar 3D coordinates of detected objects, you'll need to perform object detection on the point cloud data. Object detection involves identifying and classifying objects in the point cloud, and then extracting their 3D coordinates.
@NERELLAAKHIL Жыл бұрын
@@CodeWithAarohi Yes mam, But in this case ,first we are mapping the lidar coordinates to 2D coordinates in form of bird eye view and then detecting objects. Therefore,I am not able to extract 3D coordinates of detected objects.Can you please help with it?Also,Can we get the 3D Lidar coordinates using Voxelnet
@ayush889 ай бұрын
@@NERELLAAKHIL Hi, did you try with voxelnet ?
@madhurgarg4114 Жыл бұрын
How can I do this in my local CPU ?
@devbgms70322 жыл бұрын
Great work , could have an idea regarding on custom data creation in kitti format , is it possible , i hope you can answer this. thank you.
@ThingswithSid Жыл бұрын
cant see image_2 folder
@MuhammadAdnan-tq3fx Жыл бұрын
is it any way to convert the 2D data set into 3D dataset. i want to perform 3D object detection on my dataset?
@CodeWithAarohi Жыл бұрын
To convert a 2D dataset into a 3D dataset for object detection, you can use stereo imaging to estimate depth from multiple angles, employ photogrammetry techniques, or integrate depth information from sensors like LiDAR. Advanced AI methods like monocular depth estimation can also be used to infer depth from single 2D images.
@Mr.Esmaily2 жыл бұрын
Thank you so much 👍
@CodeWithAarohi2 жыл бұрын
You are welcome
@ramanapraghee37662 жыл бұрын
You are actually doing a great work 👌🏻. Also you can explain this architecture of this model it would be helpful
@CodeWithAarohi2 жыл бұрын
Sure I will do a video on architecture.
@ramanapraghee37662 жыл бұрын
@@CodeWithAarohi expecting as next video
@ShubhamTiwari-ks2qg2 жыл бұрын
@@CodeWithAarohi when are you uploading video maam ?
@AmitKumarMallickmes2 жыл бұрын
Madam, How to do it on the custom dataset? Please make a video on the custom dataset. Thank You
@CodeWithAarohi2 жыл бұрын
Will try
@seratmostaqueem23292 жыл бұрын
hi ,great work but can I try it with just a part of data not all data ,I mean i use about 1000 image for image _2 and velodyne but i have error is that the reason ? the error is BrokenPipeError: [Errno 32] Broken pipe
@ShubhamTiwari-ks2qg2 жыл бұрын
maam when I was training(local computer) it got stopped in between. how to let it train? did You used high computational machine? please maam help me out .....Its my major project
@CodeWithAarohi2 жыл бұрын
I have used RTX 3090. You can reduce the batch size and then try.
@ShubhamTiwari-ks2qg2 жыл бұрын
@@CodeWithAarohi what according to you should be good one?
@akhilnerella5491 Жыл бұрын
Hello Mam, Can this YOLo4 be used for real time i.e. Lidar mounted car that can detect objects in real time . Also there are two types of images in results.Can you please explain them(point cloud image and image).Which one is the lidar detected image?
@akhilnerella5491 Жыл бұрын
Is that just for visualisation?
@akhilnerella5491 Жыл бұрын
Also,Here in the paper where is the LiDar mounted as we are getting the bird eye map
@nakkashravani22777 ай бұрын
I still work in this type of projects..
@abhisheksumeettoppo52082 жыл бұрын
Ma'am can you upload the trained model for this project
@tanudewangan43102 жыл бұрын
Hello, if I want to do 2D object detection from the KITTI dataset then what files I need to download.
@zeynepakbalk70022 жыл бұрын
same question ?
@kwameampofo35952 жыл бұрын
Can you upload a video on how to use custom dataset?
@CodeWithAarohi2 жыл бұрын
Sure
@kwameampofo35952 жыл бұрын
@@CodeWithAarohi Thank you
@rafaelparzeller29742 жыл бұрын
@@CodeWithAarohi would also love to see a tutorial for training with a custom dataset :)
@sabahatrizvi72602 жыл бұрын
Great tutorial. Can we do this for custom dataset? If yes, so can you tell what different steps would need to be done as part of training?
@mrmeow12 жыл бұрын
yes. is your dataset annotated?
@abby.studios2 жыл бұрын
@@mrmeow1 how to annotate such a 3d File?
@athletester44722 жыл бұрын
@@abby.studios 3d Bat
@pawankumardoddamani14932 жыл бұрын
Hello mam, I have a query could you please come up with a video mam from scratch coding for the yolo v5 object detection instead of using github link for yolo v5 installation?
@CodeWithAarohi2 жыл бұрын
I will try
@Kishi19692 жыл бұрын
Great Job....Can you give us the link where we can get the dataset please ?
I have my own lidar point clouds dataset in text format but not labelled. Can you please let me know how to cluster and track objects through JPDA and DBSCAN algorithms in Matlab. can you make a tutorial on it .
@CodeWithAarohi2 жыл бұрын
HI, I work with python. Never worked with matlab.
@comp-it19132 жыл бұрын
@@CodeWithAarohi can you make a video on that in python
@ruwang3132 Жыл бұрын
Do you have any progress on this point? DBSCAN works? or there are some other methods?
@ruwang3132 Жыл бұрын
@Code With Aarohi @COMP-IT Do you have any progress on this point? DBSCAN works? or there are some other methods?
@ChinnuChinnu-l6f Жыл бұрын
Great. It would be better if you could share the result too.
@CodeWithAarohi Жыл бұрын
Ok next time
@chittaranjanjena87492 жыл бұрын
Hello, please can you provide any sensor fusion model on Lidar poaints and 2d-images? any model for object detection using lidar pcd in YOLOv5 or YOLOV7 also help full..
@sahand92382 жыл бұрын
6:04 You forgot to mention we have to download the images too.
@CodeWithAarohi2 жыл бұрын
Oh Sorry for that
@subhanzaheer5138 Жыл бұрын
which link is for images .. can you please tell me
@abiralaashish8798 Жыл бұрын
can you share the .pth file?
@gehadzakria78492 жыл бұрын
Thanks, but the version of torch==1.5.0 no exit
@CodeWithAarohi2 жыл бұрын
Install python 3.6.8 and use older version on pip then you can use torch 1.5.0
@gehadzakria78492 жыл бұрын
@@CodeWithAarohi Thanks I will do that
@Jai_Lopez Жыл бұрын
great job........but can you say KITTY one more time ;)
@rajuvarma-zk2zw2 жыл бұрын
Thank you madam
@CodeWithAarohi2 жыл бұрын
You’re welcome 😊
@bhanureddy208711 ай бұрын
Settings up the environment is the hard thing and you ignored that
@CodeWithAarohi11 ай бұрын
I agree and I apologize for the inconvenience. You can mail me at aarohisingla1987@gmail.com I will send you the requirements.txt there
@maheshkumar_2017 Жыл бұрын
hi aarohi can we communicate?
@CodeWithAarohi Жыл бұрын
You can mail me at aarohisingla1987@gmail.com
@lipa74152 жыл бұрын
i get this error "torch.cuda.OutOfMemoryError: CUDA out of memory. Tried to allocate MiB" i tried train 1000 img IS it my 1660 ti is to weak batch 16 epoch 30? pls help
@CodeWithAarohi2 жыл бұрын
Try working with batch size 8
@muhammadsuhail88142 жыл бұрын
great work mam do you have a student whatsapp group kindly send the link to contact easily and I mail you mam please check