Iterative Closest Point (ICP) - Computerphile

You've scanned a room or object and now you have lots of discrete scans you want to fit together. Dr Mike Pound explains how the Iterative Closest Point Algorithm is used.
this video was originally titled "Joining Point Cloud Scans" and was renamed for clarity Feb 2023
Stanford graphics resources: graphics.stanford.edu/data/3Ds...
Mesh Lab:
www.meshlab.net/
/ computerphile
/ computer_phile
This video was filmed and edited by Sean Riley.
Computer Science at the University of Nottingham: bit.ly/nottscomputer
Computerphile is a sister project to Brady Haran's Numberphile. More at www.bradyharan.com

Пікірлер: 248

  • @tapiomakinen
    @tapiomakinen5 ай бұрын

    The problem I have with Dr Mike's videos is that whenever I come here to learn about a specific thing, I end up binge watching many more of his vids, and then forget the reason I came here in the first place.

  • @Tarsonis42
    @Tarsonis422 жыл бұрын

    That video is rather unexpected - thought the next Mike Pound video would definitely be about Log4j.

  • @optimal284

    @optimal284

    2 жыл бұрын

    He even said on Twitter he was working on it

  • @franziscoschmidt

    @franziscoschmidt

    2 жыл бұрын

    That has to happen

  • @austinnar4494

    @austinnar4494

    2 жыл бұрын

    Usually these videos are shot in advance - not sure about Sean but I know Brady will make a trip to Nottingham and film enough for a handful of videos and then dole them out over time

  • @renhansen1246
    @renhansen12462 жыл бұрын

    Very timely :) I have just finished stitching together several hundred lidar scans of a 2 km long road tunnel for a client. I relied pretty heavily on the auto-alignment software!

  • @tissuepaper9962

    @tissuepaper9962

    2 жыл бұрын

    I was about to say "sheesh, couldn't you just pay somebody to do all that fiddly work" and then I realized that I'm a doofus and *you're* the one being paid to do fiddly work lol.

  • @surbhibarnwal8431

    @surbhibarnwal8431

    Жыл бұрын

    how did you do that

  • @davidgillies620
    @davidgillies6202 жыл бұрын

    Singular value decomposition is one of those things that translate extremely well to GPUs. In fact, Nvidia's CUDA library has purpose-built SVD support (the cusolverDnDgesvd function in its cuSolver package).

  • @vladusa

    @vladusa

    2 жыл бұрын

    I used that for live feeds of a self-driving simulation.

  • @christophertralie9311

    @christophertralie9311

    2 жыл бұрын

    Sadly, SVD is by far not the bottleneck in this algorithm because it's only an SVD of a 3x3 matrix. Actually, the real thing that needs to be sped up on the GPU is nearest neighbors search, which is a bit tougher but doable

  • @christophertralie9311

    @christophertralie9311

    2 жыл бұрын

    You'd have to use a parallelizable KD Tree

  • @ChrisDreher
    @ChrisDreher2 жыл бұрын

    Finally a video on the technical aspects of Insane Clown Posse (ICP).

  • @ShaunHusain

    @ShaunHusain

    2 жыл бұрын

    Magnets how do they work (more sixty symbols territory, perhaps a sociology channel as well ;) )

  • @davidgillies620

    @davidgillies620

    2 жыл бұрын

    Fing LIDAR; how does that work?

  • @mattanimation

    @mattanimation

    2 жыл бұрын

    whoop whoop

  • @kellysmith7357

    @kellysmith7357

    2 жыл бұрын

    they got the dog beats

  • @CoughSyrup

    @CoughSyrup

    2 жыл бұрын

    I've always had Mike Pound pegged as a Juggalo, so it's nice to have my suspicions finally confirmed.

  • @FranciscoNogueira
    @FranciscoNogueira2 жыл бұрын

    Mike's videos are always pretty engaging. This one is right there near the top. Pretty cool stuff.

  • @andrewharrison8436
    @andrewharrison84362 жыл бұрын

    Enjoyed - nicely explained. Love the enthusiasm. Seems to me that it works well for the scenery but there is a whole set of other problems if there are moving components. First level difficulty a moving rigid object - say a car. Even more tricky a flexible item - say a person walking. For a real time application then more frequent scans means closest point is more likely to be the corresponding point but you have less time to process each scan - interesting trade off.

  • @MrJacobegg

    @MrJacobegg

    2 жыл бұрын

    The goal of ICP is to reduce the amount of error, where "error" in this context would be defined (very roughly) as the sum of squared distances between the matched pairs of points. So movement in your scene would be handled (naively) the same way as the edges of the bunny scans in his example - the algorithm will minimize the error as much as possible but eventually get to a stopping point where most of the scene points overlap nicely but there are areas of large concentrated error, corresponding to the places where there was movement. (Hopefully that was clear enough.)

  • @Kruglord
    @Kruglord2 жыл бұрын

    This is great, I've worked as a Lidar engineer for like a decade now, and ICP is one of those tools which will just tie everything together in a nice bow.

  • @maxmusterman3371
    @maxmusterman33712 жыл бұрын

    Pleease more of this :3 great, interesting stuff perfectly presented as always

  • @willmanjm
    @willmanjm2 жыл бұрын

    I am loving these recent videos on Computer Vision! Thanks!

  • @joeab10
    @joeab102 жыл бұрын

    Very nice explanation! You could have also shown how bad it can get by doing the wrong initial point correspondence and hitting a local minimum.

  • @salah6160
    @salah61605 ай бұрын

    It's inspiring how you explain different computer science topics and still explain them all exceptionally well.

  • @ivarkrabol
    @ivarkrabol2 жыл бұрын

    Hope to see a video on log4shell, when you get around to it :)

  • @rachel_rexxx

    @rachel_rexxx

    2 жыл бұрын

    Cheeky

  • @AndrewWhise
    @AndrewWhise2 жыл бұрын

    In astronomy we often need to map arbitrary images of the night's sky to Right Ascension and Declination coordinates (called plate solving). I wonder if this algorithm is involved, using stars as the points.

  • @konstantinkh

    @konstantinkh

    2 жыл бұрын

    When your points have additional attributes, such as brightness, it's often helpful to treat them as an additional dimension. Besides that, what the matching program does is probably very similar. At least, as the final step. To improve convergence, it might, for example, start with just the brightest points, and add more as it gets closer to the solution.

  • @xl000

    @xl000

    Жыл бұрын

    Have a look at OpenCV + Homography.

  • @QuintinMassey
    @QuintinMassey Жыл бұрын

    I had no idea you could use meshlab like that. Thank you for making this.

  • @Veptis
    @Veptis2 жыл бұрын

    I had this video in my watch later over 3 months now. My expectation was to learn something about photogrammetry and matching pairs to build a tree and then a point cloud. I had some ideas to how it might work with projection and interaction, but that seemed a little involved. Now with the topic of doing 2D or 3D tracking in video, I always assumed the 2D example would do an extrapolated spiral search pattern for points and just find the lowest difference in the search area. But it never occured to me to see matrix tricks like SVD show up. Such a crossover. I knew that a fourier transform on a matrix (like an image) would ignore any kind of translation or rotation, so you would use it for pattern matching for example. There was an actual optical application by Huygens Optics in a video a long while ago.

  • @DavidMorales-xz7fn
    @DavidMorales-xz7fn2 жыл бұрын

    I'm a simple man. If I see Dr Mike Pound in a thumbnail, I click.

  • @CryTyped
    @CryTyped2 жыл бұрын

    I’m currently doing my dissertation on using lidar on iphones to create 3d meshes. I’ve been watching computerphile since its inception back when i was in high school, crazy to think how far i’ve come since then

  • @DanielDoron-lightydo
    @DanielDoron-lightydo Жыл бұрын

    Awesome explanation and demonstration!! Love it!

  • @Richardincancale
    @Richardincancale2 жыл бұрын

    I thought the Utah teapot was the archetypal 3D model, never heard of the Stanford bunny!

  • @ufffd

    @ufffd

    2 жыл бұрын

    I think Utah teapot is the classic hard surface modeling and Stanford bunny is more relevant to photogrammetry

  • @noahzuniga
    @noahzuniga2 жыл бұрын

    the legend returns

  • @KarlssonF
    @KarlssonF2 жыл бұрын

    now do one about SLAM (specifically with lidar maybe), would be a very cool topic

  • @maxdoner4528
    @maxdoner45282 жыл бұрын

    Love Dr Pound

  • @deepakrajendra8019
    @deepakrajendra80192 жыл бұрын

    Mike Pound's back!

  • @Alive6371
    @Alive63712 жыл бұрын

    The videos are great. Can you kindly provide with captions ?

  • @intelinside3334
    @intelinside33345 ай бұрын

    Thank you for this interesting video

  • @renegibbetnich7883
    @renegibbetnich7883 Жыл бұрын

    Thank you for this little tutorial. I wouldn't have found meshlab otherwise.

  • @GorrathEUNE
    @GorrathEUNE2 жыл бұрын

    Please add the subtitles! :) I love the other videos

  • @drawn__9999
    @drawn__99992 жыл бұрын

    This was the clearest explanation of any algorithm I've ever heard in my life.

  • @blueguy5588
    @blueguy55882 жыл бұрын

    Very interesting. You can see the potential for some sort of memoization as well.

  • @larrybud
    @larrybud2 жыл бұрын

    I think Mike is the best presenter on this channel.

  • @murman100
    @murman1002 жыл бұрын

    Very good mike

  • @johnlasky
    @johnlasky2 жыл бұрын

    Really interesting video! Are self driving cars doing this type of mesh stitching on the fly? And if so, would adding special reflective tape to the environment help with key point localization and reduce the amount of computation its doing? (Clearly I don't know anything about this stuff)

  • @elliotyu6573
    @elliotyu65732 жыл бұрын

    13:15 The sound effect for ICP is brilliant.

  • @xsoggyeggroll4966
    @xsoggyeggroll49662 жыл бұрын

    im taking classses in computer assisted surgery and this couldn't have come at a better time lol

  • @difflocktwo

    @difflocktwo

    2 жыл бұрын

    are you a surgeon?

  • @xsoggyeggroll4966

    @xsoggyeggroll4966

    2 жыл бұрын

    @@difflocktwo nope too stressful haha, i'm in grad school for biomedical engineering. but I have talked with surgeons who use registration technology with robotic assistance and it's super cool to see these concepts work in real situations

  • @mertakyaz5359

    @mertakyaz5359

    2 жыл бұрын

    @@xsoggyeggroll4966 Do you see those applications on practical?? That seems scary 😶

  • @xsoggyeggroll4966

    @xsoggyeggroll4966

    2 жыл бұрын

    @@mertakyaz5359 icp is generally used to match medical images with the robots workspace and also to track tools in the workspace

  • @mertakyaz5359

    @mertakyaz5359

    2 жыл бұрын

    @@xsoggyeggroll4966 Liked the job there. I meant have you seen open surgery with these products been using or just simulations? I was talking about seeing a surgery 😄

  • @calciumgoodness4073
    @calciumgoodness40732 жыл бұрын

    Can we see a video on the TOR network compromise where a bad actor is running a bunch of relays?

  • @dustinjames1268

    @dustinjames1268

    2 жыл бұрын

    The bad actor you speak if us the US government

  • @ahbushnell1
    @ahbushnell12 жыл бұрын

    i assume this is what is done when they stack photo's say for astronomy. That would be an interesting video.

  • @giant3909

    @giant3909

    2 жыл бұрын

    In astrophotography they can stack up to 100 hours of data to render a galaxy

  • @emmanueloluga9770

    @emmanueloluga9770

    2 жыл бұрын

    @@giant3909 omg wow..thats a lot of data

  • @kittenhat7266

    @kittenhat7266

    2 жыл бұрын

    Some programs might, but others use a method called RANSAC. For star fields, it’s not too much to ask of a computer to try to “brute force” match the brightest stars in 2 images.

  • @TheKrankgamer
    @TheKrankgamer2 жыл бұрын

    Crazy, I am just doing a project in the next weeks on this for university

  • @ofrench560
    @ofrench5602 жыл бұрын

    Mike has a home? I thought he just lived in his office, seen in this video behind him

  • @drooplug

    @drooplug

    2 жыл бұрын

    He appears at home only when he is on loan from the university.

  • @ofrench560

    @ofrench560

    2 жыл бұрын

    ​@@drooplug I see Understandable

  • @simeon136
    @simeon1362 жыл бұрын

    Our biggest scan project was around 20 Billion points. Took a while to register even on a Threadripper-based workstation. Our scanner measures 976,000 pts/sec.

  • @videojeroki

    @videojeroki

    2 жыл бұрын

    Maybe you where busy counting your points, but if you listen carefully around ~10:00 he is answering your comment

  • @videojeroki

    @videojeroki

    2 жыл бұрын

    Btw: 20billion points would take more than 230 days of non stop laser scanning (with your ~1M pts/sec laser scanner). Did you just scan the all earth or what ?!!! :D

  • @simeon136

    @simeon136

    2 жыл бұрын

    @@videojeroki, I know how it works, scanning is a large part of my job.

  • @simeon136

    @simeon136

    2 жыл бұрын

    ​@@videojeroki a zoo with a castle in the grounds. We used multiple scanners. Terrestrial lidar scanners , UAV lidar and a wearable mobile mapping unit. We also took over 40,000 61MP full frame photos which are used to texture the mesh.

  • @GilesBathgate
    @GilesBathgate2 жыл бұрын

    Kd Trees, would make an interesting computerphile video.

  • @DJCloudPirate

    @DJCloudPirate

    2 жыл бұрын

    KD trees are the underappreciated workhorse of machine vision. If done properly they can be blazingly fast compared to other spatial partitioning schemes. They don't provide some of the benefits of more complex structures but for nearest neighbor searches they're tough to beat. Interestingly enough the textbook implementation of KD trees (and the ones found in open source libraries like the PCL) are not optimal. They are "pure" but in practical terms there are tricks you can play to speed them up without much work.

  • @Dandelion_Stitches
    @Dandelion_Stitches2 жыл бұрын

    MMFCL in here for this video, spreading the word for ICP! WOOP WOOP!

  • @YensR
    @YensR2 жыл бұрын

    5:40 I understand the centre of mass of the points to shift the sample - but how do you decide the rotation? Do you just move it to centre of mass, then rotate and if it gets better, you rotate it some more , until it gets worse again? Or is there a better way to do it?

  • @alegian7934

    @alegian7934

    2 жыл бұрын

    rotations are simple enough that they can be expressed as matrix multiplication. the resulting matrix will not be completely solvable because its an approximation, but SVD gets you the best solution you can get with linear algebra

  • @YensR

    @YensR

    2 жыл бұрын

    @@alegian7934 yes he mentions SVD later but considering its 3 dimensions my mind still boggles how this can be done so quickly. Is there anything that helps a first guess?

  • @alegian7934

    @alegian7934

    2 жыл бұрын

    I could be wrong in any of the following. But: if matrix A describes the 3d rotation, X is the matrix that contains as columns all points in one group and Y is the matrix that contains all points in the other group, we have AX=Y (approximately, remember, these cant truly be equal) so ideally if they were equal we would invert matrix X and obtain A=YX' (we found the rotation matrix) In reality X is not invertible at all but we can find its SVD that gets us as close to its inverse as possible. so we get something like A*UΣV=Y and we solve for matrix  (an approximation of the optimal rotation). And we apply  to X

  • @YensR

    @YensR

    2 жыл бұрын

    @@alegian7934 I guess that's it! This is all new to me. We did cover 3d transformations back in my degree, but not inverse, only forward. At least that's what i remember! Very interesting, will have to do some more reading before I understand this enough.

  • @embeddor2230

    @embeddor2230

    2 жыл бұрын

    @alegian Can't we just do the following: 1) build a vector A out of the selected points of the first shape in respect to their center of mass: A = Σ a_i - a_center 2) build a vector B out of the selected points of the second shape also in respect to their center of mass: B = Σ b_i - b_center 3) calculate angle between the vectors?

  • @Zahlenteufel1
    @Zahlenteufel12 жыл бұрын

    Let's all take a moment to appreciate the existence of FOSS!

  • @BraedenSmith
    @BraedenSmith2 жыл бұрын

    Feels pretty similar to k means clustering. Basically both are gradient descent on a non convex function, involving distances in N dimensions.

  • @U014B
    @U014B2 жыл бұрын

    The algorithm was originally going to be called Iterative Closest Union Point, but after an inexplicable outbreak of giggle fits, the name was changed.

  • @julianatlas5172

    @julianatlas5172

    2 жыл бұрын

    what's wrong with that name? I'm not a ntive english speaker so I think I'm missing the joke

  • @U014B

    @U014B

    2 жыл бұрын

    @@julianatlas5172 Say the initials out loud.

  • @keksauraisks
    @keksauraisks2 жыл бұрын

    Please do a video on Log4Shell!

  • @ysahillioglu
    @ysahillioglu2 жыл бұрын

    Check out Scale-Adaptive ICP too :)

  • @gabrielgraf2521
    @gabrielgraf2521 Жыл бұрын

    man, this was pretty clear. nice what you can do with one sheet of paper XD

  • @qztronic
    @qztronic2 жыл бұрын

    Can you guys explain how those spinning lidar sensor are use to create a 2d map. (in term of how the raw data that lidar received get compute by the computers and then TADA we just have a map?)

  • @SteveMacSticky
    @SteveMacSticky2 жыл бұрын

    very interesting

  • 2 жыл бұрын

    I guess you can also do some calculations in other domain, for example distance(angle) instead of cartesian x(y). It can help.

  • @dixie_rekd9601

    @dixie_rekd9601

    2 жыл бұрын

    that would be my first idea to solve this issue I guess. create a set of data describing distance and angles of a bunch of points, then find the same results in the new data. although saying that point cloud data is usually very different from scan to scan.

  • @Ogmobot
    @Ogmobot2 жыл бұрын

    This was an Advent of Code puzzle this year

  • @scheimong
    @scheimong2 жыл бұрын

    You know the guy knows what he's doing when you see the MX master

  • @FloydMaxwell
    @FloydMaxwell2 жыл бұрын

    Facial recognition algorithms must be using this as well

  • @jwrush
    @jwrush2 жыл бұрын

    "Maybe you have an artist sculpt something and then you scan it and get a nice mesh" well, a mesh anyway. point clouds don't yield clean topology, so one almost always has to retopo the mesh

  • @zxuiji
    @zxuiji2 жыл бұрын

    uh, I woulda just matched just compared the distances from the relative end points and worked my way inwards, if the distance stretches or contracts to much then it's not the same object, abort and try the next object, either way you need to identify the objects in the snapshot working with, might as well just compare the results to previous results to see what has the least difference in point distances **Edit:** the process could be further optimised by skipping objects that have to big a difference in the number of points also

  • @jonathanmain9079
    @jonathanmain90792 жыл бұрын

    A long shot but how important is it for it to be accurate?? Would the fast inverse square root solution work well for this?

  • @Primalmoon
    @Primalmoon2 жыл бұрын

    Dr Pound said there would be links in the description...?

  • @Computerphile

    @Computerphile

    2 жыл бұрын

    Oh yes, sorry, bear with me! -Sean

  • @fennecinspace
    @fennecinspace2 жыл бұрын

    I started working on a project involving ICP and point clouds this month LOL.

  • @booodan
    @booodan2 жыл бұрын

    Please do a video on the recent log4j exploit!!

  • @drskelebone
    @drskelebone2 жыл бұрын

    Obligatory question that will probably be answered in the next minute: Are there any physics-based/momentum-like solvers? "We've been moving kind of left-ish at two meters per second. If we assume some points are close, and some are far, where would the last set of points fall?"

  • @lawrencedoliveiro9104

    @lawrencedoliveiro9104

    2 жыл бұрын

    Instinctive physics-undergrad answer: represent each point in 6D, being 3 spatial coordinates and 3 momentum coordinates. Then do ICP in that space?

  • @ashlandwithouttheshd
    @ashlandwithouttheshd2 жыл бұрын

    The missile knows where it is, because it knows where it isn’t

  • @charliebaby7065
    @charliebaby70652 жыл бұрын

    OMG YES! !! THANK YOU THANK YOU (I guess my pfp gives away my enthusiasm)

  • @micmacha
    @micmacha2 ай бұрын

    You mention translation and rotation, but in 3D I'm also thinking about relative scaling and skewing. I presume a generic affine transform is assumed?

  • @gloverelaxis
    @gloverelaxis2 жыл бұрын

    I assume the reason ICP isn't N^2 is because computing the "centre of mass" is the same as computing an mean/average? i.e., you can just **add** to the current average/accumulator then perform a single division at the end?

  • @kittenhat7266

    @kittenhat7266

    2 жыл бұрын

    Yep

  • @Chr0nalis

    @Chr0nalis

    2 жыл бұрын

    It's in NP

  • @keenheat3335
    @keenheat33352 жыл бұрын

    the structure of the algorithm feels kind of similar to the face id algorithm that was shown in computerphile many years ago.

  • @hymen0callis
    @hymen0callis2 жыл бұрын

    12:09 Where is FPFH (from PCL) or multiview registration when you need it?

  • @MartinTowell
    @MartinTowell2 жыл бұрын

    16:14 - "you can put the links in the description" -- is it possible to put the links in the description, please?

  • @guoah9
    @guoah92 жыл бұрын

    I discuss my masters thesis in two days and this is something i used in it. nice timing 🤣

  • @dariuszmyczko7615

    @dariuszmyczko7615

    2 жыл бұрын

    Good luck on that!

  • @emmanueloluga9770

    @emmanueloluga9770

    2 жыл бұрын

    Awesome. What's your master thesis on?

  • @guoah9

    @guoah9

    2 жыл бұрын

    @@emmanueloluga9770 I discussed it this morning, it went very well. It is on an aerial point-cloud registration algorithm designed for urban scenarios. Basically it uses both image and point-clouds features to find an initial alignment as Mike does manually in the video and then applies ICP to refine it. I used an aerial Lidar scan of my uni city and ground clouds built with photogrammetry from a goPro(which stores a lot of position metadata) .

  • @emmanueloluga9770

    @emmanueloluga9770

    2 жыл бұрын

    @@guoah9 oh wow thats very interesting and exciting work. Congratulations on that accomplishment. Is there a paper out yet

  • @MrMysterious420
    @MrMysterious4202 жыл бұрын

    Whoop whoop!

  • @MrWarlock616
    @MrWarlock6162 жыл бұрын

    Please request him to talk about log4j

  • @To-mos
    @To-mos2 жыл бұрын

    What is a situation where you would already have the geometry from a point cloud and need to overlap it like he's demonstrating. From what I've seen protogrammatry and point cloud to mesh software already aligns the points before even doing a geometry pass.

  • @10lauset
    @10lauset2 жыл бұрын

    Is this somewhat like 'persistence of vision'?

  • @pierreabbat6157
    @pierreabbat61572 жыл бұрын

    A couple of applications of this: 1. You have a lidar scan of terrain that includes woods, which has no color but has a few points on the forest floor, and a photogrammetric scan of the same terrain, which has color but no ground points. You align them and color the lidar points. (At least PerfectTIN, the program I wrote to make a TIN of point clouds, completely ignores color.) 2. You have a drone with a 32-head laser scanner. You fly it between two buildings over pavement and get 32 point clouds, one from each head. You align them and determine the calibration so that the point cloud you get from putting all 32 heads together is accurate.

  • @Viniter
    @Viniter2 жыл бұрын

    Are you going to make a video on the Log4j exploit?

  • @Ecolipsy
    @Ecolipsy2 жыл бұрын

    Yes

  • @RobinHagg
    @RobinHagg2 жыл бұрын

    Looks like this would be used in fingerprint Scan or qr code scan maybe.

  • @MoritzvonSchweinitz
    @MoritzvonSchweinitz2 жыл бұрын

    But I think you are skipping over the main problem: how do the LIDAR scanners do the job of identifying common points that you did manually in an automated way?

  • @jonmackenzie

    @jonmackenzie

    2 жыл бұрын

    i would guess that because of the high scanning frequency the points are already going to be pretty well aligned. each consecutive scan will be pretty similar to the last

  • @TheNonXtreme

    @TheNonXtreme

    2 жыл бұрын

    Probably with the help of other sensor data. For example, wheeled robot can take the encoder reading at the wheel to estimate the change in direction and position of the lidar sensor itself between each lidar scan. This data can be used to first align the point clouds closely together enough before doing the ICP.

  • @Meoiswa

    @Meoiswa

    2 жыл бұрын

    If you know the exact location of your camera and lidar, you can map lidar points to camera pixels, then use strategies like edge detection or color feature isolation to tag points.

  • @tissuepaper9962

    @tissuepaper9962

    2 жыл бұрын

    His input was a rough guess, in any real-world application you can use ubiquitous accelerometer or GPS data to get that guess. It's just not relevant to the algorithm itself, which is the focus of the video.

  • @TheAudioCGMan

    @TheAudioCGMan

    2 жыл бұрын

    yes to above answers. it's already close, but you can improve it with inertia measurements, feature detection in the point clouds, or feature detection from some color camera

  • @braveshine2579
    @braveshine25792 жыл бұрын

    Please add subtitle. Love from oversea.

  • @kapils4113
    @kapils41132 жыл бұрын

    Sir you played an amazing role in Spiderman no way home !

  • @ralfoide

    @ralfoide

    2 жыл бұрын

    Huh? Explanation?

  • @prasadnemade6979
    @prasadnemade6979 Жыл бұрын

    how did u eliminate the unwanted points form depth camera

  • @ThomasHaberkorn
    @ThomasHaberkorn2 жыл бұрын

    is this also used for 3D dental scan technology?

  • @TheAudioCGMan

    @TheAudioCGMan

    2 жыл бұрын

    I'm pretty sure yes

  • @kas-lw7xz
    @kas-lw7xz2 жыл бұрын

    Wait, you can get out of your office 0.0 awesome!

  • @nyscersul42
    @nyscersul422 жыл бұрын

    Hehe i just figured out how to get a perfect pair to start :P

  • @420Travesty
    @420Travesty2 жыл бұрын

    whoop whoop!

  • @MrGoatflakes
    @MrGoatflakes2 жыл бұрын

    Could we get some captions please? I'm finding it very hard to make out what Dr Mike is saying...

  • @niyaziugur
    @niyaziugur2 жыл бұрын

    gradient descent?

  • @keco185
    @keco1852 жыл бұрын

    I wish you ran ICP without first aligning the meshes just to see what it did

  • @oldcowbb

    @oldcowbb

    2 жыл бұрын

    o god, the nightmare

  • @drooplug
    @drooplug2 жыл бұрын

    No 3d scans of Lenna?

  • @antivanti
    @antivanti2 жыл бұрын

    Whooo whoop

  • @Ceelvain
    @Ceelvain2 жыл бұрын

    This algorithm has a really strong taste of K-Means. Are they related in some way?

  • @Turnadey
    @Turnadey2 жыл бұрын

    Video on Log4?

  • @Monothefox
    @Monothefox2 жыл бұрын

    Fricking point clouds, how do they work? -- ICP

  • @MathTravels
    @MathTravels2 жыл бұрын

    Whoop Whoop!

  • @AlanCanon2222
    @AlanCanon22222 жыл бұрын

    Speaking as a grown up kid from the Commodore 64 days, may I just say, the kids are all right. You want self driving cars that save babies automatically? Let this up and coming generation design them.

  • @TheGodlessGuitarist
    @TheGodlessGuitarist2 жыл бұрын

    sounds like a type of gradient descent alg

  • @geekoutnerd7882
    @geekoutnerd78822 жыл бұрын

    same idea as newton’s method of finding polynomial roots.

  • @PMX
    @PMX2 жыл бұрын

    Somehow I managed to read the title as "Joining Point Cloud Scams" 😅

  • @pbjandahighfive
    @pbjandahighfive2 жыл бұрын

    woop woop