vault backup: 2025-03-26 11:29:49

This commit is contained in:
2025-03-26 11:29:49 +01:00
parent 579b68bd85
commit ad26715fb2
2 changed files with 22 additions and 3 deletions

View File

@@ -62,9 +62,23 @@
"icon": "lucide-file", "icon": "lucide-file",
"title": "Requirements Gathering" "title": "Requirements Gathering"
} }
},
{
"id": "6481c85a3791492b",
"type": "leaf",
"state": {
"type": "markdown",
"state": {
"file": "3 Knowledge/Computer Vision - Depth Perception.md",
"mode": "source",
"source": false
},
"icon": "lucide-file",
"title": "Computer Vision - Depth Perception"
}
} }
], ],
"currentTab": 3 "currentTab": 4
} }
], ],
"direction": "vertical" "direction": "vertical"
@@ -311,10 +325,10 @@
"periodic-notes:Open today": false "periodic-notes:Open today": false
} }
}, },
"active": "b61acafdb7bde436", "active": "6481c85a3791492b",
"lastOpenFiles": [ "lastOpenFiles": [
"3 Knowledge/Computer Vision - Depth Perception.md",
"99 Work/0 OneSec/OneSecNotes/10 Projects/Requirements/Requirements Gathering.md", "99 Work/0 OneSec/OneSecNotes/10 Projects/Requirements/Requirements Gathering.md",
"3 Knowledge/Computer Vision - Depth Perception.md",
"99 Work/0 OneSec/OneSecNotes/10 Projects/Requirements", "99 Work/0 OneSec/OneSecNotes/10 Projects/Requirements",
"3 Knowledge/Machine Learning.md", "3 Knowledge/Machine Learning.md",
"2 Personal/Lists/Business Ideas.md", "2 Personal/Lists/Business Ideas.md",

View File

@@ -16,6 +16,11 @@ tags:
#### Correspondence Problem #### Correspondence Problem
To compute the disparity map we must first find out corresponding pixels of the two stereo images. [Image rectification](https://en.wikipedia.org/wiki/Image_rectification) is used to To compute the disparity map we must first find out corresponding pixels of the two stereo images. [Image rectification](https://en.wikipedia.org/wiki/Image_rectification) is used to
#### At OSD
```
disparity = (baseline * focal_length) / depth
DISPARITY_CONSTANT = baseline * focal length
```