Mentions légales du service

Skip to content
Snippets Groups Projects
Commit bd01fcfc authored by bkerbl's avatar bkerbl
Browse files

Reenabled images

parent 3c35b80b
No related branches found
No related tags found
1 merge request!40core/utils: fix installDirectory method in linux
......@@ -106,7 +106,7 @@ int main(int ac, char** av)
bool white_background = cfgLine.substr(rng.first, rng.second - rng.first).find("True") != -1;
BasicIBRScene::SceneOptions myOpts;
myOpts.renderTargets = false;
myOpts.renderTargets = myArgs.loadImages;
myOpts.mesh = true;
myOpts.images = myArgs.loadImages;
myOpts.cameras = true;
......
......@@ -44,7 +44,7 @@ namespace sibr {
virtual BasicIBRAppArgs {
RequiredArg<std::string> modelPath = { "model-path", "Model directory" };
RequiredArg<std::string> iteration = { "iteration", "Iteration to load from model" };
Arg<bool> loadImages = { "load_images", "Whether or not to load images for scene overview"};
Arg<bool> loadImages = { "load_images", "Whether or not to load images for scene overview."};
};
}
......
......@@ -39,7 +39,7 @@ void resetScene(RemoteAppArgs myArgs,
}
BasicIBRScene::SceneOptions myOpts;
myOpts.renderTargets = false;
myOpts.renderTargets = myArgs.loadImages;
myOpts.mesh = true;
myOpts.images = myArgs.loadImages;
myOpts.cameras = true;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment