What was there? An algorithm for full self-driving object detection.
June 12th, 2018First, let me start by saying I am a graduate in Computer Science and have been a PHP/MySQL developer for 12 years. I have not read or researched self-driving algorithms before. This algorithm is just an idea of how I would approach the problem of detecting objects of concern in a scene. In development, we use version control systems. These systems generally depend on one command very heavily: diff The diff of a file outputs all the changes to the file highlighting lines removed and lines added. What you would need are 2 data sets to compare:
- A snapshot of all objects in the scene from history
- A snapshot of all objects in the scene in real-time
$ObjectsOfConcern = S[lat,lng,elev] diff A[lat,lng,elev] | grep '>'
Posted In:
ABOUT THE AUTHOR:Software Developer always striving to be better. Learn from others' mistakes, learn by doing, fail fast, maximize productivity, and really think hard about good defaults. Computer developers have the power to add an entire infinite dimension with a single Int (or maybe BigInt). The least we can do with that power is be creative.