Depth Map from Google Pixel 6a Photos
An other phone an other method to get the depth map. 😕
If you shoot with an Google Pixel in the "Portrait" mode it saves three images in one jpeg. The First one ist the Main image you See in every image viewer, second one is the image without any filter applied and the third one is the depth map.
You can get the images with the command line tool "exiftool". This time the depth map is not saved as embedded data but as a trailer. To extract it you need to fist run:
"exiftool(-k).exe" MainImage.PORTRAIT.jpg -trailer -b > ImageWithoutFilter.jpg
Image without filter |
This extracts an image with without any filter applied. Now you need to run the same command with the new created image, this will extract now the depth map:
"exiftool(-k).exe" ImageWithoutFilter.jpg -trailer -b > DepthMap.jpg
Depth Map |
Kommentare
Kommentar veröffentlichen