Mentions légales du service
Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
SIBR Core
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
SIBR
SIBR Core
Commits
ae39c0af
Commit
ae39c0af
authored
1 year ago
by
bkerbl
Browse files
Options
Downloads
Patches
Plain Diff
Short path for remote
parent
4775060e
No related branches found
No related tags found
1 merge request
!40
core/utils: fix installDirectory method in linux
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/projects/remote/apps/remoteGaussianUI/main.cpp
+3
-0
3 additions, 0 deletions
src/projects/remote/apps/remoteGaussianUI/main.cpp
src/projects/remote/renderer/Config.hpp
+1
-0
1 addition, 0 deletions
src/projects/remote/renderer/Config.hpp
with
4 additions
and
0 deletions
src/projects/remote/apps/remoteGaussianUI/main.cpp
+
3
−
0
View file @
ae39c0af
...
@@ -123,6 +123,9 @@ int main(int ac, char** av) {
...
@@ -123,6 +123,9 @@ int main(int ac, char** av) {
RemoteAppArgs
myArgs
;
RemoteAppArgs
myArgs
;
myArgs
.
displayHelpIfRequired
();
myArgs
.
displayHelpIfRequired
();
if
(
!
myArgs
.
dataset_path
.
isInit
()
&&
myArgs
.
pathShort
.
isInit
())
myArgs
.
dataset_path
=
myArgs
.
pathShort
.
get
();
const
bool
doVSync
=
!
myArgs
.
vsync
;
const
bool
doVSync
=
!
myArgs
.
vsync
;
// rendering size
// rendering size
uint
rendering_width
=
myArgs
.
rendering_size
.
get
()[
0
];
uint
rendering_width
=
myArgs
.
rendering_size
.
get
()[
0
];
...
...
This diff is collapsed.
Click to expand it.
src/projects/remote/renderer/Config.hpp
+
1
−
0
View file @
ae39c0af
...
@@ -42,6 +42,7 @@ namespace sibr {
...
@@ -42,6 +42,7 @@ namespace sibr {
/// Arguments for all ULR applications.
/// Arguments for all ULR applications.
struct
RemoteAppArgs
:
struct
RemoteAppArgs
:
virtual
BasicIBRAppArgs
{
virtual
BasicIBRAppArgs
{
RequiredArg
<
std
::
string
>
pathShort
=
{
"s"
,
"path to the dataset root"
};
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"
};
Arg
<
std
::
string
>
ip
=
{
"ip"
,
"127.0.0.1"
,
"Target IP to connect to (default localhost)"
};
Arg
<
std
::
string
>
ip
=
{
"ip"
,
"127.0.0.1"
,
"Target IP to connect to (default localhost)"
};
Arg
<
uint
>
port
=
{
"port"
,
6009
,
"Port to use for connection"
};
Arg
<
uint
>
port
=
{
"port"
,
6009
,
"Port to use for connection"
};
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment