Skip to content

Commit

Permalink
Merge pull request #2 from balugans/balugans-patch-1
Browse files Browse the repository at this point in the history
Update data.ts for including Metrics for depth-estimation
  • Loading branch information
balugans authored May 25, 2023
2 parents 616e0d4 + 6ba5191 commit 43d2465
Showing 1 changed file with 19 additions and 1 deletion.
20 changes: 19 additions & 1 deletion tasks/src/depth-estimation/data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,25 @@ const taskData: TaskDataCustom = {
},
],
},
metrics: [],
metrics: [
// Reference: https://openaccess.thecvf.com/content_CVPR_2019/papers/Lee_Monocular_Depth_Estimation_Using_Relative_Depth_Maps_CVPR_2019_paper.pdf
{
description: "Estimate Root Mean Sqaure Error (RMSE) between depth-estimate and ground-truth",
id: "RMSE_Linear",
},
{
description: "Estimate Root Mean Sqaure Error (RMSE) between logarithmic depth-estimate and logarithmic ground-truth",
id: "RMSE_Log",
},
{
description: "Estimate Absolute Relative distance (ARD) between depth-estimate and ground-truth",
id: "ARD",
},
{
description: "Estimate Squared Relative distance (ARD) between depth-estimate and ground-truth",
id: "SRD",
},
],
models: [
{
// TO DO: write description
Expand Down

0 comments on commit 43d2465

Please # to comment.