Anton Matrosov
Anton Matrosov
I've implemented disparity -> depth remapping with dynamic range of 100 (i.e. the farthest pixel is 100x further than the closest pixel on the screen): def on_submit(image): original_image = image.copy()...
> In this line : depth1 = depth1 * 65535.0 where do you get the value 65535.0 from? Also do we not need to account for camera intrinsics anywhere? It's...
> The paper mentions that they align the ground truth and predictions by calculating the shift and translation, do we not need to do the same? (in reverse of course)...
I'm testing mostly on synthetic data - like Midjourney images, etc, so there is no ground truth to compare my results to. But from my observation it's always possible to...
Hi, have you tried applying gamma correction to DA output? like `np.power (value, 1.0 / 2.2)` You might also find this issue relevant: https://github.com/LiheYoung/Depth-Anything/issues/47