Skip to content

Commit b79fb7d

Browse files
committed
add missing dependencies
1 parent 06cd1d7 commit b79fb7d

File tree

4 files changed

+56
-3
lines changed

4 files changed

+56
-3
lines changed

Tracking Streamer.xcodeproj/project.pbxproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -652,7 +652,7 @@
652652
CODE_SIGN_ENTITLEMENTS = "Tracking Streamer/VisionProTeleop.entitlements";
653653
CODE_SIGN_IDENTITY = "Apple Development";
654654
CODE_SIGN_STYLE = Automatic;
655-
CURRENT_PROJECT_VERSION = 15;
655+
CURRENT_PROJECT_VERSION = 16;
656656
DEVELOPMENT_ASSET_PATHS = "";
657657
DEVELOPMENT_TEAM = ATTMC2WVK2;
658658
ENABLE_PREVIEWS = YES;
@@ -691,7 +691,7 @@
691691
CODE_SIGN_ENTITLEMENTS = "Tracking Streamer/VisionProTeleop.entitlements";
692692
CODE_SIGN_IDENTITY = "Apple Development";
693693
CODE_SIGN_STYLE = Automatic;
694-
CURRENT_PROJECT_VERSION = 15;
694+
CURRENT_PROJECT_VERSION = 16;
695695
DEVELOPMENT_ASSET_PATHS = "";
696696
DEVELOPMENT_TEAM = ATTMC2WVK2;
697697
ENABLE_PREVIEWS = YES;

Tracking Streamer/Supporting files/Localizable.xcstrings

Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,10 @@
8181
},
8282
"%lld Hz" : {
8383

84+
},
85+
"%lld KB" : {
86+
"comment" : "A label displaying the total size of the 3D scene file in kilobytes. The argument is the total size of the 3D scene file in kilobytes.",
87+
"isCommentAutoGenerated" : true
8488
},
8589
"%lld markers" : {
8690

@@ -132,6 +136,28 @@
132136
}
133137
}
134138
},
139+
"%lld/%lld chunks" : {
140+
"comment" : "Displays the number of chunks received and the total size of the 3D scene in kilobytes.",
141+
"isCommentAutoGenerated" : true,
142+
"localizations" : {
143+
"en" : {
144+
"stringUnit" : {
145+
"state" : "new",
146+
"value" : "%1$lld/%2$lld chunks"
147+
}
148+
}
149+
}
150+
},
151+
"%lld/%lld chunks • %lld KB" : {
152+
"localizations" : {
153+
"en" : {
154+
"stringUnit" : {
155+
"state" : "new",
156+
"value" : "%1$lld/%2$lld chunks • %3$lld KB"
157+
}
158+
}
159+
}
160+
},
135161
"%lld/%lld files uploading to %@" : {
136162
"comment" : "A description of the current upload progress, showing how many files have been successfully uploaded out of the total.",
137163
"isCommentAutoGenerated" : true,
@@ -375,6 +401,18 @@
375401
"comment" : "A label for the baseline measurement in the stereo calibration step.",
376402
"isCommentAutoGenerated" : true
377403
},
404+
"Cached Files" : {
405+
"comment" : "A label for the number of USDZ files that are currently cached.",
406+
"isCommentAutoGenerated" : true
407+
},
408+
"Cached Scenes" : {
409+
"comment" : "A label displayed above the list of cached scenes in the USDZ Cache Panel.",
410+
"isCommentAutoGenerated" : true
411+
},
412+
"Cached USDZ scenes are reused when connecting to the same MuJoCo/Isaac sim scene, speeding up reconnection." : {
413+
"comment" : "A description of how cached USDZ scenes are used within the app.",
414+
"isCommentAutoGenerated" : true
415+
},
378416
"CAL #%lld" : {
379417
"comment" : "A label displaying the ARKit marker ID. The argument is the ARKit marker ID.",
380418
"isCommentAutoGenerated" : true
@@ -502,6 +540,14 @@
502540
"comment" : "A heading for the settings related to the checkerboard pattern used in camera calibration.",
503541
"isCommentAutoGenerated" : true
504542
},
543+
"Clear All Cache" : {
544+
"comment" : "A button label that clears all cached USDZ scenes.",
545+
"isCommentAutoGenerated" : true
546+
},
547+
"Clearing the cache will force re-download of scenes on next connection." : {
548+
"comment" : "A description below the \"Clear All Cache\" button in the status overlay, explaining that clearing the cache will force a re-download of scenes on the next connection.",
549+
"isCommentAutoGenerated" : true
550+
},
505551
"Close" : {
506552
"comment" : "The label of a button that dismisses the current view.",
507553
"isCommentAutoGenerated" : true
@@ -1046,6 +1092,9 @@
10461092
},
10471093
"Left: %lld" : {
10481094

1095+
},
1096+
"Loading 3D Scene" : {
1097+
10491098
},
10501099
"Local" : {
10511100

@@ -1670,6 +1719,10 @@
16701719
"comment" : "A label displayed within the progress bar to indicate the total number of samples collected.",
16711720
"isCommentAutoGenerated" : true
16721721
},
1722+
"Total Size" : {
1723+
"comment" : "A label displayed next to the size of a cached USDZ scene.",
1724+
"isCommentAutoGenerated" : true
1725+
},
16731726
"Track spatial stylus (Apple Pencil Pro) and visualize its pose in 3D." : {
16741727
"comment" : "A description of the feature that allows users to track and visualize the spatial stylus (Apple Pencil Pro) in 3D.",
16751728
"isCommentAutoGenerated" : true

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
install_requires=[
1111
'numpy', 'grpcio', 'grpcio-tools', 'matplotlib', 'opencv-python',
1212
'aiortc', 'av', 'requests', 'pyyaml', 'mujoco', 'tqdm', 'scipy', 'pydub',
13-
'websocket-client',
13+
'websocket-client', 'gdown', 'flask'
1414
],
1515
extras_require={
1616
},

0 commit comments

Comments
 (0)