MCPcopy Create free account
hub / github.com/colmap/colmap / CachedImage

Method CachedImage

src/colmap/mvs/workspace.cc:155–160  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

153}
154
155CachedWorkspace::CachedImage::CachedImage(CachedImage&& other) noexcept {
156 num_bytes = other.num_bytes;
157 bitmap = std::move(other.bitmap);
158 depth_map = std::move(other.depth_map);
159 normal_map = std::move(other.normal_map);
160}
161
162CachedWorkspace::CachedImage& CachedWorkspace::CachedImage::operator=(
163 CachedImage&& other) noexcept {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected