Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[mvsUtils] fix writing metadata for filtered depthmaps #1467

Merged
merged 1 commit into from
Jun 14, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/aliceVision/mvsUtils/mapIO.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -477,7 +477,7 @@ void writeMapToFileOrTile(int rc,
}

// min/max/nb depth metadata (for depth map only)
if(fileType == EFileType::depthMap)
if((fileType == EFileType::depthMap) || (fileType == EFileType::depthMapFiltered))
{
const int nbDepthValues = std::count_if(in_map.data(), in_map.data() + in_map.size(), [](float v) { return v > 0.0f; });
float maxDepth = -1.0f;
Expand Down