├── dectalk ├── say.exe ├── speak.exe ├── MSVCRTd.DLL ├── dectalk.dll └── dtalk_us.dic ├── README.md ├── process.py ├── extras └── say.c ├── LICENSE └── 3DGaussianSplatting_INRIA_Method_Colab.ipynb /dectalk/say.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connornishijima/80speak/HEAD/dectalk/say.exe -------------------------------------------------------------------------------- /dectalk/speak.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connornishijima/80speak/HEAD/dectalk/speak.exe -------------------------------------------------------------------------------- /dectalk/MSVCRTd.DLL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connornishijima/80speak/HEAD/dectalk/MSVCRTd.DLL -------------------------------------------------------------------------------- /dectalk/dectalk.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connornishijima/80speak/HEAD/dectalk/dectalk.dll -------------------------------------------------------------------------------- /dectalk/dtalk_us.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connornishijima/80speak/HEAD/dectalk/dtalk_us.dic -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # 80speak 2 | 80speak is an online speech synthesizer based on DECtalk, famously used by Professor Stephen Hawking, The US National Weather Service, Back To The Future Part II, and Benny Benassi. 3 | -------------------------------------------------------------------------------- /process.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | 3 | import os 4 | import json 5 | import time 6 | import traceback 7 | from pydub import AudioSegment 8 | from random import randint 9 | try: 10 | with open("requests.json","r") as f: 11 | reqs = json.loads(f.read()) 12 | 13 | print "PROCESSING REQUESTS..." 14 | 15 | for item in reqs: 16 | phrase = item["phrase"] 17 | phrase = '"This is a test of the 80speak python processor! It can run multiple jobs at once, and even output mp3!"' 18 | session = item["session"] 19 | print "----------------------------------------" 20 | print "SESSION: "+session 21 | print "PHRASE: "+phrase 22 | print "Converting to speech..." 23 | try: 24 | os.remove("/var/www/html/wav/"+session+".wav") 25 | except: 26 | pass 27 | command = "wine say.exe -w /var/www/html/wav/"+session+".wav "+phrase+"&" 28 | print command 29 | os.system(command) 30 | print "----------------------------------------" 31 | continue 32 | print "Converting to mp3..." 33 | sound = AudioSegment.from_file("/var/www/html/wav/"+session+".wav", format="wav") 34 | sound.export("/var/www/html/mp3/"+session+".mp3", bitrate='32k', format="mp3") 35 | print "Deleting original wav..." 36 | os.remove("/var/www/html/wav/"+session+".wav") 37 | print "DONE!" 38 | except: 39 | traceback.print_exc() 40 | -------------------------------------------------------------------------------- /extras/say.c: -------------------------------------------------------------------------------- 1 | /* ******************************************************************** 2 | * 3 | * COPYRIGHT NOTICE 4 | * 5 | * Copyright © 2001 Force Computers, Inc., a Solectron Company. All rights reserved. 6 | * 7 | * All Rights reserved. Unpublished rights reserved under the 8 | * copyright laws of the United States. Copyright is claimed in 9 | * the computer program and user interface thereof. 10 | * 11 | * The software contained on this media is proprietary to and 12 | * embodies the confidential technology of Force Computers Inc. 13 | * Possession, use, duplication or dissemination of 14 | * the software and media is authorized only pursuant to a valid 15 | * written license from Force computers Inc. 16 | * 17 | * The name of Force Computers Inc. may not be used to 18 | * endorse or promote products derived from this software without 19 | * specific prior written permission. All other rights reserved. 20 | * 21 | * THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR 22 | * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, IMPLIED 23 | * WARRANTIES OF NON-INFRINGEMENT, MERCHANTABILITY OR FITNESS 24 | * FOR A PARTICULAR PURPOSE. 25 | * Force assumes no responsibility AT ALL for the use or 26 | * reliability of this software. 27 | * 28 | * 29 | * +----------------------------------------------------------------+ 30 | * | USE, DUPLICATION OR DISCLOSURE BY THE U.S. GOVERNMENT IS | 31 | * | SUBJECT TO RESTRICTIONS AS SET FORTH IN SUBPARAGRAPH (c) | 32 | * | DFARS 252.227-7013, OR IN FAR 52.227-14 ALT. II, AS APPLICABLE.| 33 | * | | 34 | * +----------------------------------------------------------------+ 35 | * 36 | ********************************************************************* 37 | ********************************************************************* 38 | */ 39 | /* Comments 40 | Rev Name Date Description 41 | --- ---- -------- -------------------------------------------- 42 | 001 CAB 05/30/01 1. Add Force copyright info 43 | 2. Add version option 44 | 002 CAB 06/25/01 Close application if dictionary not found. 45 | 003 MGS 07/17/03 Display error message if user dictionary is not found 46 | */ 47 | 48 | #define STRICT 49 | #include 50 | #include 51 | #include 52 | #include 53 | 54 | #include "ttsapi.h" 55 | 56 | 57 | #define INPUT_CMDLINE 0 58 | #define INPUT_STDIN 1 59 | 60 | #define OUTPUT_SOUND 0 61 | #define OUTPUT_WAVE 1 62 | #define OUTPUT_LOGTEXT 2 63 | #define OUTPUT_LOGPHONEME 3 64 | #define OUTPUT_LOGSYLLABLE 4 65 | 66 | /****************************************************************************/ 67 | 68 | void OutputHelp( void ); 69 | void ErrorOut( char *message ); 70 | void PutStdOut( char *message ); 71 | int ParseArgs( int ac, char **av ); 72 | MMRESULT SpeakCmdLine( int ac, char **av, int firstIndex ); 73 | MMRESULT SpeakStdin( void ); 74 | BOOL CtrlHandler( DWORD dwCtrlType ); 75 | void SpeakVersion(void); 76 | 77 | /****************************************************************************/ 78 | 79 | HANDLE hStdin; /* File handle for std. input */ 80 | HANDLE hStdout; /* File handle for std. output */ 81 | HANDLE hStderr; /* File handle for std. error */ 82 | int inputMode = INPUT_STDIN; /* Where does input come from */ 83 | int outputMode = OUTPUT_SOUND; /* Where does output go to */ 84 | char *prefixText = NULL; /* Text to speak before input */ 85 | char *postfixText = NULL; /* Text to speak after input */ 86 | char *outFile = NULL; /* Name of output file */ 87 | char *dictFile = NULL; /* User dictionary to load */ 88 | LPTTS_HANDLE_T ttsHandlePtr = NULL; /* DECtalk TTS handle */ 89 | BOOL signalReceived = FALSE; /* Set TRUE on CTRL/C or Break */ 90 | 91 | /****************************************************************************/ 92 | #ifdef BORLAND_C 93 | #pragma argsused 94 | #endif 95 | 96 | int main( int argc, char **argv ) 97 | { 98 | MMRESULT status; 99 | 100 | int firstWordIndex; 101 | 102 | /* Set control handler and get stdio info */ 103 | 104 | SetConsoleCtrlHandler( (PHANDLER_ROUTINE) CtrlHandler, TRUE ); 105 | hStderr = GetStdHandle( STD_ERROR_HANDLE ); 106 | hStdin = GetStdHandle( STD_INPUT_HANDLE ); 107 | hStdout = GetStdHandle( STD_OUTPUT_HANDLE ); 108 | 109 | /* Parse the command line for options. */ 110 | 111 | firstWordIndex = ParseArgs( argc, argv ); 112 | if ( firstWordIndex < 0 ) 113 | return 0; 114 | 115 | /* Initialize DECtalk and check the status */ 116 | 117 | /* ETT 11/04/98 BATS #233: 118 | check if user wants wavefile out even if audio device 119 | may be present. 120 | */ 121 | if ( outputMode == OUTPUT_WAVE ) 122 | { 123 | status = TextToSpeechStartup( NULL, &ttsHandlePtr, WAVE_MAPPER, DO_NOT_USE_AUDIO_DEVICE ); 124 | } 125 | else 126 | { 127 | status = TextToSpeechStartup( NULL, &ttsHandlePtr, WAVE_MAPPER, 0 ); 128 | if ( status != MMSYSERR_NOERROR ) { 129 | /* ETT 11/04/98: BATS #233: 130 | if nodriver is returned this means that there is no audio device. 131 | try starting TTS again with DO_NOT_USE_AUDIO_DEVICE. */ 132 | if ( status == MMSYSERR_NODRIVER ) 133 | { 134 | status = TextToSpeechStartup( NULL, &ttsHandlePtr, WAVE_MAPPER, DO_NOT_USE_AUDIO_DEVICE ); 135 | if ( status != MMSYSERR_NOERROR ) { 136 | if ( status == MMSYSERR_ERROR ) { 137 | ErrorOut( "DECtalk dictionary not found.\n" ); 138 | return 1; 139 | } 140 | if ( status == MMSYSERR_ALLOCATED ) { 141 | ErrorOut( "No more DECtalk License units available.\n" ); 142 | return 1; 143 | } 144 | if ( status == MMSYSERR_NOMEM ) { 145 | ErrorOut( "Memory allocation error.\n" ); 146 | return 1; 147 | } 148 | } 149 | } 150 | /* ETT 11/04/98: add meaningful exit error output. */ 151 | if ( (status == MMSYSERR_ERROR) || (status == MMSYSERR_INVALPARAM) ) { 152 | ErrorOut( "DECtalk dictionary not found.\n" ); 153 | return 1; 154 | } 155 | if ( status == MMSYSERR_ALLOCATED ) { 156 | ErrorOut( "No more DECtalk License units available.\n" ); 157 | return 1; 158 | } 159 | if ( status == MMSYSERR_NOMEM ) { 160 | ErrorOut( "Memory allocation error.\n" ); 161 | return 1; 162 | } 163 | } 164 | } 165 | 166 | /* Do we have to load a user dictionary? */ 167 | if ( dictFile != NULL ) { 168 | 169 | /* First unload any previously loaded user dictionary */ 170 | 171 | status = TextToSpeechUnloadUserDictionary( ttsHandlePtr ); 172 | 173 | /* Now load the new one */ 174 | 175 | status = TextToSpeechLoadUserDictionary( ttsHandlePtr, dictFile ); 176 | if (status) 177 | { 178 | printf("could not find user dictionary %s\n",dictFile); 179 | } 180 | } 181 | 182 | /* Do we have to open an output file? */ 183 | 184 | switch ( outputMode ) { 185 | case OUTPUT_WAVE : 186 | if ( outFile != NULL ) 187 | status = TextToSpeechOpenWaveOutFile( ttsHandlePtr, 188 | outFile, 189 | WAVE_FORMAT_1M16 ); 190 | break; 191 | 192 | case OUTPUT_LOGTEXT : 193 | if ( outFile != NULL ) 194 | status = TextToSpeechOpenLogFile( ttsHandlePtr, outFile, 195 | LOG_TEXT ); 196 | break; 197 | 198 | case OUTPUT_LOGPHONEME : 199 | if ( outFile != NULL ) 200 | status = TextToSpeechOpenLogFile( ttsHandlePtr, outFile, 201 | LOG_PHONEMES ); 202 | break; 203 | 204 | case OUTPUT_LOGSYLLABLE : 205 | if ( outFile != NULL ) 206 | status = TextToSpeechOpenLogFile( ttsHandlePtr, outFile, 207 | LOG_SYLLABLES ); 208 | break; 209 | 210 | } 211 | 212 | /* Do we have prefix text to speak? */ 213 | 214 | if ( prefixText != NULL ) 215 | status = TextToSpeechSpeak( ttsHandlePtr, prefixText, TTS_FORCE ); 216 | 217 | /* Branch depending on what kind of input we have */ 218 | 219 | switch ( inputMode ) { 220 | case INPUT_CMDLINE : 221 | status = SpeakCmdLine( argc, argv, firstWordIndex ); 222 | break; 223 | 224 | case INPUT_STDIN : 225 | status = SpeakStdin(); 226 | break; 227 | 228 | default: 229 | ErrorOut( "Invalid input mode\n" ); 230 | break; 231 | } 232 | 233 | /* Do we have postfix text to speak? */ 234 | 235 | if ( postfixText != NULL ) 236 | status = TextToSpeechSpeak( ttsHandlePtr, postfixText, TTS_FORCE ); 237 | 238 | /* Sync to make sure everything has come out */ 239 | 240 | TextToSpeechSpeak( ttsHandlePtr, " ", TTS_FORCE ); 241 | TextToSpeechSync( ttsHandlePtr ); 242 | 243 | /* If we opened an output file, close it. */ 244 | 245 | switch ( outputMode ) { 246 | case OUTPUT_WAVE : 247 | if ( outFile != NULL ) 248 | status = TextToSpeechCloseWaveOutFile( ttsHandlePtr ); 249 | break; 250 | 251 | case OUTPUT_LOGTEXT : 252 | case OUTPUT_LOGPHONEME : 253 | case OUTPUT_LOGSYLLABLE : 254 | if ( outFile != NULL ) 255 | status = TextToSpeechCloseLogFile( ttsHandlePtr ); 256 | break; 257 | } 258 | 259 | /* Shut down DECtalk. */ 260 | 261 | TextToSpeechShutdown( ttsHandlePtr ); 262 | 263 | return 0; 264 | } 265 | 266 | 267 | /* 268 | * ParseArgs 269 | * 270 | * Parses the arguments in argv and sets global variables representing 271 | * program options. 272 | * 273 | * Returns firstWordIndex, the array index (to argv) of the first argument 274 | * which is text to be spoken. If the return value is zero, no arguments 275 | * are to be spoken directly. If the return value is negative, no further 276 | * processing occurs. 277 | */ 278 | 279 | int ParseArgs( int ac, char **av ) 280 | { 281 | int i; 282 | 283 | /* Loop over arguments, looking for command line options */ 284 | 285 | for ( i = 1; i < ac; i++ ) { 286 | 287 | /* If not a command line option, it's text to speak. */ 288 | 289 | if ( (av[i][0] != '-') && (av[i][0] != '/') ) { 290 | inputMode = INPUT_CMDLINE; 291 | return i; 292 | } 293 | 294 | /* 295 | * If the second character is a dash or slash, it's also 296 | * text to speak. 297 | */ 298 | 299 | else if ( (av[i][1] == '-') || (av[i][1] == '/') ) { 300 | inputMode = INPUT_CMDLINE; 301 | av[i]++; /* Go past first / or - */ 302 | return i; 303 | } 304 | 305 | /* Process log file spec */ 306 | 307 | else if ( av[i][1] == 'l' ) { 308 | if ( i < (ac - 1) ) { 309 | 310 | /* Get log mode */ 311 | 312 | if ( av[i][2] == 'p' ) 313 | outputMode = OUTPUT_LOGPHONEME; 314 | else if ( av[i][2] == 's' ) 315 | outputMode = OUTPUT_LOGSYLLABLE; 316 | else 317 | outputMode = OUTPUT_LOGTEXT; /* Default is 't' text log */ 318 | 319 | /* Get log file name */ 320 | 321 | i++; 322 | outFile = av[i]; 323 | } 324 | } 325 | 326 | /* Process wave file spec */ 327 | 328 | else if ( av[i][1] == 'w' ) { 329 | if ( i < (ac - 1) ) { 330 | i++; 331 | outFile = av[i]; 332 | outputMode = OUTPUT_WAVE; 333 | } 334 | } 335 | 336 | /* Process dictionary file spec */ 337 | 338 | else if ( av[i][1] == 'd' ) { 339 | if ( i < (ac - 1) ) { 340 | i++; 341 | dictFile = av[i]; 342 | } 343 | } 344 | 345 | /* Process prefix */ 346 | 347 | else if ( strcmp( &av[i][1], "pre" ) == 0 ) { 348 | if ( i < (ac - 1) ) { 349 | i++; 350 | prefixText = av[i]; 351 | } 352 | } 353 | 354 | /* Process postfix */ 355 | 356 | else if ( strcmp( &av[i][1], "post" ) == 0 ) { 357 | if ( i < (ac - 1) ) { 358 | i++; 359 | postfixText = av[i]; 360 | } 361 | } 362 | 363 | /* Process request for help */ 364 | 365 | else if ( (av[i][1] == 'h') || (av[i][1] == '?') ) { 366 | OutputHelp(); 367 | return -1; 368 | } 369 | 370 | /* Process request for version number */ 371 | 372 | else if ( av[i][1] == 'v' ) { 373 | SpeakVersion(); 374 | return -1; 375 | } 376 | 377 | /* Process invalid argument */ 378 | else { 379 | ErrorOut( "Invalid Argument\n" ); 380 | } 381 | 382 | } /* End of loop over arguments */ 383 | 384 | /* 385 | * If we got here, we did not find any non-option arguments to speak. 386 | * So return 0 which means not to speak any args on the command line. 387 | */ 388 | 389 | return 0; 390 | } 391 | 392 | 393 | MMRESULT SpeakStdin( void ) 394 | { 395 | DWORD numRead; 396 | BOOL readStatus; 397 | MMRESULT status; 398 | char buf[2049]; 399 | 400 | do { 401 | memset( buf, 0, sizeof(buf) ); 402 | readStatus = ReadFile( hStdin, buf, 2048, &numRead, NULL ); 403 | if ( (!readStatus) || (numRead == 0) ) 404 | break; 405 | 406 | status = TextToSpeechSpeak( ttsHandlePtr, buf, TTS_FORCE ); 407 | } while ( readStatus ); 408 | 409 | return status; 410 | } 411 | 412 | 413 | MMRESULT SpeakCmdLine( int ac, char **av, int firstIndex ) 414 | { 415 | int i; 416 | MMRESULT status; 417 | 418 | /* Loop over arguments, sending each one to DECtalk */ 419 | 420 | for ( i = firstIndex; i < ac; i++ ) { 421 | 422 | if ( signalReceived ) 423 | break; 424 | 425 | /* 426 | * Put a space between arguments, otherwise DECtalk will run 427 | * them all together. 428 | */ 429 | 430 | if ( i > firstIndex ) 431 | status = TextToSpeechSpeak( ttsHandlePtr, " ", TTS_NORMAL ); 432 | 433 | /* 434 | * Send the argument to DECtalk. 435 | */ 436 | 437 | status = TextToSpeechSpeak( ttsHandlePtr, av[i], TTS_NORMAL ); 438 | 439 | } /* End loop over args */ 440 | 441 | return status; 442 | } 443 | 444 | 445 | void ErrorOut( char *message ) 446 | { 447 | DWORD numWritten; 448 | 449 | WriteFile( hStderr, message, strlen( message ), &numWritten, NULL ); 450 | } 451 | 452 | void PutStdOut( char *message ) 453 | { 454 | DWORD numWritten; 455 | 456 | WriteFile( hStdout, message, strlen( message ), &numWritten, NULL ); 457 | } 458 | 459 | 460 | #ifdef BORLAND_C 461 | #pragma argsused 462 | #endif 463 | 464 | BOOL CtrlHandler( DWORD dwCtrlType ) 465 | { 466 | signalReceived = TRUE; 467 | TextToSpeechReset( ttsHandlePtr, TRUE ); 468 | 469 | return TRUE; 470 | } 471 | 472 | 473 | void OutputHelp( void ) 474 | { 475 | PutStdOut( "SAY [options] [text]\n" ); 476 | PutStdOut( "\n" ); 477 | PutStdOut( "Help Options:\n" ); 478 | PutStdOut( "\n" ); 479 | PutStdOut( " -h or -? = Help. Outputs this file to the console. This\n" ); 480 | PutStdOut( " option cancels any others on the command line.\n" ); 481 | PutStdOut( "\n" ); 482 | PutStdOut( "\n" ); 483 | PutStdOut( "Output Options:\n" ); 484 | PutStdOut( "\n" ); 485 | PutStdOut( " -w outFile = Convert text into specified wave file instead of\n" ); 486 | PutStdOut( " speaking to the sound device.\n" ); 487 | PutStdOut( "\n" ); 488 | PutStdOut( " -l[t] outFile = Turn on text logging, which logs all input text\n" ); 489 | PutStdOut( " to a file. This text includes any pre and post\n" ); 490 | PutStdOut( " commands as well as commands sent to DECtalk by\n" ); 491 | PutStdOut( " the SAY program itself.\n" ); 492 | PutStdOut( "\n" ); 493 | PutStdOut( " Since this is the default logging mode, the 't'\n" ); 494 | PutStdOut( " immediately following the '-l' is optional.\n" ); 495 | PutStdOut( "\n" ); 496 | PutStdOut( " -ls outFile = Turn on syllable logging, which logs each\n" ); 497 | PutStdOut( " syllable to a file.\n" ); 498 | PutStdOut( "\n" ); 499 | PutStdOut( " -lp outFile = Turn on phoneme logging, which converts the\n" ); 500 | PutStdOut( " input text to phonemes. This is useful if you\n" ); 501 | PutStdOut( " want to get DECtalk to sing. You convert the\n" ); 502 | PutStdOut( " text to phonemes and then insert the tone\n" ); 503 | PutStdOut( " commands into the phoneme file.\n" ); 504 | PutStdOut( "\n" ); 505 | PutStdOut( " If no output options are specified, SAY sends its output to the\n" ); 506 | PutStdOut( " installed sound device, ususally a sound card. Only one output\n" ); 507 | PutStdOut( " option can be specified; if you specify more than one, the last one\n" ); 508 | PutStdOut( " on the command line is used.\n" ); 509 | PutStdOut( "\n" ); 510 | PutStdOut( "\n" ); 511 | PutStdOut( "Input Options:\n" ); 512 | PutStdOut( "\n" ); 513 | PutStdOut( " -pre preText = Text to be passed to DECtalk before the normal input.\n" ); 514 | PutStdOut( " This is useful for passing initializing commands to\n" ); 515 | PutStdOut( " DECtalk that would normally not be part of the input.\n" ); 516 | PutStdOut( " If the prefix text has spaces, it must be enclosed in\n" ); 517 | PutStdOut( " quotes. An example would be \"[:phoneme on]\" or\n" ); 518 | PutStdOut( " \"[:nb :ra200]\".\n" ); 519 | PutStdOut( "\n" ); 520 | PutStdOut( " The prefix text is \"forced\" out before the input text\n" ); 521 | PutStdOut( " is read.\n" ); 522 | PutStdOut( "\n" ); 523 | PutStdOut( " -post postText = Text to be passed to DECtalk after the normal input.\n" ); 524 | PutStdOut( " This is useful for passing terminating commands to\n" ); 525 | PutStdOut( " DECtalk that would normally not be part of the input.\n" ); 526 | PutStdOut( " If the postfix text has spaces, it must be enclosed\n" ); 527 | PutStdOut( " in quotes. An example would be \"[:phoneme off]\" or\n" ); 528 | PutStdOut( " \"The End\".\n" ); 529 | PutStdOut( "\n" ); 530 | PutStdOut( " The \"normal\" input is \"forced\" out before the postfix\n" ); 531 | PutStdOut( " text is read.\n" ); 532 | PutStdOut( "\n" ); 533 | PutStdOut( " text = Text appearing on command line is spoken. The text\n" ); 534 | PutStdOut( " to be spoken can either come from the standard\n" ); 535 | PutStdOut( " input or from the command line.\n" ); 536 | PutStdOut( "\n" ); 537 | PutStdOut( " Anything on the command line that is not an option\n" ); 538 | PutStdOut( " will be interpreted as text, as will anything following\n" ); 539 | PutStdOut( " it on the command line. In other words, text to\n" ); 540 | PutStdOut( " be spoken must appear on the command line after\n" ); 541 | PutStdOut( " all options.\n" ); 542 | PutStdOut( "\n" ); 543 | PutStdOut( " If the *first* word in the text has a dash (-) or\n" ); 544 | PutStdOut( " slash (/) as its first character, you must precede\n" ); 545 | PutStdOut( " it with another dash or slash. For example, to tell\n" ); 546 | PutStdOut( " DECtalk to say the number -123, you would type the\n" ); 547 | PutStdOut( " command\n" ); 548 | PutStdOut( " \n" ); 549 | PutStdOut( " SAY --123\n" ); 550 | PutStdOut( "\n" ); 551 | PutStdOut( " This is necessary to avoid having SAY interpret the\n" ); 552 | PutStdOut( " number as a command line option.\n" ); 553 | PutStdOut( "\n" ); 554 | PutStdOut( " If you embed DECtalk commands into your text, you must\n" ); 555 | PutStdOut( " enclose them in quotes if they contain spaces.\n" ); 556 | PutStdOut( " This is because SAY treats each space-delimited\n" ); 557 | PutStdOut( " command-line argument as a separate \"word\",\n" ); 558 | PutStdOut( " while DECtalk commands must be processed as\n" ); 559 | PutStdOut( " single \"words\" by the SAY program.\n" ); 560 | PutStdOut( "\n" ); 561 | PutStdOut( " If no text is specified, SAY will take its input from the standard input.\n" ); 562 | PutStdOut( " For example, you could have SAY speak a directory listing in Betty's\n" ); 563 | PutStdOut( " voice by typing\n" ); 564 | PutStdOut( "\n" ); 565 | PutStdOut( " DIR | SAY -pre \"[:nb]\"\n" ); 566 | PutStdOut( "\n" ); 567 | PutStdOut( " or you could just type the command\n" ); 568 | PutStdOut( "\n" ); 569 | PutStdOut( " SAY\n" ); 570 | PutStdOut( "\n" ); 571 | PutStdOut( " and then enter text at the console. In this case, SAY speaks each\n" ); 572 | PutStdOut( " line after you press RETURN, and exits after you press CTRL-Z. If\n" ); 573 | PutStdOut( " you want SAY to take its input from a file, use file redirection as\n" ); 574 | PutStdOut( " in the following example, which reads the file FOO.TXT in Harry's\n" ); 575 | PutStdOut( " voice.\n" ); 576 | PutStdOut( "\n" ); 577 | PutStdOut( " SAY -pre \"[:nh]\" < FOO.TXT\n" ); 578 | PutStdOut( "\n" ); 579 | PutStdOut( "\n" ); 580 | PutStdOut( "Dictionary Options:\n" ); 581 | PutStdOut( "\n" ); 582 | PutStdOut( " -d userDict = Loads the specified user dictionary before\n" ); 583 | PutStdOut( " speaking. This dictionary is loaded in place of\n" ); 584 | PutStdOut( " any default user dictionary determined by DECtalk.\n" ); 585 | PutStdOut( "\n" ); 586 | PutStdOut( "Version information:\n" ); 587 | PutStdOut( "\n" ); 588 | PutStdOut( " -v = Displays the version of the dll.\n" ); 589 | PutStdOut( "\n" ); 590 | } 591 | 592 | void SpeakVersion() 593 | { 594 | LPSTR DECtalk_version; 595 | 596 | PutStdOut( "SAY version: " ); 597 | TextToSpeechVersion(&DECtalk_version); 598 | PutStdOut(DECtalk_version); 599 | PutStdOut( "\n" ); 600 | } 601 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 3, 29 June 2007 3 | 4 | Copyright (C) 2007 Free Software Foundation, Inc. 5 | Everyone is permitted to copy and distribute verbatim copies 6 | of this license document, but changing it is not allowed. 7 | 8 | Preamble 9 | 10 | The GNU General Public License is a free, copyleft license for 11 | software and other kinds of works. 12 | 13 | The licenses for most software and other practical works are designed 14 | to take away your freedom to share and change the works. By contrast, 15 | the GNU General Public License is intended to guarantee your freedom to 16 | share and change all versions of a program--to make sure it remains free 17 | software for all its users. We, the Free Software Foundation, use the 18 | GNU General Public License for most of our software; it applies also to 19 | any other work released this way by its authors. You can apply it to 20 | your programs, too. 21 | 22 | When we speak of free software, we are referring to freedom, not 23 | price. Our General Public Licenses are designed to make sure that you 24 | have the freedom to distribute copies of free software (and charge for 25 | them if you wish), that you receive source code or can get it if you 26 | want it, that you can change the software or use pieces of it in new 27 | free programs, and that you know you can do these things. 28 | 29 | To protect your rights, we need to prevent others from denying you 30 | these rights or asking you to surrender the rights. Therefore, you have 31 | certain responsibilities if you distribute copies of the software, or if 32 | you modify it: responsibilities to respect the freedom of others. 33 | 34 | For example, if you distribute copies of such a program, whether 35 | gratis or for a fee, you must pass on to the recipients the same 36 | freedoms that you received. You must make sure that they, too, receive 37 | or can get the source code. And you must show them these terms so they 38 | know their rights. 39 | 40 | Developers that use the GNU GPL protect your rights with two steps: 41 | (1) assert copyright on the software, and (2) offer you this License 42 | giving you legal permission to copy, distribute and/or modify it. 43 | 44 | For the developers' and authors' protection, the GPL clearly explains 45 | that there is no warranty for this free software. For both users' and 46 | authors' sake, the GPL requires that modified versions be marked as 47 | changed, so that their problems will not be attributed erroneously to 48 | authors of previous versions. 49 | 50 | Some devices are designed to deny users access to install or run 51 | modified versions of the software inside them, although the manufacturer 52 | can do so. This is fundamentally incompatible with the aim of 53 | protecting users' freedom to change the software. The systematic 54 | pattern of such abuse occurs in the area of products for individuals to 55 | use, which is precisely where it is most unacceptable. Therefore, we 56 | have designed this version of the GPL to prohibit the practice for those 57 | products. If such problems arise substantially in other domains, we 58 | stand ready to extend this provision to those domains in future versions 59 | of the GPL, as needed to protect the freedom of users. 60 | 61 | Finally, every program is threatened constantly by software patents. 62 | States should not allow patents to restrict development and use of 63 | software on general-purpose computers, but in those that do, we wish to 64 | avoid the special danger that patents applied to a free program could 65 | make it effectively proprietary. To prevent this, the GPL assures that 66 | patents cannot be used to render the program non-free. 67 | 68 | The precise terms and conditions for copying, distribution and 69 | modification follow. 70 | 71 | TERMS AND CONDITIONS 72 | 73 | 0. Definitions. 74 | 75 | "This License" refers to version 3 of the GNU General Public License. 76 | 77 | "Copyright" also means copyright-like laws that apply to other kinds of 78 | works, such as semiconductor masks. 79 | 80 | "The Program" refers to any copyrightable work licensed under this 81 | License. Each licensee is addressed as "you". "Licensees" and 82 | "recipients" may be individuals or organizations. 83 | 84 | To "modify" a work means to copy from or adapt all or part of the work 85 | in a fashion requiring copyright permission, other than the making of an 86 | exact copy. The resulting work is called a "modified version" of the 87 | earlier work or a work "based on" the earlier work. 88 | 89 | A "covered work" means either the unmodified Program or a work based 90 | on the Program. 91 | 92 | To "propagate" a work means to do anything with it that, without 93 | permission, would make you directly or secondarily liable for 94 | infringement under applicable copyright law, except executing it on a 95 | computer or modifying a private copy. Propagation includes copying, 96 | distribution (with or without modification), making available to the 97 | public, and in some countries other activities as well. 98 | 99 | To "convey" a work means any kind of propagation that enables other 100 | parties to make or receive copies. Mere interaction with a user through 101 | a computer network, with no transfer of a copy, is not conveying. 102 | 103 | An interactive user interface displays "Appropriate Legal Notices" 104 | to the extent that it includes a convenient and prominently visible 105 | feature that (1) displays an appropriate copyright notice, and (2) 106 | tells the user that there is no warranty for the work (except to the 107 | extent that warranties are provided), that licensees may convey the 108 | work under this License, and how to view a copy of this License. If 109 | the interface presents a list of user commands or options, such as a 110 | menu, a prominent item in the list meets this criterion. 111 | 112 | 1. Source Code. 113 | 114 | The "source code" for a work means the preferred form of the work 115 | for making modifications to it. "Object code" means any non-source 116 | form of a work. 117 | 118 | A "Standard Interface" means an interface that either is an official 119 | standard defined by a recognized standards body, or, in the case of 120 | interfaces specified for a particular programming language, one that 121 | is widely used among developers working in that language. 122 | 123 | The "System Libraries" of an executable work include anything, other 124 | than the work as a whole, that (a) is included in the normal form of 125 | packaging a Major Component, but which is not part of that Major 126 | Component, and (b) serves only to enable use of the work with that 127 | Major Component, or to implement a Standard Interface for which an 128 | implementation is available to the public in source code form. A 129 | "Major Component", in this context, means a major essential component 130 | (kernel, window system, and so on) of the specific operating system 131 | (if any) on which the executable work runs, or a compiler used to 132 | produce the work, or an object code interpreter used to run it. 133 | 134 | The "Corresponding Source" for a work in object code form means all 135 | the source code needed to generate, install, and (for an executable 136 | work) run the object code and to modify the work, including scripts to 137 | control those activities. However, it does not include the work's 138 | System Libraries, or general-purpose tools or generally available free 139 | programs which are used unmodified in performing those activities but 140 | which are not part of the work. For example, Corresponding Source 141 | includes interface definition files associated with source files for 142 | the work, and the source code for shared libraries and dynamically 143 | linked subprograms that the work is specifically designed to require, 144 | such as by intimate data communication or control flow between those 145 | subprograms and other parts of the work. 146 | 147 | The Corresponding Source need not include anything that users 148 | can regenerate automatically from other parts of the Corresponding 149 | Source. 150 | 151 | The Corresponding Source for a work in source code form is that 152 | same work. 153 | 154 | 2. Basic Permissions. 155 | 156 | All rights granted under this License are granted for the term of 157 | copyright on the Program, and are irrevocable provided the stated 158 | conditions are met. This License explicitly affirms your unlimited 159 | permission to run the unmodified Program. The output from running a 160 | covered work is covered by this License only if the output, given its 161 | content, constitutes a covered work. This License acknowledges your 162 | rights of fair use or other equivalent, as provided by copyright law. 163 | 164 | You may make, run and propagate covered works that you do not 165 | convey, without conditions so long as your license otherwise remains 166 | in force. You may convey covered works to others for the sole purpose 167 | of having them make modifications exclusively for you, or provide you 168 | with facilities for running those works, provided that you comply with 169 | the terms of this License in conveying all material for which you do 170 | not control copyright. Those thus making or running the covered works 171 | for you must do so exclusively on your behalf, under your direction 172 | and control, on terms that prohibit them from making any copies of 173 | your copyrighted material outside their relationship with you. 174 | 175 | Conveying under any other circumstances is permitted solely under 176 | the conditions stated below. Sublicensing is not allowed; section 10 177 | makes it unnecessary. 178 | 179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law. 180 | 181 | No covered work shall be deemed part of an effective technological 182 | measure under any applicable law fulfilling obligations under article 183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or 184 | similar laws prohibiting or restricting circumvention of such 185 | measures. 186 | 187 | When you convey a covered work, you waive any legal power to forbid 188 | circumvention of technological measures to the extent such circumvention 189 | is effected by exercising rights under this License with respect to 190 | the covered work, and you disclaim any intention to limit operation or 191 | modification of the work as a means of enforcing, against the work's 192 | users, your or third parties' legal rights to forbid circumvention of 193 | technological measures. 194 | 195 | 4. Conveying Verbatim Copies. 196 | 197 | You may convey verbatim copies of the Program's source code as you 198 | receive it, in any medium, provided that you conspicuously and 199 | appropriately publish on each copy an appropriate copyright notice; 200 | keep intact all notices stating that this License and any 201 | non-permissive terms added in accord with section 7 apply to the code; 202 | keep intact all notices of the absence of any warranty; and give all 203 | recipients a copy of this License along with the Program. 204 | 205 | You may charge any price or no price for each copy that you convey, 206 | and you may offer support or warranty protection for a fee. 207 | 208 | 5. Conveying Modified Source Versions. 209 | 210 | You may convey a work based on the Program, or the modifications to 211 | produce it from the Program, in the form of source code under the 212 | terms of section 4, provided that you also meet all of these conditions: 213 | 214 | a) The work must carry prominent notices stating that you modified 215 | it, and giving a relevant date. 216 | 217 | b) The work must carry prominent notices stating that it is 218 | released under this License and any conditions added under section 219 | 7. This requirement modifies the requirement in section 4 to 220 | "keep intact all notices". 221 | 222 | c) You must license the entire work, as a whole, under this 223 | License to anyone who comes into possession of a copy. This 224 | License will therefore apply, along with any applicable section 7 225 | additional terms, to the whole of the work, and all its parts, 226 | regardless of how they are packaged. This License gives no 227 | permission to license the work in any other way, but it does not 228 | invalidate such permission if you have separately received it. 229 | 230 | d) If the work has interactive user interfaces, each must display 231 | Appropriate Legal Notices; however, if the Program has interactive 232 | interfaces that do not display Appropriate Legal Notices, your 233 | work need not make them do so. 234 | 235 | A compilation of a covered work with other separate and independent 236 | works, which are not by their nature extensions of the covered work, 237 | and which are not combined with it such as to form a larger program, 238 | in or on a volume of a storage or distribution medium, is called an 239 | "aggregate" if the compilation and its resulting copyright are not 240 | used to limit the access or legal rights of the compilation's users 241 | beyond what the individual works permit. Inclusion of a covered work 242 | in an aggregate does not cause this License to apply to the other 243 | parts of the aggregate. 244 | 245 | 6. Conveying Non-Source Forms. 246 | 247 | You may convey a covered work in object code form under the terms 248 | of sections 4 and 5, provided that you also convey the 249 | machine-readable Corresponding Source under the terms of this License, 250 | in one of these ways: 251 | 252 | a) Convey the object code in, or embodied in, a physical product 253 | (including a physical distribution medium), accompanied by the 254 | Corresponding Source fixed on a durable physical medium 255 | customarily used for software interchange. 256 | 257 | b) Convey the object code in, or embodied in, a physical product 258 | (including a physical distribution medium), accompanied by a 259 | written offer, valid for at least three years and valid for as 260 | long as you offer spare parts or customer support for that product 261 | model, to give anyone who possesses the object code either (1) a 262 | copy of the Corresponding Source for all the software in the 263 | product that is covered by this License, on a durable physical 264 | medium customarily used for software interchange, for a price no 265 | more than your reasonable cost of physically performing this 266 | conveying of source, or (2) access to copy the 267 | Corresponding Source from a network server at no charge. 268 | 269 | c) Convey individual copies of the object code with a copy of the 270 | written offer to provide the Corresponding Source. This 271 | alternative is allowed only occasionally and noncommercially, and 272 | only if you received the object code with such an offer, in accord 273 | with subsection 6b. 274 | 275 | d) Convey the object code by offering access from a designated 276 | place (gratis or for a charge), and offer equivalent access to the 277 | Corresponding Source in the same way through the same place at no 278 | further charge. You need not require recipients to copy the 279 | Corresponding Source along with the object code. If the place to 280 | copy the object code is a network server, the Corresponding Source 281 | may be on a different server (operated by you or a third party) 282 | that supports equivalent copying facilities, provided you maintain 283 | clear directions next to the object code saying where to find the 284 | Corresponding Source. Regardless of what server hosts the 285 | Corresponding Source, you remain obligated to ensure that it is 286 | available for as long as needed to satisfy these requirements. 287 | 288 | e) Convey the object code using peer-to-peer transmission, provided 289 | you inform other peers where the object code and Corresponding 290 | Source of the work are being offered to the general public at no 291 | charge under subsection 6d. 292 | 293 | A separable portion of the object code, whose source code is excluded 294 | from the Corresponding Source as a System Library, need not be 295 | included in conveying the object code work. 296 | 297 | A "User Product" is either (1) a "consumer product", which means any 298 | tangible personal property which is normally used for personal, family, 299 | or household purposes, or (2) anything designed or sold for incorporation 300 | into a dwelling. In determining whether a product is a consumer product, 301 | doubtful cases shall be resolved in favor of coverage. For a particular 302 | product received by a particular user, "normally used" refers to a 303 | typical or common use of that class of product, regardless of the status 304 | of the particular user or of the way in which the particular user 305 | actually uses, or expects or is expected to use, the product. A product 306 | is a consumer product regardless of whether the product has substantial 307 | commercial, industrial or non-consumer uses, unless such uses represent 308 | the only significant mode of use of the product. 309 | 310 | "Installation Information" for a User Product means any methods, 311 | procedures, authorization keys, or other information required to install 312 | and execute modified versions of a covered work in that User Product from 313 | a modified version of its Corresponding Source. The information must 314 | suffice to ensure that the continued functioning of the modified object 315 | code is in no case prevented or interfered with solely because 316 | modification has been made. 317 | 318 | If you convey an object code work under this section in, or with, or 319 | specifically for use in, a User Product, and the conveying occurs as 320 | part of a transaction in which the right of possession and use of the 321 | User Product is transferred to the recipient in perpetuity or for a 322 | fixed term (regardless of how the transaction is characterized), the 323 | Corresponding Source conveyed under this section must be accompanied 324 | by the Installation Information. But this requirement does not apply 325 | if neither you nor any third party retains the ability to install 326 | modified object code on the User Product (for example, the work has 327 | been installed in ROM). 328 | 329 | The requirement to provide Installation Information does not include a 330 | requirement to continue to provide support service, warranty, or updates 331 | for a work that has been modified or installed by the recipient, or for 332 | the User Product in which it has been modified or installed. Access to a 333 | network may be denied when the modification itself materially and 334 | adversely affects the operation of the network or violates the rules and 335 | protocols for communication across the network. 336 | 337 | Corresponding Source conveyed, and Installation Information provided, 338 | in accord with this section must be in a format that is publicly 339 | documented (and with an implementation available to the public in 340 | source code form), and must require no special password or key for 341 | unpacking, reading or copying. 342 | 343 | 7. Additional Terms. 344 | 345 | "Additional permissions" are terms that supplement the terms of this 346 | License by making exceptions from one or more of its conditions. 347 | Additional permissions that are applicable to the entire Program shall 348 | be treated as though they were included in this License, to the extent 349 | that they are valid under applicable law. If additional permissions 350 | apply only to part of the Program, that part may be used separately 351 | under those permissions, but the entire Program remains governed by 352 | this License without regard to the additional permissions. 353 | 354 | When you convey a copy of a covered work, you may at your option 355 | remove any additional permissions from that copy, or from any part of 356 | it. (Additional permissions may be written to require their own 357 | removal in certain cases when you modify the work.) You may place 358 | additional permissions on material, added by you to a covered work, 359 | for which you have or can give appropriate copyright permission. 360 | 361 | Notwithstanding any other provision of this License, for material you 362 | add to a covered work, you may (if authorized by the copyright holders of 363 | that material) supplement the terms of this License with terms: 364 | 365 | a) Disclaiming warranty or limiting liability differently from the 366 | terms of sections 15 and 16 of this License; or 367 | 368 | b) Requiring preservation of specified reasonable legal notices or 369 | author attributions in that material or in the Appropriate Legal 370 | Notices displayed by works containing it; or 371 | 372 | c) Prohibiting misrepresentation of the origin of that material, or 373 | requiring that modified versions of such material be marked in 374 | reasonable ways as different from the original version; or 375 | 376 | d) Limiting the use for publicity purposes of names of licensors or 377 | authors of the material; or 378 | 379 | e) Declining to grant rights under trademark law for use of some 380 | trade names, trademarks, or service marks; or 381 | 382 | f) Requiring indemnification of licensors and authors of that 383 | material by anyone who conveys the material (or modified versions of 384 | it) with contractual assumptions of liability to the recipient, for 385 | any liability that these contractual assumptions directly impose on 386 | those licensors and authors. 387 | 388 | All other non-permissive additional terms are considered "further 389 | restrictions" within the meaning of section 10. If the Program as you 390 | received it, or any part of it, contains a notice stating that it is 391 | governed by this License along with a term that is a further 392 | restriction, you may remove that term. If a license document contains 393 | a further restriction but permits relicensing or conveying under this 394 | License, you may add to a covered work material governed by the terms 395 | of that license document, provided that the further restriction does 396 | not survive such relicensing or conveying. 397 | 398 | If you add terms to a covered work in accord with this section, you 399 | must place, in the relevant source files, a statement of the 400 | additional terms that apply to those files, or a notice indicating 401 | where to find the applicable terms. 402 | 403 | Additional terms, permissive or non-permissive, may be stated in the 404 | form of a separately written license, or stated as exceptions; 405 | the above requirements apply either way. 406 | 407 | 8. Termination. 408 | 409 | You may not propagate or modify a covered work except as expressly 410 | provided under this License. Any attempt otherwise to propagate or 411 | modify it is void, and will automatically terminate your rights under 412 | this License (including any patent licenses granted under the third 413 | paragraph of section 11). 414 | 415 | However, if you cease all violation of this License, then your 416 | license from a particular copyright holder is reinstated (a) 417 | provisionally, unless and until the copyright holder explicitly and 418 | finally terminates your license, and (b) permanently, if the copyright 419 | holder fails to notify you of the violation by some reasonable means 420 | prior to 60 days after the cessation. 421 | 422 | Moreover, your license from a particular copyright holder is 423 | reinstated permanently if the copyright holder notifies you of the 424 | violation by some reasonable means, this is the first time you have 425 | received notice of violation of this License (for any work) from that 426 | copyright holder, and you cure the violation prior to 30 days after 427 | your receipt of the notice. 428 | 429 | Termination of your rights under this section does not terminate the 430 | licenses of parties who have received copies or rights from you under 431 | this License. If your rights have been terminated and not permanently 432 | reinstated, you do not qualify to receive new licenses for the same 433 | material under section 10. 434 | 435 | 9. Acceptance Not Required for Having Copies. 436 | 437 | You are not required to accept this License in order to receive or 438 | run a copy of the Program. Ancillary propagation of a covered work 439 | occurring solely as a consequence of using peer-to-peer transmission 440 | to receive a copy likewise does not require acceptance. However, 441 | nothing other than this License grants you permission to propagate or 442 | modify any covered work. These actions infringe copyright if you do 443 | not accept this License. Therefore, by modifying or propagating a 444 | covered work, you indicate your acceptance of this License to do so. 445 | 446 | 10. Automatic Licensing of Downstream Recipients. 447 | 448 | Each time you convey a covered work, the recipient automatically 449 | receives a license from the original licensors, to run, modify and 450 | propagate that work, subject to this License. You are not responsible 451 | for enforcing compliance by third parties with this License. 452 | 453 | An "entity transaction" is a transaction transferring control of an 454 | organization, or substantially all assets of one, or subdividing an 455 | organization, or merging organizations. If propagation of a covered 456 | work results from an entity transaction, each party to that 457 | transaction who receives a copy of the work also receives whatever 458 | licenses to the work the party's predecessor in interest had or could 459 | give under the previous paragraph, plus a right to possession of the 460 | Corresponding Source of the work from the predecessor in interest, if 461 | the predecessor has it or can get it with reasonable efforts. 462 | 463 | You may not impose any further restrictions on the exercise of the 464 | rights granted or affirmed under this License. For example, you may 465 | not impose a license fee, royalty, or other charge for exercise of 466 | rights granted under this License, and you may not initiate litigation 467 | (including a cross-claim or counterclaim in a lawsuit) alleging that 468 | any patent claim is infringed by making, using, selling, offering for 469 | sale, or importing the Program or any portion of it. 470 | 471 | 11. Patents. 472 | 473 | A "contributor" is a copyright holder who authorizes use under this 474 | License of the Program or a work on which the Program is based. The 475 | work thus licensed is called the contributor's "contributor version". 476 | 477 | A contributor's "essential patent claims" are all patent claims 478 | owned or controlled by the contributor, whether already acquired or 479 | hereafter acquired, that would be infringed by some manner, permitted 480 | by this License, of making, using, or selling its contributor version, 481 | but do not include claims that would be infringed only as a 482 | consequence of further modification of the contributor version. For 483 | purposes of this definition, "control" includes the right to grant 484 | patent sublicenses in a manner consistent with the requirements of 485 | this License. 486 | 487 | Each contributor grants you a non-exclusive, worldwide, royalty-free 488 | patent license under the contributor's essential patent claims, to 489 | make, use, sell, offer for sale, import and otherwise run, modify and 490 | propagate the contents of its contributor version. 491 | 492 | In the following three paragraphs, a "patent license" is any express 493 | agreement or commitment, however denominated, not to enforce a patent 494 | (such as an express permission to practice a patent or covenant not to 495 | sue for patent infringement). To "grant" such a patent license to a 496 | party means to make such an agreement or commitment not to enforce a 497 | patent against the party. 498 | 499 | If you convey a covered work, knowingly relying on a patent license, 500 | and the Corresponding Source of the work is not available for anyone 501 | to copy, free of charge and under the terms of this License, through a 502 | publicly available network server or other readily accessible means, 503 | then you must either (1) cause the Corresponding Source to be so 504 | available, or (2) arrange to deprive yourself of the benefit of the 505 | patent license for this particular work, or (3) arrange, in a manner 506 | consistent with the requirements of this License, to extend the patent 507 | license to downstream recipients. "Knowingly relying" means you have 508 | actual knowledge that, but for the patent license, your conveying the 509 | covered work in a country, or your recipient's use of the covered work 510 | in a country, would infringe one or more identifiable patents in that 511 | country that you have reason to believe are valid. 512 | 513 | If, pursuant to or in connection with a single transaction or 514 | arrangement, you convey, or propagate by procuring conveyance of, a 515 | covered work, and grant a patent license to some of the parties 516 | receiving the covered work authorizing them to use, propagate, modify 517 | or convey a specific copy of the covered work, then the patent license 518 | you grant is automatically extended to all recipients of the covered 519 | work and works based on it. 520 | 521 | A patent license is "discriminatory" if it does not include within 522 | the scope of its coverage, prohibits the exercise of, or is 523 | conditioned on the non-exercise of one or more of the rights that are 524 | specifically granted under this License. You may not convey a covered 525 | work if you are a party to an arrangement with a third party that is 526 | in the business of distributing software, under which you make payment 527 | to the third party based on the extent of your activity of conveying 528 | the work, and under which the third party grants, to any of the 529 | parties who would receive the covered work from you, a discriminatory 530 | patent license (a) in connection with copies of the covered work 531 | conveyed by you (or copies made from those copies), or (b) primarily 532 | for and in connection with specific products or compilations that 533 | contain the covered work, unless you entered into that arrangement, 534 | or that patent license was granted, prior to 28 March 2007. 535 | 536 | Nothing in this License shall be construed as excluding or limiting 537 | any implied license or other defenses to infringement that may 538 | otherwise be available to you under applicable patent law. 539 | 540 | 12. No Surrender of Others' Freedom. 541 | 542 | If conditions are imposed on you (whether by court order, agreement or 543 | otherwise) that contradict the conditions of this License, they do not 544 | excuse you from the conditions of this License. If you cannot convey a 545 | covered work so as to satisfy simultaneously your obligations under this 546 | License and any other pertinent obligations, then as a consequence you may 547 | not convey it at all. For example, if you agree to terms that obligate you 548 | to collect a royalty for further conveying from those to whom you convey 549 | the Program, the only way you could satisfy both those terms and this 550 | License would be to refrain entirely from conveying the Program. 551 | 552 | 13. Use with the GNU Affero General Public License. 553 | 554 | Notwithstanding any other provision of this License, you have 555 | permission to link or combine any covered work with a work licensed 556 | under version 3 of the GNU Affero General Public License into a single 557 | combined work, and to convey the resulting work. The terms of this 558 | License will continue to apply to the part which is the covered work, 559 | but the special requirements of the GNU Affero General Public License, 560 | section 13, concerning interaction through a network will apply to the 561 | combination as such. 562 | 563 | 14. Revised Versions of this License. 564 | 565 | The Free Software Foundation may publish revised and/or new versions of 566 | the GNU General Public License from time to time. Such new versions will 567 | be similar in spirit to the present version, but may differ in detail to 568 | address new problems or concerns. 569 | 570 | Each version is given a distinguishing version number. If the 571 | Program specifies that a certain numbered version of the GNU General 572 | Public License "or any later version" applies to it, you have the 573 | option of following the terms and conditions either of that numbered 574 | version or of any later version published by the Free Software 575 | Foundation. If the Program does not specify a version number of the 576 | GNU General Public License, you may choose any version ever published 577 | by the Free Software Foundation. 578 | 579 | If the Program specifies that a proxy can decide which future 580 | versions of the GNU General Public License can be used, that proxy's 581 | public statement of acceptance of a version permanently authorizes you 582 | to choose that version for the Program. 583 | 584 | Later license versions may give you additional or different 585 | permissions. However, no additional obligations are imposed on any 586 | author or copyright holder as a result of your choosing to follow a 587 | later version. 588 | 589 | 15. Disclaimer of Warranty. 590 | 591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY 592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT 593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY 594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, 595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM 597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF 598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 599 | 600 | 16. Limitation of Liability. 601 | 602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY 605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE 606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF 607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD 608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), 609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF 610 | SUCH DAMAGES. 611 | 612 | 17. Interpretation of Sections 15 and 16. 613 | 614 | If the disclaimer of warranty and limitation of liability provided 615 | above cannot be given local legal effect according to their terms, 616 | reviewing courts shall apply local law that most closely approximates 617 | an absolute waiver of all civil liability in connection with the 618 | Program, unless a warranty or assumption of liability accompanies a 619 | copy of the Program in return for a fee. 620 | 621 | END OF TERMS AND CONDITIONS 622 | 623 | How to Apply These Terms to Your New Programs 624 | 625 | If you develop a new program, and you want it to be of the greatest 626 | possible use to the public, the best way to achieve this is to make it 627 | free software which everyone can redistribute and change under these terms. 628 | 629 | To do so, attach the following notices to the program. It is safest 630 | to attach them to the start of each source file to most effectively 631 | state the exclusion of warranty; and each file should have at least 632 | the "copyright" line and a pointer to where the full notice is found. 633 | 634 | {one line to give the program's name and a brief idea of what it does.} 635 | Copyright (C) {year} {name of author} 636 | 637 | This program is free software: you can redistribute it and/or modify 638 | it under the terms of the GNU General Public License as published by 639 | the Free Software Foundation, either version 3 of the License, or 640 | (at your option) any later version. 641 | 642 | This program is distributed in the hope that it will be useful, 643 | but WITHOUT ANY WARRANTY; without even the implied warranty of 644 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 645 | GNU General Public License for more details. 646 | 647 | You should have received a copy of the GNU General Public License 648 | along with this program. If not, see . 649 | 650 | Also add information on how to contact you by electronic and paper mail. 651 | 652 | If the program does terminal interaction, make it output a short 653 | notice like this when it starts in an interactive mode: 654 | 655 | {project} Copyright (C) {year} {fullname} 656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 657 | This is free software, and you are welcome to redistribute it 658 | under certain conditions; type `show c' for details. 659 | 660 | The hypothetical commands `show w' and `show c' should show the appropriate 661 | parts of the General Public License. Of course, your program's commands 662 | might be different; for a GUI interface, you would use an "about box". 663 | 664 | You should also get your employer (if you work as a programmer) or school, 665 | if any, to sign a "copyright disclaimer" for the program, if necessary. 666 | For more information on this, and how to apply and follow the GNU GPL, see 667 | . 668 | 669 | The GNU General Public License does not permit incorporating your program 670 | into proprietary programs. If your program is a subroutine library, you 671 | may consider it more useful to permit linking proprietary applications with 672 | the library. If this is what you want to do, use the GNU Lesser General 673 | Public License instead of this License. But first, please read 674 | . 675 | -------------------------------------------------------------------------------- /3DGaussianSplatting_INRIA_Method_Colab.ipynb: -------------------------------------------------------------------------------- 1 | { 2 | "nbformat": 4, 3 | "nbformat_minor": 0, 4 | "metadata": { 5 | "colab": { 6 | "provenance": [], 7 | "gpuType": "T4", 8 | "include_colab_link": true 9 | }, 10 | "kernelspec": { 11 | "name": "python3", 12 | "display_name": "Python 3" 13 | }, 14 | "language_info": { 15 | "name": "python" 16 | }, 17 | "accelerator": "GPU" 18 | }, 19 | "cells": [ 20 | { 21 | "cell_type": "markdown", 22 | "metadata": { 23 | "id": "view-in-github", 24 | "colab_type": "text" 25 | }, 26 | "source": [ 27 | "\"Open" 28 | ] 29 | }, 30 | { 31 | "cell_type": "markdown", 32 | "source": [ 33 | "# Python downgrading\n" 34 | ], 35 | "metadata": { 36 | "id": "LYiyaKJVzVR5" 37 | } 38 | }, 39 | { 40 | "cell_type": "code", 41 | "execution_count": 1, 42 | "metadata": { 43 | "colab": { 44 | "base_uri": "https://localhost:8080/" 45 | }, 46 | "id": "bEU8kAEozSnY", 47 | "outputId": "f414846e-3867-41f3-c1eb-bae7193b9e81" 48 | }, 49 | "outputs": [ 50 | { 51 | "output_type": "stream", 52 | "name": "stdout", 53 | "text": [ 54 | "--2025-09-28 03:07:34-- https://repo.anaconda.com/miniconda/Miniconda3-py37_23.1.0-1-Linux-x86_64.sh\n", 55 | "Resolving repo.anaconda.com (repo.anaconda.com)... 104.16.191.158, 104.16.32.241, 2606:4700::6810:bf9e, ...\n", 56 | "Connecting to repo.anaconda.com (repo.anaconda.com)|104.16.191.158|:443... connected.\n", 57 | "HTTP request sent, awaiting response... 200 OK\n", 58 | "Length: 90665082 (86M) [application/x-sh]\n", 59 | "Saving to: ‘mini.sh’\n", 60 | "\n", 61 | "mini.sh 100%[===================>] 86.46M 123MB/s in 0.7s \n", 62 | "\n", 63 | "2025-09-28 03:07:35 (123 MB/s) - ‘mini.sh’ saved [90665082/90665082]\n", 64 | "\n", 65 | "PREFIX=/usr/local\n", 66 | "Unpacking payload ...\n", 67 | " \n", 68 | "Installing base environment...\n", 69 | "\n", 70 | "\n", 71 | "Downloading and Extracting Packages\n", 72 | "\n", 73 | "\n", 74 | "Downloading and Extracting Packages\n", 75 | "\n", 76 | "Preparing transaction: - \b\b\\ \b\b| \b\bdone\n", 77 | "Executing transaction: - \b\b\\ \b\b| \b\b/ \b\b- \b\b\\ \b\b| \b\b/ \b\b- \b\b\\ \b\b| \b\b/ \b\b- \b\b\\ \b\b| \b\b/ \b\b- \b\b\\ \b\bdone\n", 78 | "installation finished.\n", 79 | "WARNING:\n", 80 | " You currently have a PYTHONPATH environment variable set. This may cause\n", 81 | " unexpected behavior when running the Python interpreter in Miniconda3.\n", 82 | " For best results, please verify that your PYTHONPATH only points to\n", 83 | " directories of packages that are compatible with the Python interpreter\n", 84 | " in Miniconda3: /usr/local\n", 85 | "Collecting package metadata (current_repodata.json): ...working... done\n", 86 | "Solving environment: ...working... done\n", 87 | "\n", 88 | "## Package Plan ##\n", 89 | "\n", 90 | " environment location: /usr/local\n", 91 | "\n", 92 | " added / updated specs:\n", 93 | " - python=3.7\n", 94 | "\n", 95 | "\n", 96 | "The following packages will be downloaded:\n", 97 | "\n", 98 | " package | build\n", 99 | " ---------------------------|-----------------\n", 100 | " ca-certificates-2025.9.9 | h06a4308_0 127 KB\n", 101 | " openssl-1.1.1w | h7f8727e_0 3.7 MB\n", 102 | " ------------------------------------------------------------\n", 103 | " Total: 3.9 MB\n", 104 | "\n", 105 | "The following packages will be UPDATED:\n", 106 | "\n", 107 | " ca-certificates 2023.01.10-h06a4308_0 --> 2025.9.9-h06a4308_0 \n", 108 | " openssl 1.1.1s-h7f8727e_0 --> 1.1.1w-h7f8727e_0 \n", 109 | "\n", 110 | "\n", 111 | "Preparing transaction: ...working... done\n", 112 | "Verifying transaction: ...working... done\n", 113 | "Executing transaction: ...working... done\n", 114 | "Python 3.7.16\n" 115 | ] 116 | } 117 | ], 118 | "source": [ 119 | "!wget -O mini.sh https://repo.anaconda.com/miniconda/Miniconda3-py37_23.1.0-1-Linux-x86_64.sh\n", 120 | "!chmod +x mini.sh\n", 121 | "!bash ./mini.sh -b -f -p /usr/local\n", 122 | "!conda install -q -y python=3.7\n", 123 | "import sys\n", 124 | "sys.path.append('/usr/local/lib/python3.7/site-packages')\n", 125 | "!python --version # Should say Python 3.7.x" 126 | ] 127 | }, 128 | { 129 | "cell_type": "markdown", 130 | "source": [ 131 | "# CUDA 11.8" 132 | ], 133 | "metadata": { 134 | "id": "iJvxRlTYzyGE" 135 | } 136 | }, 137 | { 138 | "cell_type": "code", 139 | "source": [ 140 | "!wget https://developer.download.nvidia.com/compute/cuda/11.8.0/local_installers/cuda_11.8.0_520.61.05_linux.run\n", 141 | "!chmod +x cuda_11.8.0_520.61.05_linux.run\n", 142 | "!./cuda_11.8.0_520.61.05_linux.run --silent --toolkit --no-drm --no-man-page\n", 143 | "import os\n", 144 | "os.environ['PATH'] += ':/usr/local/cuda-11.8/bin'\n", 145 | "os.environ['LD_LIBRARY_PATH'] = '/usr/local/cuda-11.8/lib64:/usr/lib64-nvidia'\n", 146 | "!nvcc --version # Should show CUDA 11.8" 147 | ], 148 | "metadata": { 149 | "colab": { 150 | "base_uri": "https://localhost:8080/" 151 | }, 152 | "id": "6V1R_kOfzxck", 153 | "outputId": "92fbca4b-a10e-42a5-b0c5-ed3823475b40" 154 | }, 155 | "execution_count": 2, 156 | "outputs": [ 157 | { 158 | "output_type": "stream", 159 | "name": "stdout", 160 | "text": [ 161 | "--2025-09-28 03:08:00-- https://developer.download.nvidia.com/compute/cuda/11.8.0/local_installers/cuda_11.8.0_520.61.05_linux.run\n", 162 | "Resolving developer.download.nvidia.com (developer.download.nvidia.com)... 23.15.241.19, 23.15.241.65\n", 163 | "Connecting to developer.download.nvidia.com (developer.download.nvidia.com)|23.15.241.19|:443... connected.\n", 164 | "HTTP request sent, awaiting response... 200 OK\n", 165 | "Length: 4336730777 (4.0G) [application/octet-stream]\n", 166 | "Saving to: ‘cuda_11.8.0_520.61.05_linux.run’\n", 167 | "\n", 168 | "cuda_11.8.0_520.61. 100%[===================>] 4.04G 53.1MB/s in 43s \n", 169 | "\n", 170 | "2025-09-28 03:08:43 (96.3 MB/s) - ‘cuda_11.8.0_520.61.05_linux.run’ saved [4336730777/4336730777]\n", 171 | "\n", 172 | "nvcc: NVIDIA (R) Cuda compiler driver\n", 173 | "Copyright (c) 2005-2022 NVIDIA Corporation\n", 174 | "Built on Wed_Sep_21_10:33:58_PDT_2022\n", 175 | "Cuda compilation tools, release 11.8, V11.8.89\n", 176 | "Build cuda_11.8.r11.8/compiler.31833905_0\n" 177 | ] 178 | } 179 | ] 180 | }, 181 | { 182 | "cell_type": "markdown", 183 | "source": [ 184 | "#Pytorch with cuda" 185 | ], 186 | "metadata": { 187 | "id": "5Cfq4AGJzlAI" 188 | } 189 | }, 190 | { 191 | "cell_type": "code", 192 | "source": [ 193 | "!pip uninstall torch torchvision torchaudio -y\n", 194 | "!pip install torch==1.12.1+cu116 torchvision==0.13.1+cu116 torchaudio==0.12.1 --extra-index-url https://download.pytorch.org/whl/cu116" 195 | ], 196 | "metadata": { 197 | "colab": { 198 | "base_uri": "https://localhost:8080/", 199 | "height": 597 200 | }, 201 | "id": "bzg2csQeznWA", 202 | "outputId": "7d825158-4661-4ccb-fc34-ec82495871b5" 203 | }, 204 | "execution_count": 3, 205 | "outputs": [ 206 | { 207 | "output_type": "stream", 208 | "name": "stdout", 209 | "text": [ 210 | "\u001b[33mWARNING: Skipping torch as it is not installed.\u001b[0m\u001b[33m\n", 211 | "\u001b[0m\u001b[33mWARNING: Skipping torchvision as it is not installed.\u001b[0m\u001b[33m\n", 212 | "\u001b[0m\u001b[33mWARNING: Skipping torchaudio as it is not installed.\u001b[0m\u001b[33m\n", 213 | "\u001b[0mLooking in indexes: https://pypi.org/simple, https://download.pytorch.org/whl/cu116\n", 214 | "Collecting torch==1.12.1+cu116\n", 215 | " Downloading https://download.pytorch.org/whl/cu116/torch-1.12.1%2Bcu116-cp37-cp37m-linux_x86_64.whl (1904.8 MB)\n", 216 | "\u001b[2K \u001b[90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\u001b[0m \u001b[32m1.9/1.9 GB\u001b[0m \u001b[31m940.3 kB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n", 217 | "\u001b[?25hCollecting torchvision==0.13.1+cu116\n", 218 | " Downloading https://download.pytorch.org/whl/cu116/torchvision-0.13.1%2Bcu116-cp37-cp37m-linux_x86_64.whl (23.5 MB)\n", 219 | "\u001b[2K \u001b[90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\u001b[0m \u001b[32m23.5/23.5 MB\u001b[0m \u001b[31m59.6 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n", 220 | "\u001b[?25hCollecting torchaudio==0.12.1\n", 221 | " Downloading https://download.pytorch.org/whl/cu116/torchaudio-0.12.1%2Bcu116-cp37-cp37m-linux_x86_64.whl (3.8 MB)\n", 222 | "\u001b[2K \u001b[90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\u001b[0m \u001b[32m3.8/3.8 MB\u001b[0m \u001b[31m73.8 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n", 223 | "\u001b[?25hRequirement already satisfied: typing-extensions in /usr/local/lib/python3.7/site-packages (from torch==1.12.1+cu116) (4.4.0)\n", 224 | "Collecting numpy\n", 225 | " Downloading https://download.pytorch.org/whl/numpy-1.21.6-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (15.7 MB)\n", 226 | "\u001b[2K \u001b[90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\u001b[0m \u001b[32m15.7/15.7 MB\u001b[0m \u001b[31m101.8 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n", 227 | "\u001b[?25hCollecting pillow!=8.3.*,>=5.3.0\n", 228 | " Downloading Pillow-9.5.0-cp37-cp37m-manylinux_2_28_x86_64.whl (3.4 MB)\n", 229 | "\u001b[2K \u001b[90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\u001b[0m \u001b[32m3.4/3.4 MB\u001b[0m \u001b[31m58.5 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n", 230 | "\u001b[?25hRequirement already satisfied: requests in /usr/local/lib/python3.7/site-packages (from torchvision==0.13.1+cu116) (2.28.1)\n", 231 | "Requirement already satisfied: charset-normalizer<3,>=2 in /usr/local/lib/python3.7/site-packages (from requests->torchvision==0.13.1+cu116) (2.0.4)\n", 232 | "Requirement already satisfied: certifi>=2017.4.17 in /usr/local/lib/python3.7/site-packages (from requests->torchvision==0.13.1+cu116) (2022.12.7)\n", 233 | "Requirement already satisfied: idna<4,>=2.5 in /usr/local/lib/python3.7/site-packages (from requests->torchvision==0.13.1+cu116) (3.4)\n", 234 | "Requirement already satisfied: urllib3<1.27,>=1.21.1 in /usr/local/lib/python3.7/site-packages (from requests->torchvision==0.13.1+cu116) (1.26.14)\n", 235 | "Installing collected packages: torch, pillow, numpy, torchvision, torchaudio\n", 236 | "Successfully installed numpy-1.21.6 pillow-9.5.0 torch-1.12.1+cu116 torchaudio-0.12.1+cu116 torchvision-0.13.1+cu116\n" 237 | ] 238 | }, 239 | { 240 | "output_type": "display_data", 241 | "data": { 242 | "application/vnd.colab-display-data+json": { 243 | "pip_warning": { 244 | "packages": [ 245 | "PIL", 246 | "numpy" 247 | ] 248 | }, 249 | "id": "c30abcbc7ae1444abd98e64b1c832651" 250 | } 251 | }, 252 | "metadata": {} 253 | } 254 | ] 255 | }, 256 | { 257 | "cell_type": "markdown", 258 | "source": [ 259 | "# Verification of the versions" 260 | ], 261 | "metadata": { 262 | "id": "QbskoEIW1kMT" 263 | } 264 | }, 265 | { 266 | "cell_type": "code", 267 | "source": [ 268 | "import torch\n", 269 | "print(torch.cuda.is_available()) # Should be True\n", 270 | "print(torch.version.cuda) # Should be 11.3 (from PyTorch)\n", 271 | "print(torch.cuda.get_device_name(0)) # Should show GPU" 272 | ], 273 | "metadata": { 274 | "colab": { 275 | "base_uri": "https://localhost:8080/" 276 | }, 277 | "id": "T6hplWJp1ncr", 278 | "outputId": "9e2d9264-03ed-4a1a-8f1e-9b638a555bd8" 279 | }, 280 | "execution_count": 4, 281 | "outputs": [ 282 | { 283 | "output_type": "stream", 284 | "name": "stdout", 285 | "text": [ 286 | "True\n", 287 | "12.6\n", 288 | "Tesla T4\n" 289 | ] 290 | } 291 | ] 292 | }, 293 | { 294 | "cell_type": "code", 295 | "source": [ 296 | "!nvidia-smi" 297 | ], 298 | "metadata": { 299 | "colab": { 300 | "base_uri": "https://localhost:8080/" 301 | }, 302 | "id": "EzxF7zKL2Z5b", 303 | "outputId": "0dbda213-5fd1-466a-aa0c-8d874c5bf342" 304 | }, 305 | "execution_count": 5, 306 | "outputs": [ 307 | { 308 | "output_type": "stream", 309 | "name": "stdout", 310 | "text": [ 311 | "Sun Sep 28 03:13:58 2025 \n", 312 | "+-----------------------------------------------------------------------------------------+\n", 313 | "| NVIDIA-SMI 550.54.15 Driver Version: 550.54.15 CUDA Version: 12.4 |\n", 314 | "|-----------------------------------------+------------------------+----------------------+\n", 315 | "| GPU Name Persistence-M | Bus-Id Disp.A | Volatile Uncorr. ECC |\n", 316 | "| Fan Temp Perf Pwr:Usage/Cap | Memory-Usage | GPU-Util Compute M. |\n", 317 | "| | | MIG M. |\n", 318 | "|=========================================+========================+======================|\n", 319 | "| 0 Tesla T4 Off | 00000000:00:04.0 Off | 0 |\n", 320 | "| N/A 36C P8 9W / 70W | 2MiB / 15360MiB | 0% Default |\n", 321 | "| | | N/A |\n", 322 | "+-----------------------------------------+------------------------+----------------------+\n", 323 | " \n", 324 | "+-----------------------------------------------------------------------------------------+\n", 325 | "| Processes: |\n", 326 | "| GPU GI CI PID Type Process name GPU Memory |\n", 327 | "| ID ID Usage |\n", 328 | "|=========================================================================================|\n", 329 | "| No running processes found |\n", 330 | "+-----------------------------------------------------------------------------------------+\n" 331 | ] 332 | } 333 | ] 334 | }, 335 | { 336 | "cell_type": "code", 337 | "source": [ 338 | "%cd /content\n", 339 | "!git clone --recursive https://github.com/camenduru/gaussian-splatting\n", 340 | "!pip install -q plyfile\n", 341 | "\n", 342 | "%cd /content/gaussian-splatting\n", 343 | "!pip install -q /content/gaussian-splatting/submodules/diff-gaussian-rasterization\n", 344 | "!pip install -q /content/gaussian-splatting/submodules/simple-knn\n" 345 | ], 346 | "metadata": { 347 | "colab": { 348 | "base_uri": "https://localhost:8080/" 349 | }, 350 | "id": "UXpilqZw6qnl", 351 | "outputId": "300d8f7d-e130-406f-d74b-ffb1be1dbc49" 352 | }, 353 | "execution_count": 6, 354 | "outputs": [ 355 | { 356 | "output_type": "stream", 357 | "name": "stdout", 358 | "text": [ 359 | "/content\n", 360 | "Cloning into 'gaussian-splatting'...\n", 361 | "remote: Enumerating objects: 603, done.\u001b[K\n", 362 | "remote: Total 603 (delta 0), reused 0 (delta 0), pack-reused 603 (from 1)\u001b[K\n", 363 | "Receiving objects: 100% (603/603), 2.09 MiB | 5.79 MiB/s, done.\n", 364 | "Resolving deltas: 100% (347/347), done.\n", 365 | "Submodule 'SIBR_viewers' (https://gitlab.inria.fr/sibr/sibr_core) registered for path 'SIBR_viewers'\n", 366 | "Submodule 'submodules/diff-gaussian-rasterization' (https://github.com/graphdeco-inria/diff-gaussian-rasterization) registered for path 'submodules/diff-gaussian-rasterization'\n", 367 | "Submodule 'submodules/simple-knn' (https://gitlab.inria.fr/bkerbl/simple-knn.git) registered for path 'submodules/simple-knn'\n", 368 | "Cloning into '/content/gaussian-splatting/SIBR_viewers'...\n", 369 | "warning: redirecting to https://gitlab.inria.fr/sibr/sibr_core.git/\n", 370 | "remote: Enumerating objects: 3293, done. \n", 371 | "remote: Counting objects: 100% (322/322), done. \n", 372 | "remote: Compressing objects: 100% (174/174), done. \n", 373 | "remote: Total 3293 (delta 171), reused 280 (delta 148), pack-reused 2971 (from 1) \n", 374 | "Receiving objects: 100% (3293/3293), 9.98 MiB | 8.40 MiB/s, done.\n", 375 | "Resolving deltas: 100% (2039/2039), done.\n", 376 | "Cloning into '/content/gaussian-splatting/submodules/diff-gaussian-rasterization'...\n", 377 | "remote: Enumerating objects: 329, done. \n", 378 | "remote: Total 329 (delta 0), reused 0 (delta 0), pack-reused 329 (from 1) \n", 379 | "Receiving objects: 100% (329/329), 111.68 KiB | 1.62 MiB/s, done.\n", 380 | "Resolving deltas: 100% (216/216), done.\n", 381 | "Cloning into '/content/gaussian-splatting/submodules/simple-knn'...\n", 382 | "remote: Enumerating objects: 37, done. \n", 383 | "remote: Counting objects: 100% (37/37), done. \n", 384 | "remote: Compressing objects: 100% (34/34), done. \n", 385 | "remote: Total 37 (delta 18), reused 0 (delta 0), pack-reused 0 (from 0) \n", 386 | "Receiving objects: 100% (37/37), 9.46 KiB | 9.46 MiB/s, done.\n", 387 | "Resolving deltas: 100% (18/18), done.\n", 388 | "Submodule path 'SIBR_viewers': checked out '14199886ae3f42358092c16ada909c1e0b1cba20'\n", 389 | "Submodule path 'submodules/diff-gaussian-rasterization': checked out '8064f52ca233942bdec2d1a1451c026deedd320b'\n", 390 | "Submodule 'third_party/glm' (https://github.com/g-truc/glm.git) registered for path 'submodules/diff-gaussian-rasterization/third_party/glm'\n", 391 | "Cloning into '/content/gaussian-splatting/submodules/diff-gaussian-rasterization/third_party/glm'...\n", 392 | "remote: Enumerating objects: 59940, done. \n", 393 | "remote: Counting objects: 100% (222/222), done. \n", 394 | "remote: Compressing objects: 100% (96/96), done. \n", 395 | "remote: Total 59940 (delta 174), reused 126 (delta 126), pack-reused 59718 (from 2) \n", 396 | "Receiving objects: 100% (59940/59940), 71.37 MiB | 23.27 MiB/s, done.\n", 397 | "Resolving deltas: 100% (45408/45408), done.\n", 398 | "Submodule path 'submodules/diff-gaussian-rasterization/third_party/glm': checked out '5c46b9c07008ae65cb81ab79cd677ecc1934b903'\n", 399 | "Submodule path 'submodules/simple-knn': checked out '44f764299fa305faf6ec5ebd99939e0508331503'\n", 400 | "/content/gaussian-splatting\n", 401 | " Preparing metadata (setup.py) ... \u001b[?25l\u001b[?25hdone\n", 402 | " Building wheel for diff-gaussian-rasterization (setup.py) ... \u001b[?25l\u001b[?25hdone\n", 403 | " Preparing metadata (setup.py) ... \u001b[?25l\u001b[?25hdone\n", 404 | " Building wheel for simple-knn (setup.py) ... \u001b[?25l\u001b[?25hdone\n" 405 | ] 406 | } 407 | ] 408 | }, 409 | { 410 | "cell_type": "code", 411 | "source": [ 412 | "!wget https://huggingface.co/camenduru/gaussian-splatting/resolve/main/tandt_db.zip\n", 413 | "!unzip tandt_db.zip\n", 414 | "\n", 415 | "!python train.py -s /content/gaussian-splatting/tandt/train" 416 | ], 417 | "metadata": { 418 | "colab": { 419 | "base_uri": "https://localhost:8080/" 420 | }, 421 | "id": "2GbT5KK271fa", 422 | "outputId": "e5412dd4-7911-4062-db9c-fc57f7afae0c" 423 | }, 424 | "execution_count": null, 425 | "outputs": [ 426 | { 427 | "output_type": "stream", 428 | "name": "stdout", 429 | "text": [ 430 | "--2025-09-28 03:17:41-- https://huggingface.co/camenduru/gaussian-splatting/resolve/main/tandt_db.zip\n", 431 | "Resolving huggingface.co (huggingface.co)... 18.164.174.17, 18.164.174.118, 18.164.174.55, ...\n", 432 | "Connecting to huggingface.co (huggingface.co)|18.164.174.17|:443... connected.\n", 433 | "HTTP request sent, awaiting response... 302 Found\n", 434 | "Location: https://cas-bridge.xethub.hf.co/xet-bridge-us/64d6e7a08767727dffcfeaf6/ba454ad309f1dcb626c897350c3eeea1efdd889a9614f82e72a0be2a03a2747f?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Credential=cas%2F20250928%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20250928T031741Z&X-Amz-Expires=3600&X-Amz-Signature=78f0baaeb14681f01d70b506cb26a1a3cb88e2e0d1a813682d67b2440716f348&X-Amz-SignedHeaders=host&X-Xet-Cas-Uid=public&response-content-disposition=inline%3B+filename*%3DUTF-8%27%27tandt_db.zip%3B+filename%3D%22tandt_db.zip%22%3B&response-content-type=application%2Fzip&x-id=GetObject&Expires=1759033061&Policy=eyJTdGF0ZW1lbnQiOlt7IkNvbmRpdGlvbiI6eyJEYXRlTGVzc1RoYW4iOnsiQVdTOkVwb2NoVGltZSI6MTc1OTAzMzA2MX19LCJSZXNvdXJjZSI6Imh0dHBzOi8vY2FzLWJyaWRnZS54ZXRodWIuaGYuY28veGV0LWJyaWRnZS11cy82NGQ2ZTdhMDg3Njc3MjdkZmZjZmVhZjYvYmE0NTRhZDMwOWYxZGNiNjI2Yzg5NzM1MGMzZWVlYTFlZmRkODg5YTk2MTRmODJlNzJhMGJlMmEwM2EyNzQ3ZioifV19&Signature=uUnSzKvFjjskVM9W5K-Tvcg6Dk0q24Og1mGNcqWpzrRjMmCVwjn5RH8MYC%7E6Nr2NvXgIbdPOLUxX37H3O7RMRv9jm6otF0LQg5xiqskhVWvh5nRK0pzGOestS48qZ9WeB-1HgjGG9LgMXunfUqQD23CuRtbTKKaVDb9OuJav4gLfalwDb2dXo8IV7MHw8nRiAMfrKGSTEoOVC-EAa%7EdkDMNJr531SgIVmU0WMBfIY1gf%7EFKvJXaGzJFPJ2REW8CTKV9ubTVvS4ZgO8gMOFKVcnQEr2wGcmzM83K9jYLNSe25d4qEifu4mMN5W7L8GEYLtvPfmww8jv5GmyGrAqsYVA__&Key-Pair-Id=K2L8F4GPSG1IFC [following]\n", 435 | "--2025-09-28 03:17:41-- https://cas-bridge.xethub.hf.co/xet-bridge-us/64d6e7a08767727dffcfeaf6/ba454ad309f1dcb626c897350c3eeea1efdd889a9614f82e72a0be2a03a2747f?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Credential=cas%2F20250928%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20250928T031741Z&X-Amz-Expires=3600&X-Amz-Signature=78f0baaeb14681f01d70b506cb26a1a3cb88e2e0d1a813682d67b2440716f348&X-Amz-SignedHeaders=host&X-Xet-Cas-Uid=public&response-content-disposition=inline%3B+filename*%3DUTF-8%27%27tandt_db.zip%3B+filename%3D%22tandt_db.zip%22%3B&response-content-type=application%2Fzip&x-id=GetObject&Expires=1759033061&Policy=eyJTdGF0ZW1lbnQiOlt7IkNvbmRpdGlvbiI6eyJEYXRlTGVzc1RoYW4iOnsiQVdTOkVwb2NoVGltZSI6MTc1OTAzMzA2MX19LCJSZXNvdXJjZSI6Imh0dHBzOi8vY2FzLWJyaWRnZS54ZXRodWIuaGYuY28veGV0LWJyaWRnZS11cy82NGQ2ZTdhMDg3Njc3MjdkZmZjZmVhZjYvYmE0NTRhZDMwOWYxZGNiNjI2Yzg5NzM1MGMzZWVlYTFlZmRkODg5YTk2MTRmODJlNzJhMGJlMmEwM2EyNzQ3ZioifV19&Signature=uUnSzKvFjjskVM9W5K-Tvcg6Dk0q24Og1mGNcqWpzrRjMmCVwjn5RH8MYC%7E6Nr2NvXgIbdPOLUxX37H3O7RMRv9jm6otF0LQg5xiqskhVWvh5nRK0pzGOestS48qZ9WeB-1HgjGG9LgMXunfUqQD23CuRtbTKKaVDb9OuJav4gLfalwDb2dXo8IV7MHw8nRiAMfrKGSTEoOVC-EAa%7EdkDMNJr531SgIVmU0WMBfIY1gf%7EFKvJXaGzJFPJ2REW8CTKV9ubTVvS4ZgO8gMOFKVcnQEr2wGcmzM83K9jYLNSe25d4qEifu4mMN5W7L8GEYLtvPfmww8jv5GmyGrAqsYVA__&Key-Pair-Id=K2L8F4GPSG1IFC\n", 436 | "Resolving cas-bridge.xethub.hf.co (cas-bridge.xethub.hf.co)... 18.164.174.68, 18.164.174.110, 18.164.174.4, ...\n", 437 | "Connecting to cas-bridge.xethub.hf.co (cas-bridge.xethub.hf.co)|18.164.174.68|:443... connected.\n", 438 | "HTTP request sent, awaiting response... 200 OK\n", 439 | "Length: 682628995 (651M) [application/zip]\n", 440 | "Saving to: ‘tandt_db.zip’\n", 441 | "\n", 442 | "tandt_db.zip 100%[===================>] 651.00M 198MB/s in 3.4s \n", 443 | "\n", 444 | "2025-09-28 03:17:45 (193 MB/s) - ‘tandt_db.zip’ saved [682628995/682628995]\n", 445 | "\n", 446 | "Archive: tandt_db.zip\n", 447 | " creating: db/drjohnson/\n", 448 | " creating: db/drjohnson/images/\n", 449 | " inflating: db/drjohnson/images/IMG_6292.jpg \n", 450 | " inflating: db/drjohnson/images/IMG_6293.jpg \n", 451 | " inflating: db/drjohnson/images/IMG_6294.jpg \n", 452 | " inflating: db/drjohnson/images/IMG_6295.jpg \n", 453 | " inflating: db/drjohnson/images/IMG_6296.jpg \n", 454 | " inflating: db/drjohnson/images/IMG_6298.jpg \n", 455 | " inflating: db/drjohnson/images/IMG_6299.jpg \n", 456 | " inflating: db/drjohnson/images/IMG_6300.jpg \n", 457 | " inflating: db/drjohnson/images/IMG_6301.jpg \n", 458 | " inflating: db/drjohnson/images/IMG_6302.jpg \n", 459 | " inflating: db/drjohnson/images/IMG_6304.jpg \n", 460 | " inflating: db/drjohnson/images/IMG_6306.jpg \n", 461 | " inflating: db/drjohnson/images/IMG_6307.jpg \n", 462 | " inflating: db/drjohnson/images/IMG_6310.jpg \n", 463 | " inflating: db/drjohnson/images/IMG_6311.jpg \n", 464 | " inflating: db/drjohnson/images/IMG_6312.jpg \n", 465 | " inflating: db/drjohnson/images/IMG_6313.jpg \n", 466 | " inflating: db/drjohnson/images/IMG_6314.jpg \n", 467 | " inflating: db/drjohnson/images/IMG_6315.jpg \n", 468 | " inflating: db/drjohnson/images/IMG_6317.jpg \n", 469 | " inflating: db/drjohnson/images/IMG_6318.jpg \n", 470 | " inflating: db/drjohnson/images/IMG_6319.jpg \n", 471 | " inflating: db/drjohnson/images/IMG_6320.jpg \n", 472 | " inflating: db/drjohnson/images/IMG_6321.jpg \n", 473 | " inflating: db/drjohnson/images/IMG_6322.jpg \n", 474 | " inflating: db/drjohnson/images/IMG_6323.jpg \n", 475 | " inflating: db/drjohnson/images/IMG_6324.jpg \n", 476 | " inflating: db/drjohnson/images/IMG_6325.jpg \n", 477 | " inflating: db/drjohnson/images/IMG_6326.jpg \n", 478 | " inflating: db/drjohnson/images/IMG_6329.jpg \n", 479 | " inflating: db/drjohnson/images/IMG_6330.jpg \n", 480 | " inflating: db/drjohnson/images/IMG_6331.jpg \n", 481 | " inflating: db/drjohnson/images/IMG_6332.jpg \n", 482 | " inflating: db/drjohnson/images/IMG_6333.jpg \n", 483 | " inflating: db/drjohnson/images/IMG_6334.jpg \n", 484 | " inflating: db/drjohnson/images/IMG_6335.jpg \n", 485 | " inflating: db/drjohnson/images/IMG_6336.jpg \n", 486 | " inflating: db/drjohnson/images/IMG_6337.jpg \n", 487 | " inflating: db/drjohnson/images/IMG_6338.jpg \n", 488 | " inflating: db/drjohnson/images/IMG_6339.jpg \n", 489 | " inflating: db/drjohnson/images/IMG_6340.jpg \n", 490 | " inflating: db/drjohnson/images/IMG_6341.jpg \n", 491 | " inflating: db/drjohnson/images/IMG_6342.jpg \n", 492 | " inflating: db/drjohnson/images/IMG_6343.jpg \n", 493 | " inflating: db/drjohnson/images/IMG_6344.jpg \n", 494 | " inflating: db/drjohnson/images/IMG_6346.jpg \n", 495 | " inflating: db/drjohnson/images/IMG_6347.jpg \n", 496 | " inflating: db/drjohnson/images/IMG_6348.jpg \n", 497 | " inflating: db/drjohnson/images/IMG_6349.jpg \n", 498 | " inflating: db/drjohnson/images/IMG_6350.jpg \n", 499 | " inflating: db/drjohnson/images/IMG_6351.jpg \n", 500 | " inflating: db/drjohnson/images/IMG_6352.jpg \n", 501 | " inflating: db/drjohnson/images/IMG_6353.jpg \n", 502 | " inflating: db/drjohnson/images/IMG_6355.jpg \n", 503 | " inflating: db/drjohnson/images/IMG_6356.jpg \n", 504 | " inflating: db/drjohnson/images/IMG_6357.jpg \n", 505 | " inflating: db/drjohnson/images/IMG_6358.jpg \n", 506 | " inflating: db/drjohnson/images/IMG_6359.jpg \n", 507 | " inflating: db/drjohnson/images/IMG_6360.jpg \n", 508 | " inflating: db/drjohnson/images/IMG_6361.jpg \n", 509 | " inflating: db/drjohnson/images/IMG_6362.jpg \n", 510 | " inflating: db/drjohnson/images/IMG_6363.jpg \n", 511 | " inflating: db/drjohnson/images/IMG_6364.jpg \n", 512 | " inflating: db/drjohnson/images/IMG_6365.jpg \n", 513 | " inflating: db/drjohnson/images/IMG_6366.jpg \n", 514 | " inflating: db/drjohnson/images/IMG_6367.jpg \n", 515 | " inflating: db/drjohnson/images/IMG_6368.jpg \n", 516 | " inflating: db/drjohnson/images/IMG_6369.jpg \n", 517 | " inflating: db/drjohnson/images/IMG_6370.jpg \n", 518 | " inflating: db/drjohnson/images/IMG_6371.jpg \n", 519 | " inflating: db/drjohnson/images/IMG_6372.jpg \n", 520 | " inflating: db/drjohnson/images/IMG_6373.jpg \n", 521 | " inflating: db/drjohnson/images/IMG_6374.jpg \n", 522 | " inflating: db/drjohnson/images/IMG_6375.jpg \n", 523 | " inflating: db/drjohnson/images/IMG_6376.jpg \n", 524 | " inflating: db/drjohnson/images/IMG_6377.jpg \n", 525 | " inflating: db/drjohnson/images/IMG_6378.jpg \n", 526 | " inflating: db/drjohnson/images/IMG_6379.jpg \n", 527 | " inflating: db/drjohnson/images/IMG_6380.jpg \n", 528 | " inflating: db/drjohnson/images/IMG_6381.jpg \n", 529 | " inflating: db/drjohnson/images/IMG_6382.jpg \n", 530 | " inflating: db/drjohnson/images/IMG_6383.jpg \n", 531 | " inflating: db/drjohnson/images/IMG_6384.jpg \n", 532 | " inflating: db/drjohnson/images/IMG_6385.jpg \n", 533 | " inflating: db/drjohnson/images/IMG_6386.jpg \n", 534 | " inflating: db/drjohnson/images/IMG_6387.jpg \n", 535 | " inflating: db/drjohnson/images/IMG_6388.jpg \n", 536 | " inflating: db/drjohnson/images/IMG_6390.jpg \n", 537 | " inflating: db/drjohnson/images/IMG_6392.jpg \n", 538 | " inflating: db/drjohnson/images/IMG_6393.jpg \n", 539 | " inflating: db/drjohnson/images/IMG_6394.jpg \n", 540 | " inflating: db/drjohnson/images/IMG_6395.jpg \n", 541 | " inflating: db/drjohnson/images/IMG_6396.jpg \n", 542 | " inflating: db/drjohnson/images/IMG_6397.jpg \n", 543 | " inflating: db/drjohnson/images/IMG_6398.jpg \n", 544 | " inflating: db/drjohnson/images/IMG_6399.jpg \n", 545 | " inflating: db/drjohnson/images/IMG_6401.jpg \n", 546 | " inflating: db/drjohnson/images/IMG_6402.jpg \n", 547 | " inflating: db/drjohnson/images/IMG_6403.jpg \n", 548 | " inflating: db/drjohnson/images/IMG_6404.jpg \n", 549 | " inflating: db/drjohnson/images/IMG_6405.jpg \n", 550 | " inflating: db/drjohnson/images/IMG_6406.jpg \n", 551 | " inflating: db/drjohnson/images/IMG_6408.jpg \n", 552 | " inflating: db/drjohnson/images/IMG_6409.jpg \n", 553 | " inflating: db/drjohnson/images/IMG_6410.jpg \n", 554 | " inflating: db/drjohnson/images/IMG_6411.jpg \n", 555 | " inflating: db/drjohnson/images/IMG_6412.jpg \n", 556 | " inflating: db/drjohnson/images/IMG_6413.jpg \n", 557 | " inflating: db/drjohnson/images/IMG_6414.jpg \n", 558 | " inflating: db/drjohnson/images/IMG_6415.jpg \n", 559 | " inflating: db/drjohnson/images/IMG_6417.jpg \n", 560 | " inflating: db/drjohnson/images/IMG_6420.jpg \n", 561 | " inflating: db/drjohnson/images/IMG_6421.jpg \n", 562 | " inflating: db/drjohnson/images/IMG_6422.jpg \n", 563 | " inflating: db/drjohnson/images/IMG_6423.jpg \n", 564 | " inflating: db/drjohnson/images/IMG_6428.jpg \n", 565 | " inflating: db/drjohnson/images/IMG_6429.jpg \n", 566 | " inflating: db/drjohnson/images/IMG_6430.jpg \n", 567 | " inflating: db/drjohnson/images/IMG_6431.jpg \n", 568 | " inflating: db/drjohnson/images/IMG_6433.jpg \n", 569 | " inflating: db/drjohnson/images/IMG_6434.jpg \n", 570 | " inflating: db/drjohnson/images/IMG_6435.jpg \n", 571 | " inflating: db/drjohnson/images/IMG_6436.jpg \n", 572 | " inflating: db/drjohnson/images/IMG_6437.jpg \n", 573 | " inflating: db/drjohnson/images/IMG_6438.jpg \n", 574 | " inflating: db/drjohnson/images/IMG_6439.jpg \n", 575 | " inflating: db/drjohnson/images/IMG_6440.jpg \n", 576 | " inflating: db/drjohnson/images/IMG_6441.jpg \n", 577 | " inflating: db/drjohnson/images/IMG_6442.jpg \n", 578 | " inflating: db/drjohnson/images/IMG_6443.jpg \n", 579 | " inflating: db/drjohnson/images/IMG_6444.jpg \n", 580 | " inflating: db/drjohnson/images/IMG_6445.jpg \n", 581 | " inflating: db/drjohnson/images/IMG_6446.jpg \n", 582 | " inflating: db/drjohnson/images/IMG_6447.jpg \n", 583 | " inflating: db/drjohnson/images/IMG_6448.jpg \n", 584 | " inflating: db/drjohnson/images/IMG_6449.jpg \n", 585 | " inflating: db/drjohnson/images/IMG_6450.jpg \n", 586 | " inflating: db/drjohnson/images/IMG_6451.jpg \n", 587 | " inflating: db/drjohnson/images/IMG_6452.jpg \n", 588 | " inflating: db/drjohnson/images/IMG_6453.jpg \n", 589 | " inflating: db/drjohnson/images/IMG_6454.jpg \n", 590 | " inflating: db/drjohnson/images/IMG_6456.jpg \n", 591 | " inflating: db/drjohnson/images/IMG_6457.jpg \n", 592 | " inflating: db/drjohnson/images/IMG_6458.jpg \n", 593 | " inflating: db/drjohnson/images/IMG_6459.jpg \n", 594 | " inflating: db/drjohnson/images/IMG_6460.jpg \n", 595 | " inflating: db/drjohnson/images/IMG_6461.jpg \n", 596 | " inflating: db/drjohnson/images/IMG_6462.jpg \n", 597 | " inflating: db/drjohnson/images/IMG_6464.jpg \n", 598 | " inflating: db/drjohnson/images/IMG_6465.jpg \n", 599 | " inflating: db/drjohnson/images/IMG_6466.jpg \n", 600 | " inflating: db/drjohnson/images/IMG_6468.jpg \n", 601 | " inflating: db/drjohnson/images/IMG_6471.jpg \n", 602 | " inflating: db/drjohnson/images/IMG_6472.jpg \n", 603 | " inflating: db/drjohnson/images/IMG_6475.jpg \n", 604 | " inflating: db/drjohnson/images/IMG_6476.jpg \n", 605 | " inflating: db/drjohnson/images/IMG_6477.jpg \n", 606 | " inflating: db/drjohnson/images/IMG_6479.jpg \n", 607 | " inflating: db/drjohnson/images/IMG_6481.jpg \n", 608 | " inflating: db/drjohnson/images/IMG_6482.jpg \n", 609 | " inflating: db/drjohnson/images/IMG_6483.jpg \n", 610 | " inflating: db/drjohnson/images/IMG_6484.jpg \n", 611 | " inflating: db/drjohnson/images/IMG_6485.jpg \n", 612 | " inflating: db/drjohnson/images/IMG_6486.jpg \n", 613 | " inflating: db/drjohnson/images/IMG_6487.jpg \n", 614 | " inflating: db/drjohnson/images/IMG_6488.jpg \n", 615 | " inflating: db/drjohnson/images/IMG_6489.jpg \n", 616 | " inflating: db/drjohnson/images/IMG_6490.jpg \n", 617 | " inflating: db/drjohnson/images/IMG_6491.jpg \n", 618 | " inflating: db/drjohnson/images/IMG_6492.jpg \n", 619 | " inflating: db/drjohnson/images/IMG_6493.jpg \n", 620 | " inflating: db/drjohnson/images/IMG_6494.jpg \n", 621 | " inflating: db/drjohnson/images/IMG_6495.jpg \n", 622 | " inflating: db/drjohnson/images/IMG_6496.jpg \n", 623 | " inflating: db/drjohnson/images/IMG_6498.jpg \n", 624 | " inflating: db/drjohnson/images/IMG_6499.jpg \n", 625 | " inflating: db/drjohnson/images/IMG_6500.jpg \n", 626 | " inflating: db/drjohnson/images/IMG_6501.jpg \n", 627 | " inflating: db/drjohnson/images/IMG_6502.jpg \n", 628 | " inflating: db/drjohnson/images/IMG_6503.jpg \n", 629 | " inflating: db/drjohnson/images/IMG_6504.jpg \n", 630 | " inflating: db/drjohnson/images/IMG_6505.jpg \n", 631 | " inflating: db/drjohnson/images/IMG_6506.jpg \n", 632 | " inflating: db/drjohnson/images/IMG_6507.jpg \n", 633 | " inflating: db/drjohnson/images/IMG_6508.jpg \n", 634 | " inflating: db/drjohnson/images/IMG_6509.jpg \n", 635 | " inflating: db/drjohnson/images/IMG_6510.jpg \n", 636 | " inflating: db/drjohnson/images/IMG_6511.jpg \n", 637 | " inflating: db/drjohnson/images/IMG_6512.jpg \n", 638 | " inflating: db/drjohnson/images/IMG_6513.jpg \n", 639 | " inflating: db/drjohnson/images/IMG_6514.jpg \n", 640 | " inflating: db/drjohnson/images/IMG_6515.jpg \n", 641 | " inflating: db/drjohnson/images/IMG_6516.jpg \n", 642 | " inflating: db/drjohnson/images/IMG_6517.jpg \n", 643 | " inflating: db/drjohnson/images/IMG_6518.jpg \n", 644 | " inflating: db/drjohnson/images/IMG_6520.jpg \n", 645 | " inflating: db/drjohnson/images/IMG_6521.jpg \n", 646 | " inflating: db/drjohnson/images/IMG_6522.jpg \n", 647 | " inflating: db/drjohnson/images/IMG_6523.jpg \n", 648 | " inflating: db/drjohnson/images/IMG_6524.jpg \n", 649 | " inflating: db/drjohnson/images/IMG_6525.jpg \n", 650 | " inflating: db/drjohnson/images/IMG_6526.jpg \n", 651 | " inflating: db/drjohnson/images/IMG_6527.jpg \n", 652 | " inflating: db/drjohnson/images/IMG_6528.jpg \n", 653 | " inflating: db/drjohnson/images/IMG_6529.jpg \n", 654 | " inflating: db/drjohnson/images/IMG_6530.jpg \n", 655 | " inflating: db/drjohnson/images/IMG_6531.jpg \n", 656 | " inflating: db/drjohnson/images/IMG_6533.jpg \n", 657 | " inflating: db/drjohnson/images/IMG_6534.jpg \n", 658 | " inflating: db/drjohnson/images/IMG_6535.jpg \n", 659 | " inflating: db/drjohnson/images/IMG_6536.jpg \n", 660 | " inflating: db/drjohnson/images/IMG_6537.jpg \n", 661 | " inflating: db/drjohnson/images/IMG_6538.jpg \n", 662 | " inflating: db/drjohnson/images/IMG_6540.jpg \n", 663 | " inflating: db/drjohnson/images/IMG_6541.jpg \n", 664 | " inflating: db/drjohnson/images/IMG_6542.jpg \n", 665 | " inflating: db/drjohnson/images/IMG_6543.jpg \n", 666 | " inflating: db/drjohnson/images/IMG_6544.jpg \n", 667 | " inflating: db/drjohnson/images/IMG_6546.jpg \n", 668 | " inflating: db/drjohnson/images/IMG_6547.jpg \n", 669 | " inflating: db/drjohnson/images/IMG_6548.jpg \n", 670 | " inflating: db/drjohnson/images/IMG_6549.jpg \n", 671 | " inflating: db/drjohnson/images/IMG_6550.jpg \n", 672 | " inflating: db/drjohnson/images/IMG_6551.jpg \n", 673 | " inflating: db/drjohnson/images/IMG_6552.jpg \n", 674 | " inflating: db/drjohnson/images/IMG_6553.jpg \n", 675 | " inflating: db/drjohnson/images/IMG_6554.jpg \n", 676 | " inflating: db/drjohnson/images/IMG_6555.jpg \n", 677 | " inflating: db/drjohnson/images/IMG_6556.jpg \n", 678 | " inflating: db/drjohnson/images/IMG_6557.jpg \n", 679 | " inflating: db/drjohnson/images/IMG_6558.jpg \n", 680 | " inflating: db/drjohnson/images/IMG_6559.jpg \n", 681 | " inflating: db/drjohnson/images/IMG_6560.jpg \n", 682 | " inflating: db/drjohnson/images/IMG_6561.jpg \n", 683 | " inflating: db/drjohnson/images/IMG_6562.jpg \n", 684 | " inflating: db/drjohnson/images/IMG_6563.jpg \n", 685 | " inflating: db/drjohnson/images/IMG_6564.jpg \n", 686 | " inflating: db/drjohnson/images/IMG_6565.jpg \n", 687 | " inflating: db/drjohnson/images/IMG_6566.jpg \n", 688 | " inflating: db/drjohnson/images/IMG_6567.jpg \n", 689 | " inflating: db/drjohnson/images/IMG_6569.jpg \n", 690 | " inflating: db/drjohnson/images/IMG_6570.jpg \n", 691 | " inflating: db/drjohnson/images/IMG_6571.jpg \n", 692 | " inflating: db/drjohnson/images/IMG_6572.jpg \n", 693 | " inflating: db/drjohnson/images/IMG_6573.jpg \n", 694 | " inflating: db/drjohnson/images/IMG_6575.jpg \n", 695 | " inflating: db/drjohnson/images/IMG_6576.jpg \n", 696 | " inflating: db/drjohnson/images/IMG_6577.jpg \n", 697 | " inflating: db/drjohnson/images/IMG_6578.jpg \n", 698 | " inflating: db/drjohnson/images/IMG_6579.jpg \n", 699 | " inflating: db/drjohnson/images/IMG_6580.jpg \n", 700 | " inflating: db/drjohnson/images/IMG_6581.jpg \n", 701 | " inflating: db/drjohnson/images/IMG_6583.jpg \n", 702 | " inflating: db/drjohnson/images/IMG_6584.jpg \n", 703 | " inflating: db/drjohnson/images/IMG_6586.jpg \n", 704 | " inflating: db/drjohnson/images/IMG_6588.jpg \n", 705 | " inflating: db/drjohnson/images/IMG_6589.jpg \n", 706 | " inflating: db/drjohnson/images/IMG_6590.jpg \n", 707 | " inflating: db/drjohnson/images/IMG_6591.jpg \n", 708 | " inflating: db/drjohnson/images/IMG_6592.jpg \n", 709 | " inflating: db/drjohnson/images/IMG_6596.jpg \n", 710 | " inflating: db/drjohnson/images/IMG_6597.jpg \n", 711 | " inflating: db/drjohnson/images/IMG_6598.jpg \n", 712 | " creating: db/drjohnson/sparse/\n", 713 | " creating: db/drjohnson/sparse/0/\n", 714 | " inflating: db/drjohnson/sparse/0/cameras.bin \n", 715 | " inflating: db/drjohnson/sparse/0/images.bin \n", 716 | " inflating: db/drjohnson/sparse/0/points3D.bin \n", 717 | " inflating: db/drjohnson/sparse/0/project.ini \n", 718 | " creating: db/playroom/\n", 719 | " creating: db/playroom/images/\n", 720 | " inflating: db/playroom/images/DSC05572.jpg \n", 721 | " inflating: db/playroom/images/DSC05573.jpg \n", 722 | " inflating: db/playroom/images/DSC05574.jpg \n", 723 | " inflating: db/playroom/images/DSC05575.jpg \n", 724 | " inflating: db/playroom/images/DSC05576.jpg \n", 725 | " inflating: db/playroom/images/DSC05577.jpg \n", 726 | " inflating: db/playroom/images/DSC05578.jpg \n", 727 | " inflating: db/playroom/images/DSC05579.jpg \n", 728 | " inflating: db/playroom/images/DSC05580.jpg \n", 729 | " inflating: db/playroom/images/DSC05581.jpg \n", 730 | " inflating: db/playroom/images/DSC05582.jpg \n", 731 | " inflating: db/playroom/images/DSC05583.jpg \n", 732 | " inflating: db/playroom/images/DSC05584.jpg \n", 733 | " inflating: db/playroom/images/DSC05585.jpg \n", 734 | " inflating: db/playroom/images/DSC05586.jpg \n", 735 | " inflating: db/playroom/images/DSC05587.jpg \n", 736 | " inflating: db/playroom/images/DSC05588.jpg \n", 737 | " inflating: db/playroom/images/DSC05589.jpg \n", 738 | " inflating: db/playroom/images/DSC05590.jpg \n", 739 | " inflating: db/playroom/images/DSC05591.jpg \n", 740 | " inflating: db/playroom/images/DSC05592.jpg \n", 741 | " inflating: db/playroom/images/DSC05593.jpg \n", 742 | " inflating: db/playroom/images/DSC05594.jpg \n", 743 | " inflating: db/playroom/images/DSC05595.jpg \n", 744 | " inflating: db/playroom/images/DSC05596.jpg \n", 745 | " inflating: db/playroom/images/DSC05597.jpg \n", 746 | " inflating: db/playroom/images/DSC05598.jpg \n", 747 | " inflating: db/playroom/images/DSC05599.jpg \n", 748 | " inflating: db/playroom/images/DSC05600.jpg \n", 749 | " inflating: db/playroom/images/DSC05601.jpg \n", 750 | " inflating: db/playroom/images/DSC05602.jpg \n", 751 | " inflating: db/playroom/images/DSC05603.jpg \n", 752 | " inflating: db/playroom/images/DSC05604.jpg \n", 753 | " inflating: db/playroom/images/DSC05605.jpg \n", 754 | " inflating: db/playroom/images/DSC05606.jpg \n", 755 | " inflating: db/playroom/images/DSC05607.jpg \n", 756 | " inflating: db/playroom/images/DSC05608.jpg \n", 757 | " inflating: db/playroom/images/DSC05609.jpg \n", 758 | " inflating: db/playroom/images/DSC05610.jpg \n", 759 | " inflating: db/playroom/images/DSC05611.jpg \n", 760 | " inflating: db/playroom/images/DSC05612.jpg \n", 761 | " inflating: db/playroom/images/DSC05613.jpg \n", 762 | " inflating: db/playroom/images/DSC05614.jpg \n", 763 | " inflating: db/playroom/images/DSC05615.jpg \n", 764 | " inflating: db/playroom/images/DSC05616.jpg \n", 765 | " inflating: db/playroom/images/DSC05617.jpg \n", 766 | " inflating: db/playroom/images/DSC05618.jpg \n", 767 | " inflating: db/playroom/images/DSC05619.jpg \n", 768 | " inflating: db/playroom/images/DSC05620.jpg \n", 769 | " inflating: db/playroom/images/DSC05621.jpg \n", 770 | " inflating: db/playroom/images/DSC05622.jpg \n", 771 | " inflating: db/playroom/images/DSC05623.jpg \n", 772 | " inflating: db/playroom/images/DSC05624.jpg \n", 773 | " inflating: db/playroom/images/DSC05625.jpg \n", 774 | " inflating: db/playroom/images/DSC05626.jpg \n", 775 | " inflating: db/playroom/images/DSC05627.jpg \n", 776 | " inflating: db/playroom/images/DSC05628.jpg \n", 777 | " inflating: db/playroom/images/DSC05629.jpg \n", 778 | " inflating: db/playroom/images/DSC05630.jpg \n", 779 | " inflating: db/playroom/images/DSC05631.jpg \n", 780 | " inflating: db/playroom/images/DSC05632.jpg \n", 781 | " inflating: db/playroom/images/DSC05633.jpg \n", 782 | " inflating: db/playroom/images/DSC05634.jpg \n", 783 | " inflating: db/playroom/images/DSC05635.jpg \n", 784 | " inflating: db/playroom/images/DSC05636.jpg \n", 785 | " inflating: db/playroom/images/DSC05637.jpg \n", 786 | " inflating: db/playroom/images/DSC05638.jpg \n", 787 | " inflating: db/playroom/images/DSC05639.jpg \n", 788 | " inflating: db/playroom/images/DSC05640.jpg \n", 789 | " inflating: db/playroom/images/DSC05641.jpg \n", 790 | " inflating: db/playroom/images/DSC05642.jpg \n", 791 | " inflating: db/playroom/images/DSC05643.jpg \n", 792 | " inflating: db/playroom/images/DSC05644.jpg \n", 793 | " inflating: db/playroom/images/DSC05645.jpg \n", 794 | " inflating: db/playroom/images/DSC05646.jpg \n", 795 | " inflating: db/playroom/images/DSC05647.jpg \n", 796 | " inflating: db/playroom/images/DSC05648.jpg \n", 797 | " inflating: db/playroom/images/DSC05649.jpg \n", 798 | " inflating: db/playroom/images/DSC05650.jpg \n", 799 | " inflating: db/playroom/images/DSC05651.jpg \n", 800 | " inflating: db/playroom/images/DSC05652.jpg \n", 801 | " inflating: db/playroom/images/DSC05653.jpg \n", 802 | " inflating: db/playroom/images/DSC05654.jpg \n", 803 | " inflating: db/playroom/images/DSC05656.jpg \n", 804 | " inflating: db/playroom/images/DSC05657.jpg \n", 805 | " inflating: db/playroom/images/DSC05658.jpg \n", 806 | " inflating: db/playroom/images/DSC05659.jpg \n", 807 | " inflating: db/playroom/images/DSC05660.jpg \n", 808 | " inflating: db/playroom/images/DSC05661.jpg \n", 809 | " inflating: db/playroom/images/DSC05662.jpg \n", 810 | " inflating: db/playroom/images/DSC05663.jpg \n", 811 | " inflating: db/playroom/images/DSC05664.jpg \n", 812 | " inflating: db/playroom/images/DSC05665.jpg \n", 813 | " inflating: db/playroom/images/DSC05666.jpg \n", 814 | " inflating: db/playroom/images/DSC05667.jpg \n", 815 | " inflating: db/playroom/images/DSC05668.jpg \n", 816 | " inflating: db/playroom/images/DSC05669.jpg \n", 817 | " inflating: db/playroom/images/DSC05670.jpg \n", 818 | " inflating: db/playroom/images/DSC05672.jpg \n", 819 | " inflating: db/playroom/images/DSC05673.jpg \n", 820 | " inflating: db/playroom/images/DSC05674.jpg \n", 821 | " inflating: db/playroom/images/DSC05675.jpg \n", 822 | " inflating: db/playroom/images/DSC05676.jpg \n", 823 | " inflating: db/playroom/images/DSC05677.jpg \n", 824 | " inflating: db/playroom/images/DSC05678.jpg \n", 825 | " inflating: db/playroom/images/DSC05679.jpg \n", 826 | " inflating: db/playroom/images/DSC05680.jpg \n", 827 | " inflating: db/playroom/images/DSC05681.jpg \n", 828 | " inflating: db/playroom/images/DSC05682.jpg \n", 829 | " inflating: db/playroom/images/DSC05683.jpg \n", 830 | " inflating: db/playroom/images/DSC05684.jpg \n", 831 | " inflating: db/playroom/images/DSC05685.jpg \n", 832 | " inflating: db/playroom/images/DSC05686.jpg \n", 833 | " inflating: db/playroom/images/DSC05687.jpg \n", 834 | " inflating: db/playroom/images/DSC05689.jpg \n", 835 | " inflating: db/playroom/images/DSC05690.jpg \n", 836 | " inflating: db/playroom/images/DSC05691.jpg \n", 837 | " inflating: db/playroom/images/DSC05692.jpg \n", 838 | " inflating: db/playroom/images/DSC05693.jpg \n", 839 | " inflating: db/playroom/images/DSC05694.jpg \n", 840 | " inflating: db/playroom/images/DSC05695.jpg \n", 841 | " inflating: db/playroom/images/DSC05696.jpg \n", 842 | " inflating: db/playroom/images/DSC05697.jpg \n", 843 | " inflating: db/playroom/images/DSC05698.jpg \n", 844 | " inflating: db/playroom/images/DSC05699.jpg \n", 845 | " inflating: db/playroom/images/DSC05700.jpg \n", 846 | " inflating: db/playroom/images/DSC05701.jpg \n", 847 | " inflating: db/playroom/images/DSC05702.jpg \n", 848 | " inflating: db/playroom/images/DSC05703.jpg \n", 849 | " inflating: db/playroom/images/DSC05704.jpg \n", 850 | " inflating: db/playroom/images/DSC05705.jpg \n", 851 | " inflating: db/playroom/images/DSC05706.jpg \n", 852 | " inflating: db/playroom/images/DSC05707.jpg \n", 853 | " inflating: db/playroom/images/DSC05708.jpg \n", 854 | " inflating: db/playroom/images/DSC05709.jpg \n", 855 | " inflating: db/playroom/images/DSC05710.jpg \n", 856 | " inflating: db/playroom/images/DSC05711.jpg \n", 857 | " inflating: db/playroom/images/DSC05712.jpg \n", 858 | " inflating: db/playroom/images/DSC05713.jpg \n", 859 | " inflating: db/playroom/images/DSC05714.jpg \n", 860 | " inflating: db/playroom/images/DSC05715.jpg \n", 861 | " inflating: db/playroom/images/DSC05716.jpg \n", 862 | " inflating: db/playroom/images/DSC05717.jpg \n", 863 | " inflating: db/playroom/images/DSC05718.jpg \n", 864 | " inflating: db/playroom/images/DSC05719.jpg \n", 865 | " inflating: db/playroom/images/DSC05721.jpg \n", 866 | " inflating: db/playroom/images/DSC05722.jpg \n", 867 | " inflating: db/playroom/images/DSC05723.jpg \n", 868 | " inflating: db/playroom/images/DSC05724.jpg \n", 869 | " inflating: db/playroom/images/DSC05725.jpg \n", 870 | " inflating: db/playroom/images/DSC05726.jpg \n", 871 | " inflating: db/playroom/images/DSC05727.jpg \n", 872 | " inflating: db/playroom/images/DSC05728.jpg \n", 873 | " inflating: db/playroom/images/DSC05729.jpg \n", 874 | " inflating: db/playroom/images/DSC05731.jpg \n", 875 | " inflating: db/playroom/images/DSC05732.jpg \n", 876 | " inflating: db/playroom/images/DSC05733.jpg \n", 877 | " inflating: db/playroom/images/DSC05735.jpg \n", 878 | " inflating: db/playroom/images/DSC05736.jpg \n", 879 | " inflating: db/playroom/images/DSC05737.jpg \n", 880 | " inflating: db/playroom/images/DSC05738.jpg \n", 881 | " inflating: db/playroom/images/DSC05740.jpg \n", 882 | " inflating: db/playroom/images/DSC05741.jpg \n", 883 | " inflating: db/playroom/images/DSC05742.jpg \n", 884 | " inflating: db/playroom/images/DSC05743.jpg \n", 885 | " inflating: db/playroom/images/DSC05744.jpg \n", 886 | " inflating: db/playroom/images/DSC05745.jpg \n", 887 | " inflating: db/playroom/images/DSC05746.jpg \n", 888 | " inflating: db/playroom/images/DSC05747.jpg \n", 889 | " inflating: db/playroom/images/DSC05748.jpg \n", 890 | " inflating: db/playroom/images/DSC05749.jpg \n", 891 | " inflating: db/playroom/images/DSC05750.jpg \n", 892 | " inflating: db/playroom/images/DSC05751.jpg \n", 893 | " inflating: db/playroom/images/DSC05752.jpg \n", 894 | " inflating: db/playroom/images/DSC05753.jpg \n", 895 | " inflating: db/playroom/images/DSC05754.jpg \n", 896 | " inflating: db/playroom/images/DSC05755.jpg \n", 897 | " inflating: db/playroom/images/DSC05756.jpg \n", 898 | " inflating: db/playroom/images/DSC05757.jpg \n", 899 | " inflating: db/playroom/images/DSC05758.jpg \n", 900 | " inflating: db/playroom/images/DSC05759.jpg \n", 901 | " inflating: db/playroom/images/DSC05760.jpg \n", 902 | " inflating: db/playroom/images/DSC05761.jpg \n", 903 | " inflating: db/playroom/images/DSC05762.jpg \n", 904 | " inflating: db/playroom/images/DSC05763.jpg \n", 905 | " inflating: db/playroom/images/DSC05764.jpg \n", 906 | " inflating: db/playroom/images/DSC05765.jpg \n", 907 | " inflating: db/playroom/images/DSC05766.jpg \n", 908 | " inflating: db/playroom/images/DSC05767.jpg \n", 909 | " inflating: db/playroom/images/DSC05768.jpg \n", 910 | " inflating: db/playroom/images/DSC05769.jpg \n", 911 | " inflating: db/playroom/images/DSC05770.jpg \n", 912 | " inflating: db/playroom/images/DSC05771.jpg \n", 913 | " inflating: db/playroom/images/DSC05773.jpg \n", 914 | " inflating: db/playroom/images/DSC05774.jpg \n", 915 | " inflating: db/playroom/images/DSC05775.jpg \n", 916 | " inflating: db/playroom/images/DSC05776.jpg \n", 917 | " inflating: db/playroom/images/DSC05777.jpg \n", 918 | " inflating: db/playroom/images/DSC05778.jpg \n", 919 | " inflating: db/playroom/images/DSC05779.jpg \n", 920 | " inflating: db/playroom/images/DSC05780.jpg \n", 921 | " inflating: db/playroom/images/DSC05781.jpg \n", 922 | " inflating: db/playroom/images/DSC05782.jpg \n", 923 | " inflating: db/playroom/images/DSC05783.jpg \n", 924 | " inflating: db/playroom/images/DSC05784.jpg \n", 925 | " inflating: db/playroom/images/DSC05785.jpg \n", 926 | " inflating: db/playroom/images/DSC05786.jpg \n", 927 | " inflating: db/playroom/images/DSC05787.jpg \n", 928 | " inflating: db/playroom/images/DSC05788.jpg \n", 929 | " inflating: db/playroom/images/DSC05789.jpg \n", 930 | " inflating: db/playroom/images/DSC05790.jpg \n", 931 | " inflating: db/playroom/images/DSC05791.jpg \n", 932 | " inflating: db/playroom/images/DSC05793.jpg \n", 933 | " inflating: db/playroom/images/DSC05794.jpg \n", 934 | " inflating: db/playroom/images/DSC05795.jpg \n", 935 | " inflating: db/playroom/images/DSC05796.jpg \n", 936 | " inflating: db/playroom/images/DSC05797.jpg \n", 937 | " inflating: db/playroom/images/DSC05798.jpg \n", 938 | " inflating: db/playroom/images/DSC05799.jpg \n", 939 | " inflating: db/playroom/images/DSC05800.jpg \n", 940 | " inflating: db/playroom/images/DSC05801.jpg \n", 941 | " inflating: db/playroom/images/DSC05802.jpg \n", 942 | " inflating: db/playroom/images/DSC05803.jpg \n", 943 | " inflating: db/playroom/images/DSC05804.jpg \n", 944 | " inflating: db/playroom/images/DSC05805.jpg \n", 945 | " creating: db/playroom/sparse/\n", 946 | " creating: db/playroom/sparse/0/\n", 947 | " inflating: db/playroom/sparse/0/cameras.bin \n", 948 | " inflating: db/playroom/sparse/0/images.bin \n", 949 | " inflating: db/playroom/sparse/0/points3D.bin \n", 950 | " inflating: db/playroom/sparse/0/project.ini \n", 951 | " creating: tandt/train/\n", 952 | " creating: tandt/train/images/\n", 953 | " inflating: tandt/train/images/00001.jpg \n", 954 | " inflating: tandt/train/images/00002.jpg \n", 955 | " inflating: tandt/train/images/00003.jpg \n", 956 | " inflating: tandt/train/images/00004.jpg \n", 957 | " inflating: tandt/train/images/00005.jpg \n", 958 | " inflating: tandt/train/images/00006.jpg \n", 959 | " inflating: tandt/train/images/00007.jpg \n", 960 | " inflating: tandt/train/images/00008.jpg \n", 961 | " inflating: tandt/train/images/00009.jpg \n", 962 | " inflating: tandt/train/images/00010.jpg \n", 963 | " inflating: tandt/train/images/00011.jpg \n", 964 | " inflating: tandt/train/images/00012.jpg \n", 965 | " inflating: tandt/train/images/00013.jpg \n", 966 | " inflating: tandt/train/images/00014.jpg \n", 967 | " inflating: tandt/train/images/00015.jpg \n", 968 | " inflating: tandt/train/images/00016.jpg \n", 969 | " inflating: tandt/train/images/00017.jpg \n", 970 | " inflating: tandt/train/images/00018.jpg \n", 971 | " inflating: tandt/train/images/00019.jpg \n", 972 | " inflating: tandt/train/images/00020.jpg \n", 973 | " inflating: tandt/train/images/00021.jpg \n", 974 | " inflating: tandt/train/images/00022.jpg \n", 975 | " inflating: tandt/train/images/00023.jpg \n", 976 | " inflating: tandt/train/images/00024.jpg \n", 977 | " inflating: tandt/train/images/00025.jpg \n", 978 | " inflating: tandt/train/images/00026.jpg \n", 979 | " inflating: tandt/train/images/00027.jpg \n", 980 | " inflating: tandt/train/images/00028.jpg \n", 981 | " inflating: tandt/train/images/00029.jpg \n", 982 | " inflating: tandt/train/images/00030.jpg \n", 983 | " inflating: tandt/train/images/00031.jpg \n", 984 | " inflating: tandt/train/images/00032.jpg \n", 985 | " inflating: tandt/train/images/00033.jpg \n", 986 | " inflating: tandt/train/images/00034.jpg \n", 987 | " inflating: tandt/train/images/00035.jpg \n", 988 | " inflating: tandt/train/images/00036.jpg \n", 989 | " inflating: tandt/train/images/00037.jpg \n", 990 | " inflating: tandt/train/images/00038.jpg \n", 991 | " inflating: tandt/train/images/00039.jpg \n", 992 | " inflating: tandt/train/images/00040.jpg \n", 993 | " inflating: tandt/train/images/00041.jpg \n", 994 | " inflating: tandt/train/images/00042.jpg \n", 995 | " inflating: tandt/train/images/00043.jpg \n", 996 | " inflating: tandt/train/images/00044.jpg \n", 997 | " inflating: tandt/train/images/00045.jpg \n", 998 | " inflating: tandt/train/images/00046.jpg \n", 999 | " inflating: tandt/train/images/00047.jpg \n", 1000 | " inflating: tandt/train/images/00048.jpg \n", 1001 | " inflating: tandt/train/images/00049.jpg \n", 1002 | " inflating: tandt/train/images/00050.jpg \n", 1003 | " inflating: tandt/train/images/00051.jpg \n", 1004 | " inflating: tandt/train/images/00052.jpg \n", 1005 | " inflating: tandt/train/images/00053.jpg \n", 1006 | " inflating: tandt/train/images/00054.jpg \n", 1007 | " inflating: tandt/train/images/00055.jpg \n", 1008 | " inflating: tandt/train/images/00056.jpg \n", 1009 | " inflating: tandt/train/images/00057.jpg \n", 1010 | " inflating: tandt/train/images/00058.jpg \n", 1011 | " inflating: tandt/train/images/00059.jpg \n", 1012 | " inflating: tandt/train/images/00060.jpg \n", 1013 | " inflating: tandt/train/images/00061.jpg \n", 1014 | " inflating: tandt/train/images/00062.jpg \n", 1015 | " inflating: tandt/train/images/00063.jpg \n", 1016 | " inflating: tandt/train/images/00064.jpg \n", 1017 | " inflating: tandt/train/images/00065.jpg \n", 1018 | " inflating: tandt/train/images/00066.jpg \n", 1019 | " inflating: tandt/train/images/00067.jpg \n", 1020 | " inflating: tandt/train/images/00068.jpg \n", 1021 | " inflating: tandt/train/images/00069.jpg \n", 1022 | " inflating: tandt/train/images/00070.jpg \n", 1023 | " inflating: tandt/train/images/00071.jpg \n", 1024 | " inflating: tandt/train/images/00072.jpg \n", 1025 | " inflating: tandt/train/images/00073.jpg \n", 1026 | " inflating: tandt/train/images/00074.jpg \n", 1027 | " inflating: tandt/train/images/00075.jpg \n", 1028 | " inflating: tandt/train/images/00076.jpg \n", 1029 | " inflating: tandt/train/images/00077.jpg \n", 1030 | " inflating: tandt/train/images/00078.jpg \n", 1031 | " inflating: tandt/train/images/00079.jpg \n", 1032 | " inflating: tandt/train/images/00080.jpg \n", 1033 | " inflating: tandt/train/images/00081.jpg \n", 1034 | " inflating: tandt/train/images/00082.jpg \n", 1035 | " inflating: tandt/train/images/00083.jpg \n", 1036 | " inflating: tandt/train/images/00084.jpg \n", 1037 | " inflating: tandt/train/images/00085.jpg \n", 1038 | " inflating: tandt/train/images/00086.jpg \n", 1039 | " inflating: tandt/train/images/00087.jpg \n", 1040 | " inflating: tandt/train/images/00088.jpg \n", 1041 | " inflating: tandt/train/images/00089.jpg \n", 1042 | " inflating: tandt/train/images/00090.jpg \n", 1043 | " inflating: tandt/train/images/00091.jpg \n", 1044 | " inflating: tandt/train/images/00092.jpg \n", 1045 | " inflating: tandt/train/images/00093.jpg \n", 1046 | " inflating: tandt/train/images/00094.jpg \n", 1047 | " inflating: tandt/train/images/00095.jpg \n", 1048 | " inflating: tandt/train/images/00096.jpg \n", 1049 | " inflating: tandt/train/images/00097.jpg \n", 1050 | " inflating: tandt/train/images/00098.jpg \n", 1051 | " inflating: tandt/train/images/00099.jpg \n", 1052 | " inflating: tandt/train/images/00100.jpg \n", 1053 | " inflating: tandt/train/images/00101.jpg \n", 1054 | " inflating: tandt/train/images/00102.jpg \n", 1055 | " inflating: tandt/train/images/00103.jpg \n", 1056 | " inflating: tandt/train/images/00104.jpg \n", 1057 | " inflating: tandt/train/images/00105.jpg \n", 1058 | " inflating: tandt/train/images/00106.jpg \n", 1059 | " inflating: tandt/train/images/00107.jpg \n", 1060 | " inflating: tandt/train/images/00108.jpg \n", 1061 | " inflating: tandt/train/images/00109.jpg \n", 1062 | " inflating: tandt/train/images/00110.jpg \n", 1063 | " inflating: tandt/train/images/00111.jpg \n", 1064 | " inflating: tandt/train/images/00112.jpg \n", 1065 | " inflating: tandt/train/images/00113.jpg \n", 1066 | " inflating: tandt/train/images/00114.jpg \n", 1067 | " inflating: tandt/train/images/00115.jpg \n", 1068 | " inflating: tandt/train/images/00116.jpg \n", 1069 | " inflating: tandt/train/images/00117.jpg \n", 1070 | " inflating: tandt/train/images/00118.jpg \n", 1071 | " inflating: tandt/train/images/00119.jpg \n", 1072 | " inflating: tandt/train/images/00120.jpg \n", 1073 | " inflating: tandt/train/images/00121.jpg \n", 1074 | " inflating: tandt/train/images/00122.jpg \n", 1075 | " inflating: tandt/train/images/00123.jpg \n", 1076 | " inflating: tandt/train/images/00124.jpg \n", 1077 | " inflating: tandt/train/images/00125.jpg \n", 1078 | " inflating: tandt/train/images/00126.jpg \n", 1079 | " inflating: tandt/train/images/00127.jpg \n", 1080 | " inflating: tandt/train/images/00128.jpg \n", 1081 | " inflating: tandt/train/images/00129.jpg \n", 1082 | " inflating: tandt/train/images/00130.jpg \n", 1083 | " inflating: tandt/train/images/00131.jpg \n", 1084 | " inflating: tandt/train/images/00132.jpg \n", 1085 | " inflating: tandt/train/images/00133.jpg \n", 1086 | " inflating: tandt/train/images/00134.jpg \n", 1087 | " inflating: tandt/train/images/00135.jpg \n", 1088 | " inflating: tandt/train/images/00136.jpg \n", 1089 | " inflating: tandt/train/images/00137.jpg \n", 1090 | " inflating: tandt/train/images/00138.jpg \n", 1091 | " inflating: tandt/train/images/00139.jpg \n", 1092 | " inflating: tandt/train/images/00140.jpg \n", 1093 | " inflating: tandt/train/images/00141.jpg \n", 1094 | " inflating: tandt/train/images/00142.jpg \n", 1095 | " inflating: tandt/train/images/00143.jpg \n", 1096 | " inflating: tandt/train/images/00144.jpg \n", 1097 | " inflating: tandt/train/images/00145.jpg \n", 1098 | " inflating: tandt/train/images/00146.jpg \n", 1099 | " inflating: tandt/train/images/00147.jpg \n", 1100 | " inflating: tandt/train/images/00148.jpg \n", 1101 | " inflating: tandt/train/images/00149.jpg \n", 1102 | " inflating: tandt/train/images/00150.jpg \n", 1103 | " inflating: tandt/train/images/00151.jpg \n", 1104 | " inflating: tandt/train/images/00152.jpg \n", 1105 | " inflating: tandt/train/images/00153.jpg \n", 1106 | " inflating: tandt/train/images/00154.jpg \n", 1107 | " inflating: tandt/train/images/00155.jpg \n", 1108 | " inflating: tandt/train/images/00156.jpg \n", 1109 | " inflating: tandt/train/images/00157.jpg \n", 1110 | " inflating: tandt/train/images/00158.jpg \n", 1111 | " inflating: tandt/train/images/00159.jpg \n", 1112 | " inflating: tandt/train/images/00160.jpg \n", 1113 | " inflating: tandt/train/images/00161.jpg \n", 1114 | " inflating: tandt/train/images/00162.jpg \n", 1115 | " inflating: tandt/train/images/00163.jpg \n", 1116 | " inflating: tandt/train/images/00164.jpg \n", 1117 | " inflating: tandt/train/images/00165.jpg \n", 1118 | " inflating: tandt/train/images/00166.jpg \n", 1119 | " inflating: tandt/train/images/00167.jpg \n", 1120 | " inflating: tandt/train/images/00168.jpg \n", 1121 | " inflating: tandt/train/images/00169.jpg \n", 1122 | " inflating: tandt/train/images/00170.jpg \n", 1123 | " inflating: tandt/train/images/00171.jpg \n", 1124 | " inflating: tandt/train/images/00172.jpg \n", 1125 | " inflating: tandt/train/images/00173.jpg \n", 1126 | " inflating: tandt/train/images/00174.jpg \n", 1127 | " inflating: tandt/train/images/00175.jpg \n", 1128 | " inflating: tandt/train/images/00176.jpg \n", 1129 | " inflating: tandt/train/images/00177.jpg \n", 1130 | " inflating: tandt/train/images/00178.jpg \n", 1131 | " inflating: tandt/train/images/00179.jpg \n", 1132 | " inflating: tandt/train/images/00180.jpg \n", 1133 | " inflating: tandt/train/images/00181.jpg \n", 1134 | " inflating: tandt/train/images/00182.jpg \n", 1135 | " inflating: tandt/train/images/00183.jpg \n", 1136 | " inflating: tandt/train/images/00184.jpg \n", 1137 | " inflating: tandt/train/images/00185.jpg \n", 1138 | " inflating: tandt/train/images/00186.jpg \n", 1139 | " inflating: tandt/train/images/00187.jpg \n", 1140 | " inflating: tandt/train/images/00188.jpg \n", 1141 | " inflating: tandt/train/images/00189.jpg \n", 1142 | " inflating: tandt/train/images/00190.jpg \n", 1143 | " inflating: tandt/train/images/00191.jpg \n", 1144 | " inflating: tandt/train/images/00192.jpg \n", 1145 | " inflating: tandt/train/images/00193.jpg \n", 1146 | " inflating: tandt/train/images/00194.jpg \n", 1147 | " inflating: tandt/train/images/00195.jpg \n", 1148 | " inflating: tandt/train/images/00196.jpg \n", 1149 | " inflating: tandt/train/images/00197.jpg \n", 1150 | " inflating: tandt/train/images/00198.jpg \n", 1151 | " inflating: tandt/train/images/00199.jpg \n", 1152 | " inflating: tandt/train/images/00200.jpg \n", 1153 | " inflating: tandt/train/images/00201.jpg \n", 1154 | " inflating: tandt/train/images/00202.jpg \n", 1155 | " inflating: tandt/train/images/00203.jpg \n", 1156 | " inflating: tandt/train/images/00204.jpg \n", 1157 | " inflating: tandt/train/images/00205.jpg \n", 1158 | " inflating: tandt/train/images/00206.jpg \n", 1159 | " inflating: tandt/train/images/00207.jpg \n", 1160 | " inflating: tandt/train/images/00208.jpg \n", 1161 | " inflating: tandt/train/images/00209.jpg \n", 1162 | " inflating: tandt/train/images/00210.jpg \n", 1163 | " inflating: tandt/train/images/00211.jpg \n", 1164 | " inflating: tandt/train/images/00212.jpg \n", 1165 | " inflating: tandt/train/images/00213.jpg \n", 1166 | " inflating: tandt/train/images/00214.jpg \n", 1167 | " inflating: tandt/train/images/00215.jpg \n", 1168 | " inflating: tandt/train/images/00216.jpg \n", 1169 | " inflating: tandt/train/images/00217.jpg \n", 1170 | " inflating: tandt/train/images/00218.jpg \n", 1171 | " inflating: tandt/train/images/00219.jpg \n", 1172 | " inflating: tandt/train/images/00220.jpg \n", 1173 | " inflating: tandt/train/images/00221.jpg \n", 1174 | " inflating: tandt/train/images/00222.jpg \n", 1175 | " inflating: tandt/train/images/00223.jpg \n", 1176 | " inflating: tandt/train/images/00224.jpg \n", 1177 | " inflating: tandt/train/images/00225.jpg \n", 1178 | " inflating: tandt/train/images/00226.jpg \n", 1179 | " inflating: tandt/train/images/00227.jpg \n", 1180 | " inflating: tandt/train/images/00228.jpg \n", 1181 | " inflating: tandt/train/images/00229.jpg \n", 1182 | " inflating: tandt/train/images/00230.jpg \n", 1183 | " inflating: tandt/train/images/00231.jpg \n", 1184 | " inflating: tandt/train/images/00232.jpg \n", 1185 | " inflating: tandt/train/images/00233.jpg \n", 1186 | " inflating: tandt/train/images/00234.jpg \n", 1187 | " inflating: tandt/train/images/00235.jpg \n", 1188 | " inflating: tandt/train/images/00236.jpg \n", 1189 | " inflating: tandt/train/images/00237.jpg \n", 1190 | " inflating: tandt/train/images/00238.jpg \n", 1191 | " inflating: tandt/train/images/00239.jpg \n", 1192 | " inflating: tandt/train/images/00240.jpg \n", 1193 | " inflating: tandt/train/images/00241.jpg \n", 1194 | " inflating: tandt/train/images/00242.jpg \n", 1195 | " inflating: tandt/train/images/00243.jpg \n", 1196 | " inflating: tandt/train/images/00244.jpg \n", 1197 | " inflating: tandt/train/images/00245.jpg \n", 1198 | " inflating: tandt/train/images/00246.jpg \n", 1199 | " inflating: tandt/train/images/00247.jpg \n", 1200 | " inflating: tandt/train/images/00248.jpg \n", 1201 | " inflating: tandt/train/images/00249.jpg \n", 1202 | " inflating: tandt/train/images/00250.jpg \n", 1203 | " inflating: tandt/train/images/00251.jpg \n", 1204 | " inflating: tandt/train/images/00252.jpg \n", 1205 | " inflating: tandt/train/images/00253.jpg \n", 1206 | " inflating: tandt/train/images/00254.jpg \n", 1207 | " inflating: tandt/train/images/00255.jpg \n", 1208 | " inflating: tandt/train/images/00256.jpg \n", 1209 | " inflating: tandt/train/images/00257.jpg \n", 1210 | " inflating: tandt/train/images/00258.jpg \n", 1211 | " inflating: tandt/train/images/00259.jpg \n", 1212 | " inflating: tandt/train/images/00260.jpg \n", 1213 | " inflating: tandt/train/images/00261.jpg \n", 1214 | " inflating: tandt/train/images/00262.jpg \n", 1215 | " inflating: tandt/train/images/00263.jpg \n", 1216 | " inflating: tandt/train/images/00264.jpg \n", 1217 | " inflating: tandt/train/images/00265.jpg \n", 1218 | " inflating: tandt/train/images/00266.jpg \n", 1219 | " inflating: tandt/train/images/00267.jpg \n", 1220 | " inflating: tandt/train/images/00268.jpg \n", 1221 | " inflating: tandt/train/images/00269.jpg \n", 1222 | " inflating: tandt/train/images/00270.jpg \n", 1223 | " inflating: tandt/train/images/00271.jpg \n", 1224 | " inflating: tandt/train/images/00272.jpg \n", 1225 | " inflating: tandt/train/images/00273.jpg \n", 1226 | " inflating: tandt/train/images/00274.jpg \n", 1227 | " inflating: tandt/train/images/00275.jpg \n", 1228 | " inflating: tandt/train/images/00276.jpg \n", 1229 | " inflating: tandt/train/images/00277.jpg \n", 1230 | " inflating: tandt/train/images/00278.jpg \n", 1231 | " inflating: tandt/train/images/00279.jpg \n", 1232 | " inflating: tandt/train/images/00280.jpg \n", 1233 | " inflating: tandt/train/images/00281.jpg \n", 1234 | " inflating: tandt/train/images/00282.jpg \n", 1235 | " inflating: tandt/train/images/00283.jpg \n", 1236 | " inflating: tandt/train/images/00284.jpg \n", 1237 | " inflating: tandt/train/images/00285.jpg \n", 1238 | " inflating: tandt/train/images/00286.jpg \n", 1239 | " inflating: tandt/train/images/00287.jpg \n", 1240 | " inflating: tandt/train/images/00288.jpg \n", 1241 | " inflating: tandt/train/images/00289.jpg \n", 1242 | " inflating: tandt/train/images/00290.jpg \n", 1243 | " inflating: tandt/train/images/00291.jpg \n", 1244 | " inflating: tandt/train/images/00292.jpg \n", 1245 | " inflating: tandt/train/images/00293.jpg \n", 1246 | " inflating: tandt/train/images/00294.jpg \n", 1247 | " inflating: tandt/train/images/00295.jpg \n", 1248 | " inflating: tandt/train/images/00296.jpg \n", 1249 | " inflating: tandt/train/images/00297.jpg \n", 1250 | " inflating: tandt/train/images/00298.jpg \n", 1251 | " inflating: tandt/train/images/00299.jpg \n", 1252 | " inflating: tandt/train/images/00300.jpg \n", 1253 | " inflating: tandt/train/images/00301.jpg \n", 1254 | " creating: tandt/train/sparse/\n", 1255 | " creating: tandt/train/sparse/0/\n", 1256 | " inflating: tandt/train/sparse/0/cameras.bin \n", 1257 | " inflating: tandt/train/sparse/0/images.bin \n", 1258 | " inflating: tandt/train/sparse/0/points3D.bin \n", 1259 | " inflating: tandt/train/sparse/0/project.ini \n", 1260 | " creating: tandt/truck/\n", 1261 | " creating: tandt/truck/images/\n", 1262 | " inflating: tandt/truck/images/000001.jpg \n", 1263 | " inflating: tandt/truck/images/000002.jpg \n", 1264 | " inflating: tandt/truck/images/000003.jpg \n", 1265 | " inflating: tandt/truck/images/000004.jpg \n", 1266 | " inflating: tandt/truck/images/000005.jpg \n", 1267 | " inflating: tandt/truck/images/000006.jpg \n", 1268 | " inflating: tandt/truck/images/000007.jpg \n", 1269 | " inflating: tandt/truck/images/000008.jpg \n", 1270 | " inflating: tandt/truck/images/000009.jpg \n", 1271 | " inflating: tandt/truck/images/000010.jpg \n", 1272 | " inflating: tandt/truck/images/000011.jpg \n", 1273 | " inflating: tandt/truck/images/000012.jpg \n", 1274 | " inflating: tandt/truck/images/000013.jpg \n", 1275 | " inflating: tandt/truck/images/000014.jpg \n", 1276 | " inflating: tandt/truck/images/000015.jpg \n", 1277 | " inflating: tandt/truck/images/000016.jpg \n", 1278 | " inflating: tandt/truck/images/000017.jpg \n", 1279 | " inflating: tandt/truck/images/000018.jpg \n", 1280 | " inflating: tandt/truck/images/000019.jpg \n", 1281 | " inflating: tandt/truck/images/000020.jpg \n", 1282 | " inflating: tandt/truck/images/000021.jpg \n", 1283 | " inflating: tandt/truck/images/000022.jpg \n", 1284 | " inflating: tandt/truck/images/000023.jpg \n", 1285 | " inflating: tandt/truck/images/000024.jpg \n", 1286 | " inflating: tandt/truck/images/000025.jpg \n", 1287 | " inflating: tandt/truck/images/000026.jpg \n", 1288 | " inflating: tandt/truck/images/000027.jpg \n", 1289 | " inflating: tandt/truck/images/000028.jpg \n", 1290 | " inflating: tandt/truck/images/000029.jpg \n", 1291 | " inflating: tandt/truck/images/000030.jpg \n", 1292 | " inflating: tandt/truck/images/000031.jpg \n", 1293 | " inflating: tandt/truck/images/000032.jpg \n", 1294 | " inflating: tandt/truck/images/000033.jpg \n", 1295 | " inflating: tandt/truck/images/000034.jpg \n", 1296 | " inflating: tandt/truck/images/000035.jpg \n", 1297 | " inflating: tandt/truck/images/000036.jpg \n", 1298 | " inflating: tandt/truck/images/000037.jpg \n", 1299 | " inflating: tandt/truck/images/000038.jpg \n", 1300 | " inflating: tandt/truck/images/000039.jpg \n", 1301 | " inflating: tandt/truck/images/000040.jpg \n", 1302 | " inflating: tandt/truck/images/000041.jpg \n", 1303 | " inflating: tandt/truck/images/000042.jpg \n", 1304 | " inflating: tandt/truck/images/000043.jpg \n", 1305 | " inflating: tandt/truck/images/000044.jpg \n", 1306 | " inflating: tandt/truck/images/000045.jpg \n", 1307 | " inflating: tandt/truck/images/000046.jpg \n", 1308 | " inflating: tandt/truck/images/000047.jpg \n", 1309 | " inflating: tandt/truck/images/000048.jpg \n", 1310 | " inflating: tandt/truck/images/000049.jpg \n", 1311 | " inflating: tandt/truck/images/000050.jpg \n", 1312 | " inflating: tandt/truck/images/000051.jpg \n", 1313 | " inflating: tandt/truck/images/000052.jpg \n", 1314 | " inflating: tandt/truck/images/000053.jpg \n", 1315 | " inflating: tandt/truck/images/000054.jpg \n", 1316 | " inflating: tandt/truck/images/000055.jpg \n", 1317 | " inflating: tandt/truck/images/000056.jpg \n", 1318 | " inflating: tandt/truck/images/000057.jpg \n", 1319 | " inflating: tandt/truck/images/000058.jpg \n", 1320 | " inflating: tandt/truck/images/000059.jpg \n", 1321 | " inflating: tandt/truck/images/000060.jpg \n", 1322 | " inflating: tandt/truck/images/000061.jpg \n", 1323 | " inflating: tandt/truck/images/000062.jpg \n", 1324 | " inflating: tandt/truck/images/000063.jpg \n", 1325 | " inflating: tandt/truck/images/000064.jpg \n", 1326 | " inflating: tandt/truck/images/000065.jpg \n", 1327 | " inflating: tandt/truck/images/000066.jpg \n", 1328 | " inflating: tandt/truck/images/000067.jpg \n", 1329 | " inflating: tandt/truck/images/000068.jpg \n", 1330 | " inflating: tandt/truck/images/000069.jpg \n", 1331 | " inflating: tandt/truck/images/000070.jpg \n", 1332 | " inflating: tandt/truck/images/000071.jpg \n", 1333 | " inflating: tandt/truck/images/000072.jpg \n", 1334 | " inflating: tandt/truck/images/000073.jpg \n", 1335 | " inflating: tandt/truck/images/000074.jpg \n", 1336 | " inflating: tandt/truck/images/000075.jpg \n", 1337 | " inflating: tandt/truck/images/000076.jpg \n", 1338 | " inflating: tandt/truck/images/000077.jpg \n", 1339 | " inflating: tandt/truck/images/000078.jpg \n", 1340 | " inflating: tandt/truck/images/000079.jpg \n", 1341 | " inflating: tandt/truck/images/000080.jpg \n", 1342 | " inflating: tandt/truck/images/000081.jpg \n", 1343 | " inflating: tandt/truck/images/000082.jpg \n", 1344 | " inflating: tandt/truck/images/000083.jpg \n", 1345 | " inflating: tandt/truck/images/000084.jpg \n", 1346 | " inflating: tandt/truck/images/000085.jpg \n", 1347 | " inflating: tandt/truck/images/000086.jpg \n", 1348 | " inflating: tandt/truck/images/000087.jpg \n", 1349 | " inflating: tandt/truck/images/000088.jpg \n", 1350 | " inflating: tandt/truck/images/000089.jpg \n", 1351 | " inflating: tandt/truck/images/000090.jpg \n", 1352 | " inflating: tandt/truck/images/000091.jpg \n", 1353 | " inflating: tandt/truck/images/000092.jpg \n", 1354 | " inflating: tandt/truck/images/000093.jpg \n", 1355 | " inflating: tandt/truck/images/000094.jpg \n", 1356 | " inflating: tandt/truck/images/000095.jpg \n", 1357 | " inflating: tandt/truck/images/000096.jpg \n", 1358 | " inflating: tandt/truck/images/000097.jpg \n", 1359 | " inflating: tandt/truck/images/000098.jpg \n", 1360 | " inflating: tandt/truck/images/000099.jpg \n", 1361 | " inflating: tandt/truck/images/000100.jpg \n", 1362 | " inflating: tandt/truck/images/000101.jpg \n", 1363 | " inflating: tandt/truck/images/000102.jpg \n", 1364 | " inflating: tandt/truck/images/000103.jpg \n", 1365 | " inflating: tandt/truck/images/000104.jpg \n", 1366 | " inflating: tandt/truck/images/000105.jpg \n", 1367 | " inflating: tandt/truck/images/000106.jpg \n", 1368 | " inflating: tandt/truck/images/000107.jpg \n", 1369 | " inflating: tandt/truck/images/000108.jpg \n", 1370 | " inflating: tandt/truck/images/000109.jpg \n", 1371 | " inflating: tandt/truck/images/000110.jpg \n", 1372 | " inflating: tandt/truck/images/000111.jpg \n", 1373 | " inflating: tandt/truck/images/000112.jpg \n", 1374 | " inflating: tandt/truck/images/000113.jpg \n", 1375 | " inflating: tandt/truck/images/000114.jpg \n", 1376 | " inflating: tandt/truck/images/000115.jpg \n", 1377 | " inflating: tandt/truck/images/000116.jpg \n", 1378 | " inflating: tandt/truck/images/000117.jpg \n", 1379 | " inflating: tandt/truck/images/000118.jpg \n", 1380 | " inflating: tandt/truck/images/000119.jpg \n", 1381 | " inflating: tandt/truck/images/000120.jpg \n", 1382 | " inflating: tandt/truck/images/000121.jpg \n", 1383 | " inflating: tandt/truck/images/000122.jpg \n", 1384 | " inflating: tandt/truck/images/000123.jpg \n", 1385 | " inflating: tandt/truck/images/000124.jpg \n", 1386 | " inflating: tandt/truck/images/000125.jpg \n", 1387 | " inflating: tandt/truck/images/000126.jpg \n", 1388 | " inflating: tandt/truck/images/000127.jpg \n", 1389 | " inflating: tandt/truck/images/000128.jpg \n", 1390 | " inflating: tandt/truck/images/000129.jpg \n", 1391 | " inflating: tandt/truck/images/000130.jpg \n", 1392 | " inflating: tandt/truck/images/000131.jpg \n", 1393 | " inflating: tandt/truck/images/000132.jpg \n", 1394 | " inflating: tandt/truck/images/000133.jpg \n", 1395 | " inflating: tandt/truck/images/000134.jpg \n", 1396 | " inflating: tandt/truck/images/000135.jpg \n", 1397 | " inflating: tandt/truck/images/000136.jpg \n", 1398 | " inflating: tandt/truck/images/000137.jpg \n", 1399 | " inflating: tandt/truck/images/000138.jpg \n", 1400 | " inflating: tandt/truck/images/000139.jpg \n", 1401 | " inflating: tandt/truck/images/000140.jpg \n", 1402 | " inflating: tandt/truck/images/000141.jpg \n", 1403 | " inflating: tandt/truck/images/000142.jpg \n", 1404 | " inflating: tandt/truck/images/000143.jpg \n", 1405 | " inflating: tandt/truck/images/000144.jpg \n", 1406 | " inflating: tandt/truck/images/000145.jpg \n", 1407 | " inflating: tandt/truck/images/000146.jpg \n", 1408 | " inflating: tandt/truck/images/000147.jpg \n", 1409 | " inflating: tandt/truck/images/000148.jpg \n", 1410 | " inflating: tandt/truck/images/000149.jpg \n", 1411 | " inflating: tandt/truck/images/000150.jpg \n", 1412 | " inflating: tandt/truck/images/000151.jpg \n", 1413 | " inflating: tandt/truck/images/000152.jpg \n", 1414 | " inflating: tandt/truck/images/000153.jpg \n", 1415 | " inflating: tandt/truck/images/000154.jpg \n", 1416 | " inflating: tandt/truck/images/000155.jpg \n", 1417 | " inflating: tandt/truck/images/000156.jpg \n", 1418 | " inflating: tandt/truck/images/000157.jpg \n", 1419 | " inflating: tandt/truck/images/000158.jpg \n", 1420 | " inflating: tandt/truck/images/000159.jpg \n", 1421 | " inflating: tandt/truck/images/000160.jpg \n", 1422 | " inflating: tandt/truck/images/000161.jpg \n", 1423 | " inflating: tandt/truck/images/000162.jpg \n", 1424 | " inflating: tandt/truck/images/000163.jpg \n", 1425 | " inflating: tandt/truck/images/000164.jpg \n", 1426 | " inflating: tandt/truck/images/000165.jpg \n", 1427 | " inflating: tandt/truck/images/000166.jpg \n", 1428 | " inflating: tandt/truck/images/000167.jpg \n", 1429 | " inflating: tandt/truck/images/000168.jpg \n", 1430 | " inflating: tandt/truck/images/000169.jpg \n", 1431 | " inflating: tandt/truck/images/000170.jpg \n", 1432 | " inflating: tandt/truck/images/000171.jpg \n", 1433 | " inflating: tandt/truck/images/000172.jpg \n", 1434 | " inflating: tandt/truck/images/000173.jpg \n", 1435 | " inflating: tandt/truck/images/000174.jpg \n", 1436 | " inflating: tandt/truck/images/000175.jpg \n", 1437 | " inflating: tandt/truck/images/000176.jpg \n", 1438 | " inflating: tandt/truck/images/000177.jpg \n", 1439 | " inflating: tandt/truck/images/000178.jpg \n", 1440 | " inflating: tandt/truck/images/000179.jpg \n", 1441 | " inflating: tandt/truck/images/000180.jpg \n", 1442 | " inflating: tandt/truck/images/000181.jpg \n", 1443 | " inflating: tandt/truck/images/000182.jpg \n", 1444 | " inflating: tandt/truck/images/000183.jpg \n", 1445 | " inflating: tandt/truck/images/000184.jpg \n", 1446 | " inflating: tandt/truck/images/000185.jpg \n", 1447 | " inflating: tandt/truck/images/000186.jpg \n", 1448 | " inflating: tandt/truck/images/000187.jpg \n", 1449 | " inflating: tandt/truck/images/000188.jpg \n", 1450 | " inflating: tandt/truck/images/000189.jpg \n", 1451 | " inflating: tandt/truck/images/000190.jpg \n", 1452 | " inflating: tandt/truck/images/000191.jpg \n", 1453 | " inflating: tandt/truck/images/000192.jpg \n", 1454 | " inflating: tandt/truck/images/000193.jpg \n", 1455 | " inflating: tandt/truck/images/000194.jpg \n", 1456 | " inflating: tandt/truck/images/000195.jpg \n", 1457 | " inflating: tandt/truck/images/000196.jpg \n", 1458 | " inflating: tandt/truck/images/000197.jpg \n", 1459 | " inflating: tandt/truck/images/000198.jpg \n", 1460 | " inflating: tandt/truck/images/000199.jpg \n", 1461 | " inflating: tandt/truck/images/000200.jpg \n", 1462 | " inflating: tandt/truck/images/000201.jpg \n", 1463 | " inflating: tandt/truck/images/000202.jpg \n", 1464 | " inflating: tandt/truck/images/000203.jpg \n", 1465 | " inflating: tandt/truck/images/000204.jpg \n", 1466 | " inflating: tandt/truck/images/000205.jpg \n", 1467 | " inflating: tandt/truck/images/000206.jpg \n", 1468 | " inflating: tandt/truck/images/000207.jpg \n", 1469 | " inflating: tandt/truck/images/000208.jpg \n", 1470 | " inflating: tandt/truck/images/000209.jpg \n", 1471 | " inflating: tandt/truck/images/000210.jpg \n", 1472 | " inflating: tandt/truck/images/000211.jpg \n", 1473 | " inflating: tandt/truck/images/000212.jpg \n", 1474 | " inflating: tandt/truck/images/000213.jpg \n", 1475 | " inflating: tandt/truck/images/000214.jpg \n", 1476 | " inflating: tandt/truck/images/000215.jpg \n", 1477 | " inflating: tandt/truck/images/000216.jpg \n", 1478 | " inflating: tandt/truck/images/000217.jpg \n", 1479 | " inflating: tandt/truck/images/000218.jpg \n", 1480 | " inflating: tandt/truck/images/000219.jpg \n", 1481 | " inflating: tandt/truck/images/000220.jpg \n", 1482 | " inflating: tandt/truck/images/000221.jpg \n", 1483 | " inflating: tandt/truck/images/000222.jpg \n", 1484 | " inflating: tandt/truck/images/000223.jpg \n", 1485 | " inflating: tandt/truck/images/000224.jpg \n", 1486 | " inflating: tandt/truck/images/000225.jpg \n", 1487 | " inflating: tandt/truck/images/000226.jpg \n", 1488 | " inflating: tandt/truck/images/000227.jpg \n", 1489 | " inflating: tandt/truck/images/000228.jpg \n", 1490 | " inflating: tandt/truck/images/000229.jpg \n", 1491 | " inflating: tandt/truck/images/000230.jpg \n", 1492 | " inflating: tandt/truck/images/000231.jpg \n", 1493 | " inflating: tandt/truck/images/000232.jpg \n", 1494 | " inflating: tandt/truck/images/000233.jpg \n", 1495 | " inflating: tandt/truck/images/000234.jpg \n", 1496 | " inflating: tandt/truck/images/000235.jpg \n", 1497 | " inflating: tandt/truck/images/000236.jpg \n", 1498 | " inflating: tandt/truck/images/000237.jpg \n", 1499 | " inflating: tandt/truck/images/000238.jpg \n", 1500 | " inflating: tandt/truck/images/000239.jpg \n", 1501 | " inflating: tandt/truck/images/000240.jpg \n", 1502 | " inflating: tandt/truck/images/000241.jpg \n", 1503 | " inflating: tandt/truck/images/000242.jpg \n", 1504 | " inflating: tandt/truck/images/000243.jpg \n", 1505 | " inflating: tandt/truck/images/000244.jpg \n", 1506 | " inflating: tandt/truck/images/000245.jpg \n", 1507 | " inflating: tandt/truck/images/000246.jpg \n", 1508 | " inflating: tandt/truck/images/000247.jpg \n", 1509 | " inflating: tandt/truck/images/000248.jpg \n", 1510 | " inflating: tandt/truck/images/000249.jpg \n", 1511 | " inflating: tandt/truck/images/000250.jpg \n", 1512 | " inflating: tandt/truck/images/000251.jpg \n", 1513 | " creating: tandt/truck/sparse/\n", 1514 | " creating: tandt/truck/sparse/0/\n", 1515 | " inflating: tandt/truck/sparse/0/cameras.bin \n", 1516 | " inflating: tandt/truck/sparse/0/images.bin \n", 1517 | " inflating: tandt/truck/sparse/0/points3D.bin \n", 1518 | " inflating: tandt/truck/sparse/0/project.ini \n", 1519 | "Optimizing \n", 1520 | "Output folder: ./output/74651113-d [28/09 03:17:56]\n", 1521 | "Tensorboard not available: not logging progress [28/09 03:17:56]\n", 1522 | "Reading camera 301/301 [28/09 03:17:58]\n", 1523 | "Converting point3d.bin to .ply, will happen only the first time you open the scene. [28/09 03:17:58]\n", 1524 | "Loading Training Cameras [28/09 03:18:00]\n", 1525 | "Loading Test Cameras [28/09 03:18:11]\n", 1526 | "Number of points at initialisation : 182686 [28/09 03:18:11]\n", 1527 | "Training progress: 23% 7000/30000 [06:20<24:35, 15.58it/s, Loss=0.0879241]\n", 1528 | "[ITER 7000] Evaluating train: L1 0.06889118626713753 PSNR 19.94771385192871 [28/09 03:24:31]\n", 1529 | "\n", 1530 | "[ITER 7000] Saving Gaussians [28/09 03:24:31]\n", 1531 | "Training progress: 44% 13090/30000 [14:04<21:51, 12.89it/s, Loss=0.0894985]" 1532 | ] 1533 | } 1534 | ] 1535 | } 1536 | ] 1537 | } --------------------------------------------------------------------------------