Annexes.lyx 64 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549
  1. #LyX 2.0 created this file. For more info see http://www.lyx.org/
  2. \lyxformat 413
  3. \begin_document
  4. \begin_header
  5. \textclass book
  6. \use_default_options false
  7. \maintain_unincluded_children false
  8. \language french
  9. \language_package default
  10. \inputencoding latin9
  11. \fontencoding T1
  12. \font_roman default
  13. \font_sans helvet
  14. \font_typewriter default
  15. \font_default_family sfdefault
  16. \use_non_tex_fonts false
  17. \font_sc false
  18. \font_osf false
  19. \font_sf_scale 100
  20. \font_tt_scale 100
  21. \graphics default
  22. \default_output_format default
  23. \output_sync 0
  24. \bibtex_command default
  25. \index_command default
  26. \paperfontsize 10
  27. \spacing single
  28. \use_hyperref true
  29. \pdf_bookmarks true
  30. \pdf_bookmarksnumbered false
  31. \pdf_bookmarksopen false
  32. \pdf_bookmarksopenlevel 1
  33. \pdf_breaklinks false
  34. \pdf_pdfborder false
  35. \pdf_colorlinks true
  36. \pdf_backref false
  37. \pdf_pdfusetitle true
  38. \pdf_quoted_options "linkcolor=blue"
  39. \papersize a4paper
  40. \use_geometry true
  41. \use_amsmath 1
  42. \use_esint 1
  43. \use_mhchem 0
  44. \use_mathdots 0
  45. \cite_engine basic
  46. \use_bibtopic false
  47. \use_indices false
  48. \paperorientation portrait
  49. \suppress_date true
  50. \use_refstyle 0
  51. \index Index
  52. \shortcut idx
  53. \color #008000
  54. \end_index
  55. \leftmargin 1.5cm
  56. \topmargin 3cm
  57. \rightmargin 1.5cm
  58. \bottommargin 3cm
  59. \secnumdepth 3
  60. \tocdepth 3
  61. \paragraph_separation indent
  62. \paragraph_indentation default
  63. \quotes_language french
  64. \papercolumns 1
  65. \papersides 2
  66. \paperpagestyle fancy
  67. \tracking_changes false
  68. \output_changes false
  69. \html_math_output 0
  70. \html_css_as_file 0
  71. \html_be_strict false
  72. \end_header
  73. \begin_body
  74. \begin_layout Chapter
  75. Annexes
  76. \end_layout
  77. \begin_layout Standard
  78. \begin_inset CommandInset label
  79. LatexCommand label
  80. name "cha:Annexes"
  81. \end_inset
  82. \end_layout
  83. \begin_layout Section
  84. Formats de fichiers
  85. \end_layout
  86. \begin_layout Standard
  87. \begin_inset CommandInset label
  88. LatexCommand label
  89. name "section:fileFormats"
  90. \end_inset
  91. \end_layout
  92. \begin_layout Subsection
  93. Fichiers de primitives 2D/3D reconnus
  94. \begin_inset Index idx
  95. status collapsed
  96. \begin_layout Plain Layout
  97. fichiers!formats
  98. \end_layout
  99. \end_inset
  100. \begin_inset Index idx
  101. status collapsed
  102. \begin_layout Plain Layout
  103. fichiers!ouvrir|see
  104. \begin_inset ERT
  105. status collapsed
  106. \begin_layout Plain Layout
  107. {
  108. \end_layout
  109. \end_inset
  110. ouvrir des objets
  111. \begin_inset ERT
  112. status collapsed
  113. \begin_layout Plain Layout
  114. }
  115. \end_layout
  116. \end_inset
  117. \end_layout
  118. \end_inset
  119. \begin_inset Index idx
  120. status collapsed
  121. \begin_layout Plain Layout
  122. ouvrir des objets
  123. \end_layout
  124. \end_inset
  125. \end_layout
  126. \begin_layout Standard
  127. \align center
  128. \begin_inset Tabular
  129. <lyxtabular version="3" rows="13" columns="10">
  130. <features tabularvalignment="middle">
  131. <column alignment="left" valignment="middle" width="10text%">
  132. <column alignment="left" valignment="middle" width="7text%">
  133. <column alignment="center" valignment="middle" width="5text%">
  134. <column alignment="center" valignment="middle" width="5text%">
  135. <column alignment="center" valignment="middle" width="5text%">
  136. <column alignment="center" valignment="middle" width="5text%">
  137. <column alignment="center" valignment="middle" width="5text%">
  138. <column alignment="center" valignment="middle" width="5text%">
  139. <column alignment="center" valignment="middle" width="5text%">
  140. <column alignment="left" valignment="middle" width="15text%">
  141. <row>
  142. <cell alignment="left" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
  143. \begin_inset Text
  144. \begin_layout Plain Layout
  145. Extension
  146. \end_layout
  147. \end_inset
  148. </cell>
  149. <cell alignment="left" valignment="top" topline="true" bottomline="true" rightline="true" usebox="none">
  150. \begin_inset Text
  151. \begin_layout Plain Layout
  152. Type
  153. \end_layout
  154. \end_inset
  155. </cell>
  156. <cell alignment="center" valignment="top" topline="true" bottomline="true" rightline="true" usebox="none">
  157. \begin_inset Text
  158. \begin_layout Plain Layout
  159. P
  160. \end_layout
  161. \end_inset
  162. </cell>
  163. <cell alignment="center" valignment="top" topline="true" bottomline="true" rightline="true" usebox="none">
  164. \begin_inset Text
  165. \begin_layout Plain Layout
  166. M
  167. \end_layout
  168. \end_inset
  169. </cell>
  170. <cell alignment="center" valignment="top" topline="true" bottomline="true" rightline="true" usebox="none">
  171. \begin_inset Text
  172. \begin_layout Plain Layout
  173. RGB
  174. \end_layout
  175. \end_inset
  176. </cell>
  177. <cell alignment="center" valignment="top" topline="true" bottomline="true" rightline="true" usebox="none">
  178. \begin_inset Text
  179. \begin_layout Plain Layout
  180. NG
  181. \end_layout
  182. \end_inset
  183. </cell>
  184. <cell alignment="center" valignment="top" topline="true" bottomline="true" rightline="true" usebox="none">
  185. \begin_inset Text
  186. \begin_layout Plain Layout
  187. N
  188. \end_layout
  189. \end_inset
  190. </cell>
  191. <cell alignment="center" valignment="top" topline="true" bottomline="true" rightline="true" usebox="none">
  192. \begin_inset Text
  193. \begin_layout Plain Layout
  194. S
  195. \end_layout
  196. \end_inset
  197. </cell>
  198. <cell alignment="center" valignment="top" topline="true" bottomline="true" rightline="true" usebox="none">
  199. \begin_inset Text
  200. \begin_layout Plain Layout
  201. Autre
  202. \end_layout
  203. \end_inset
  204. </cell>
  205. <cell alignment="left" valignment="top" topline="true" bottomline="true" rightline="true" usebox="none">
  206. \begin_inset Text
  207. \begin_layout Plain Layout
  208. Description
  209. \end_layout
  210. \end_inset
  211. </cell>
  212. </row>
  213. <row>
  214. <cell alignment="left" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
  215. \begin_inset Text
  216. \begin_layout Plain Layout
  217. asc, txt, neu, xyz, etc.
  218. \end_layout
  219. \end_inset
  220. </cell>
  221. <cell alignment="left" valignment="top" topline="true" rightline="true" usebox="none">
  222. \begin_inset Text
  223. \begin_layout Plain Layout
  224. ascii
  225. \end_layout
  226. \end_inset
  227. </cell>
  228. <cell alignment="center" valignment="top" topline="true" rightline="true" usebox="none">
  229. \begin_inset Text
  230. \begin_layout Plain Layout
  231. \end_layout
  232. \end_inset
  233. </cell>
  234. <cell alignment="center" valignment="top" topline="true" rightline="true" usebox="none">
  235. \begin_inset Text
  236. \begin_layout Plain Layout
  237. \end_layout
  238. \end_inset
  239. </cell>
  240. <cell alignment="center" valignment="top" topline="true" rightline="true" usebox="none">
  241. \begin_inset Text
  242. \begin_layout Plain Layout
  243. \end_layout
  244. \end_inset
  245. </cell>
  246. <cell alignment="center" valignment="top" topline="true" rightline="true" usebox="none">
  247. \begin_inset Text
  248. \begin_layout Plain Layout
  249. \end_layout
  250. \end_inset
  251. </cell>
  252. <cell alignment="center" valignment="top" topline="true" rightline="true" usebox="none">
  253. \begin_inset Text
  254. \begin_layout Plain Layout
  255. \end_layout
  256. \end_inset
  257. </cell>
  258. <cell alignment="center" valignment="top" topline="true" rightline="true" usebox="none">
  259. \begin_inset Text
  260. \begin_layout Plain Layout
  261. \end_layout
  262. \end_inset
  263. </cell>
  264. <cell alignment="center" valignment="top" topline="true" rightline="true" usebox="none">
  265. \begin_inset Text
  266. \begin_layout Plain Layout
  267. \end_layout
  268. \end_inset
  269. </cell>
  270. <cell alignment="left" valignment="top" topline="true" rightline="true" usebox="none">
  271. \begin_inset Text
  272. \begin_layout Plain Layout
  273. nuage de points ASCII
  274. \end_layout
  275. \end_inset
  276. </cell>
  277. </row>
  278. <row>
  279. <cell alignment="left" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
  280. \begin_inset Text
  281. \begin_layout Plain Layout
  282. bin
  283. \end_layout
  284. \end_inset
  285. </cell>
  286. <cell alignment="left" valignment="top" topline="true" rightline="true" usebox="none">
  287. \begin_inset Text
  288. \begin_layout Plain Layout
  289. binaire
  290. \end_layout
  291. \end_inset
  292. </cell>
  293. <cell alignment="center" valignment="top" topline="true" rightline="true" usebox="none">
  294. \begin_inset Text
  295. \begin_layout Plain Layout
  296. \end_layout
  297. \end_inset
  298. </cell>
  299. <cell alignment="center" valignment="top" topline="true" rightline="true" usebox="none">
  300. \begin_inset Text
  301. \begin_layout Plain Layout
  302. \end_layout
  303. \end_inset
  304. </cell>
  305. <cell alignment="center" valignment="top" topline="true" rightline="true" usebox="none">
  306. \begin_inset Text
  307. \begin_layout Plain Layout
  308. \end_layout
  309. \end_inset
  310. </cell>
  311. <cell alignment="center" valignment="top" topline="true" rightline="true" usebox="none">
  312. \begin_inset Text
  313. \begin_layout Plain Layout
  314. \end_layout
  315. \end_inset
  316. </cell>
  317. <cell alignment="center" valignment="top" topline="true" rightline="true" usebox="none">
  318. \begin_inset Text
  319. \begin_layout Plain Layout
  320. \end_layout
  321. \end_inset
  322. </cell>
  323. <cell alignment="center" valignment="top" topline="true" rightline="true" usebox="none">
  324. \begin_inset Text
  325. \begin_layout Plain Layout
  326. \end_layout
  327. \end_inset
  328. </cell>
  329. <cell alignment="center" valignment="top" topline="true" rightline="true" usebox="none">
  330. \begin_inset Text
  331. \begin_layout Plain Layout
  332. \end_layout
  333. \end_inset
  334. </cell>
  335. <cell alignment="left" valignment="top" topline="true" rightline="true" usebox="none">
  336. \begin_inset Text
  337. \begin_layout Plain Layout
  338. toutes entités, format binaire spécifique à CloudCompare
  339. \end_layout
  340. \end_inset
  341. </cell>
  342. </row>
  343. <row>
  344. <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
  345. \begin_inset Text
  346. \begin_layout Plain Layout
  347. las
  348. \end_layout
  349. \end_inset
  350. </cell>
  351. <cell alignment="center" valignment="top" topline="true" rightline="true" usebox="none">
  352. \begin_inset Text
  353. \begin_layout Plain Layout
  354. binaire
  355. \end_layout
  356. \end_inset
  357. </cell>
  358. <cell alignment="center" valignment="top" topline="true" rightline="true" usebox="none">
  359. \begin_inset Text
  360. \begin_layout Plain Layout
  361. \end_layout
  362. \end_inset
  363. </cell>
  364. <cell alignment="center" valignment="top" topline="true" rightline="true" usebox="none">
  365. \begin_inset Text
  366. \begin_layout Plain Layout
  367. \end_layout
  368. \end_inset
  369. </cell>
  370. <cell alignment="center" valignment="top" topline="true" rightline="true" usebox="none">
  371. \begin_inset Text
  372. \begin_layout Plain Layout
  373. \end_layout
  374. \end_inset
  375. </cell>
  376. <cell alignment="center" valignment="top" topline="true" rightline="true" usebox="none">
  377. \begin_inset Text
  378. \begin_layout Plain Layout
  379. \end_layout
  380. \end_inset
  381. </cell>
  382. <cell alignment="center" valignment="top" topline="true" rightline="true" usebox="none">
  383. \begin_inset Text
  384. \begin_layout Plain Layout
  385. \end_layout
  386. \end_inset
  387. </cell>
  388. <cell alignment="center" valignment="top" topline="true" rightline="true" usebox="none">
  389. \begin_inset Text
  390. \begin_layout Plain Layout
  391. \end_layout
  392. \end_inset
  393. </cell>
  394. <cell alignment="center" valignment="top" topline="true" rightline="true" usebox="none">
  395. \begin_inset Text
  396. \begin_layout Plain Layout
  397. \end_layout
  398. \end_inset
  399. </cell>
  400. <cell alignment="center" valignment="top" topline="true" rightline="true" usebox="none">
  401. \begin_inset Text
  402. \begin_layout Plain Layout
  403. nuage de points au format LAS (ASPRS)
  404. \end_layout
  405. \end_inset
  406. </cell>
  407. </row>
  408. <row>
  409. <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
  410. \begin_inset Text
  411. \begin_layout Plain Layout
  412. e57
  413. \end_layout
  414. \end_inset
  415. </cell>
  416. <cell alignment="center" valignment="top" topline="true" rightline="true" usebox="none">
  417. \begin_inset Text
  418. \begin_layout Plain Layout
  419. binaire
  420. \end_layout
  421. \end_inset
  422. </cell>
  423. <cell alignment="center" valignment="top" topline="true" rightline="true" usebox="none">
  424. \begin_inset Text
  425. \begin_layout Plain Layout
  426. \end_layout
  427. \end_inset
  428. </cell>
  429. <cell alignment="center" valignment="top" topline="true" rightline="true" usebox="none">
  430. \begin_inset Text
  431. \begin_layout Plain Layout
  432. \end_layout
  433. \end_inset
  434. </cell>
  435. <cell alignment="center" valignment="top" topline="true" rightline="true" usebox="none">
  436. \begin_inset Text
  437. \begin_layout Plain Layout
  438. \end_layout
  439. \end_inset
  440. </cell>
  441. <cell alignment="center" valignment="top" topline="true" rightline="true" usebox="none">
  442. \begin_inset Text
  443. \begin_layout Plain Layout
  444. \end_layout
  445. \end_inset
  446. </cell>
  447. <cell alignment="center" valignment="top" topline="true" rightline="true" usebox="none">
  448. \begin_inset Text
  449. \begin_layout Plain Layout
  450. \end_layout
  451. \end_inset
  452. </cell>
  453. <cell alignment="center" valignment="top" topline="true" rightline="true" usebox="none">
  454. \begin_inset Text
  455. \begin_layout Plain Layout
  456. \end_layout
  457. \end_inset
  458. </cell>
  459. <cell alignment="center" valignment="top" topline="true" rightline="true" usebox="none">
  460. \begin_inset Text
  461. \begin_layout Plain Layout
  462. \end_layout
  463. \end_inset
  464. </cell>
  465. <cell alignment="center" valignment="top" topline="true" rightline="true" usebox="none">
  466. \begin_inset Text
  467. \begin_layout Plain Layout
  468. nuage(s) de points au format E57 avec photos calibrées
  469. \end_layout
  470. \end_inset
  471. </cell>
  472. </row>
  473. <row>
  474. <cell alignment="left" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
  475. \begin_inset Text
  476. \begin_layout Plain Layout
  477. ply
  478. \end_layout
  479. \end_inset
  480. </cell>
  481. <cell alignment="left" valignment="top" topline="true" rightline="true" usebox="none">
  482. \begin_inset Text
  483. \begin_layout Plain Layout
  484. ascii / binaire
  485. \end_layout
  486. \end_inset
  487. </cell>
  488. <cell alignment="center" valignment="top" topline="true" rightline="true" usebox="none">
  489. \begin_inset Text
  490. \begin_layout Plain Layout
  491. \end_layout
  492. \end_inset
  493. </cell>
  494. <cell alignment="center" valignment="top" topline="true" rightline="true" usebox="none">
  495. \begin_inset Text
  496. \begin_layout Plain Layout
  497. \end_layout
  498. \end_inset
  499. </cell>
  500. <cell alignment="center" valignment="top" topline="true" rightline="true" usebox="none">
  501. \begin_inset Text
  502. \begin_layout Plain Layout
  503. \end_layout
  504. \end_inset
  505. </cell>
  506. <cell alignment="center" valignment="top" topline="true" rightline="true" usebox="none">
  507. \begin_inset Text
  508. \begin_layout Plain Layout
  509. \end_layout
  510. \end_inset
  511. </cell>
  512. <cell alignment="center" valignment="top" topline="true" rightline="true" usebox="none">
  513. \begin_inset Text
  514. \begin_layout Plain Layout
  515. \end_layout
  516. \end_inset
  517. </cell>
  518. <cell alignment="center" valignment="top" topline="true" rightline="true" usebox="none">
  519. \begin_inset Text
  520. \begin_layout Plain Layout
  521. \end_layout
  522. \end_inset
  523. </cell>
  524. <cell alignment="center" valignment="top" topline="true" rightline="true" usebox="none">
  525. \begin_inset Text
  526. \begin_layout Plain Layout
  527. \end_layout
  528. \end_inset
  529. </cell>
  530. <cell alignment="left" valignment="top" topline="true" rightline="true" usebox="none">
  531. \begin_inset Text
  532. \begin_layout Plain Layout
  533. maillage (Stanford)
  534. \end_layout
  535. \end_inset
  536. </cell>
  537. </row>
  538. <row>
  539. <cell alignment="left" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
  540. \begin_inset Text
  541. \begin_layout Plain Layout
  542. obj
  543. \end_layout
  544. \end_inset
  545. </cell>
  546. <cell alignment="left" valignment="top" topline="true" rightline="true" usebox="none">
  547. \begin_inset Text
  548. \begin_layout Plain Layout
  549. ascii
  550. \end_layout
  551. \end_inset
  552. </cell>
  553. <cell alignment="center" valignment="top" topline="true" rightline="true" usebox="none">
  554. \begin_inset Text
  555. \begin_layout Plain Layout
  556. \end_layout
  557. \end_inset
  558. </cell>
  559. <cell alignment="center" valignment="top" topline="true" rightline="true" usebox="none">
  560. \begin_inset Text
  561. \begin_layout Plain Layout
  562. \end_layout
  563. \end_inset
  564. </cell>
  565. <cell alignment="center" valignment="top" topline="true" rightline="true" usebox="none">
  566. \begin_inset Text
  567. \begin_layout Plain Layout
  568. \end_layout
  569. \end_inset
  570. </cell>
  571. <cell alignment="center" valignment="top" topline="true" rightline="true" usebox="none">
  572. \begin_inset Text
  573. \begin_layout Plain Layout
  574. \end_layout
  575. \end_inset
  576. </cell>
  577. <cell alignment="center" valignment="top" topline="true" rightline="true" usebox="none">
  578. \begin_inset Text
  579. \begin_layout Plain Layout
  580. \end_layout
  581. \end_inset
  582. </cell>
  583. <cell alignment="center" valignment="top" topline="true" rightline="true" usebox="none">
  584. \begin_inset Text
  585. \begin_layout Plain Layout
  586. \end_layout
  587. \end_inset
  588. </cell>
  589. <cell alignment="center" valignment="top" topline="true" rightline="true" usebox="none">
  590. \begin_inset Text
  591. \begin_layout Plain Layout
  592. \end_layout
  593. \end_inset
  594. </cell>
  595. <cell alignment="left" valignment="top" topline="true" rightline="true" usebox="none">
  596. \begin_inset Text
  597. \begin_layout Plain Layout
  598. maillage (Wavefront)
  599. \end_layout
  600. \end_inset
  601. </cell>
  602. </row>
  603. <row>
  604. <cell alignment="left" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
  605. \begin_inset Text
  606. \begin_layout Plain Layout
  607. vtk
  608. \end_layout
  609. \end_inset
  610. </cell>
  611. <cell alignment="left" valignment="top" topline="true" rightline="true" usebox="none">
  612. \begin_inset Text
  613. \begin_layout Plain Layout
  614. ascii
  615. \end_layout
  616. \end_inset
  617. </cell>
  618. <cell alignment="center" valignment="top" topline="true" rightline="true" usebox="none">
  619. \begin_inset Text
  620. \begin_layout Plain Layout
  621. \end_layout
  622. \end_inset
  623. </cell>
  624. <cell alignment="center" valignment="top" topline="true" rightline="true" usebox="none">
  625. \begin_inset Text
  626. \begin_layout Plain Layout
  627. \end_layout
  628. \end_inset
  629. </cell>
  630. <cell alignment="center" valignment="top" topline="true" rightline="true" usebox="none">
  631. \begin_inset Text
  632. \begin_layout Plain Layout
  633. \end_layout
  634. \end_inset
  635. </cell>
  636. <cell alignment="center" valignment="top" topline="true" rightline="true" usebox="none">
  637. \begin_inset Text
  638. \begin_layout Plain Layout
  639. \end_layout
  640. \end_inset
  641. </cell>
  642. <cell alignment="center" valignment="top" topline="true" rightline="true" usebox="none">
  643. \begin_inset Text
  644. \begin_layout Plain Layout
  645. \end_layout
  646. \end_inset
  647. </cell>
  648. <cell alignment="center" valignment="top" topline="true" rightline="true" usebox="none">
  649. \begin_inset Text
  650. \begin_layout Plain Layout
  651. \end_layout
  652. \end_inset
  653. </cell>
  654. <cell alignment="center" valignment="top" topline="true" rightline="true" usebox="none">
  655. \begin_inset Text
  656. \begin_layout Plain Layout
  657. \end_layout
  658. \end_inset
  659. </cell>
  660. <cell alignment="left" valignment="top" topline="true" rightline="true" usebox="none">
  661. \begin_inset Text
  662. \begin_layout Plain Layout
  663. nuage(s) ou maillage(s) VTK
  664. \end_layout
  665. \end_inset
  666. </cell>
  667. </row>
  668. <row>
  669. <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
  670. \begin_inset Text
  671. \begin_layout Plain Layout
  672. ma
  673. \end_layout
  674. \end_inset
  675. </cell>
  676. <cell alignment="center" valignment="top" topline="true" rightline="true" usebox="none">
  677. \begin_inset Text
  678. \begin_layout Plain Layout
  679. ascii
  680. \end_layout
  681. \end_inset
  682. </cell>
  683. <cell alignment="center" valignment="top" topline="true" rightline="true" usebox="none">
  684. \begin_inset Text
  685. \begin_layout Plain Layout
  686. \end_layout
  687. \end_inset
  688. </cell>
  689. <cell alignment="center" valignment="top" topline="true" rightline="true" usebox="none">
  690. \begin_inset Text
  691. \begin_layout Plain Layout
  692. \end_layout
  693. \end_inset
  694. </cell>
  695. <cell alignment="center" valignment="top" topline="true" rightline="true" usebox="none">
  696. \begin_inset Text
  697. \begin_layout Plain Layout
  698. \end_layout
  699. \end_inset
  700. </cell>
  701. <cell alignment="center" valignment="top" topline="true" rightline="true" usebox="none">
  702. \begin_inset Text
  703. \begin_layout Plain Layout
  704. \end_layout
  705. \end_inset
  706. </cell>
  707. <cell alignment="center" valignment="top" topline="true" rightline="true" usebox="none">
  708. \begin_inset Text
  709. \begin_layout Plain Layout
  710. \end_layout
  711. \end_inset
  712. </cell>
  713. <cell alignment="center" valignment="top" topline="true" rightline="true" usebox="none">
  714. \begin_inset Text
  715. \begin_layout Plain Layout
  716. \end_layout
  717. \end_inset
  718. </cell>
  719. <cell alignment="center" valignment="top" topline="true" rightline="true" usebox="none">
  720. \begin_inset Text
  721. \begin_layout Plain Layout
  722. \end_layout
  723. \end_inset
  724. </cell>
  725. <cell alignment="center" valignment="top" topline="true" rightline="true" usebox="none">
  726. \begin_inset Text
  727. \begin_layout Plain Layout
  728. maillage MAYA
  729. \end_layout
  730. \end_inset
  731. </cell>
  732. </row>
  733. <row>
  734. <cell alignment="left" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
  735. \begin_inset Text
  736. \begin_layout Plain Layout
  737. soi
  738. \end_layout
  739. \end_inset
  740. </cell>
  741. <cell alignment="left" valignment="top" topline="true" rightline="true" usebox="none">
  742. \begin_inset Text
  743. \begin_layout Plain Layout
  744. ascii
  745. \end_layout
  746. \end_inset
  747. </cell>
  748. <cell alignment="center" valignment="top" topline="true" rightline="true" usebox="none">
  749. \begin_inset Text
  750. \begin_layout Plain Layout
  751. \end_layout
  752. \end_inset
  753. </cell>
  754. <cell alignment="center" valignment="top" topline="true" rightline="true" usebox="none">
  755. \begin_inset Text
  756. \begin_layout Plain Layout
  757. \end_layout
  758. \end_inset
  759. </cell>
  760. <cell alignment="center" valignment="top" topline="true" rightline="true" usebox="none">
  761. \begin_inset Text
  762. \begin_layout Plain Layout
  763. \end_layout
  764. \end_inset
  765. </cell>
  766. <cell alignment="center" valignment="top" topline="true" rightline="true" usebox="none">
  767. \begin_inset Text
  768. \begin_layout Plain Layout
  769. \end_layout
  770. \end_inset
  771. </cell>
  772. <cell alignment="center" valignment="top" topline="true" rightline="true" usebox="none">
  773. \begin_inset Text
  774. \begin_layout Plain Layout
  775. \end_layout
  776. \end_inset
  777. </cell>
  778. <cell alignment="center" valignment="top" topline="true" rightline="true" usebox="none">
  779. \begin_inset Text
  780. \begin_layout Plain Layout
  781. \end_layout
  782. \end_inset
  783. </cell>
  784. <cell alignment="center" valignment="top" topline="true" rightline="true" usebox="none">
  785. \begin_inset Text
  786. \begin_layout Plain Layout
  787. \end_layout
  788. \end_inset
  789. </cell>
  790. <cell alignment="left" valignment="top" topline="true" rightline="true" usebox="none">
  791. \begin_inset Text
  792. \begin_layout Plain Layout
  793. nuage(s) (Soisic, Mensi)
  794. \end_layout
  795. \end_inset
  796. </cell>
  797. </row>
  798. <row>
  799. <cell alignment="left" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
  800. \begin_inset Text
  801. \begin_layout Plain Layout
  802. pn
  803. \end_layout
  804. \end_inset
  805. </cell>
  806. <cell alignment="left" valignment="top" topline="true" rightline="true" usebox="none">
  807. \begin_inset Text
  808. \begin_layout Plain Layout
  809. binaire
  810. \end_layout
  811. \end_inset
  812. </cell>
  813. <cell alignment="center" valignment="top" topline="true" rightline="true" usebox="none">
  814. \begin_inset Text
  815. \begin_layout Plain Layout
  816. \end_layout
  817. \end_inset
  818. </cell>
  819. <cell alignment="center" valignment="top" topline="true" rightline="true" usebox="none">
  820. \begin_inset Text
  821. \begin_layout Plain Layout
  822. \end_layout
  823. \end_inset
  824. </cell>
  825. <cell alignment="center" valignment="top" topline="true" rightline="true" usebox="none">
  826. \begin_inset Text
  827. \begin_layout Plain Layout
  828. \end_layout
  829. \end_inset
  830. </cell>
  831. <cell alignment="center" valignment="top" topline="true" rightline="true" usebox="none">
  832. \begin_inset Text
  833. \begin_layout Plain Layout
  834. \end_layout
  835. \end_inset
  836. </cell>
  837. <cell alignment="center" valignment="top" topline="true" rightline="true" usebox="none">
  838. \begin_inset Text
  839. \begin_layout Plain Layout
  840. \end_layout
  841. \end_inset
  842. </cell>
  843. <cell alignment="center" valignment="top" topline="true" rightline="true" usebox="none">
  844. \begin_inset Text
  845. \begin_layout Plain Layout
  846. \end_layout
  847. \end_inset
  848. </cell>
  849. <cell alignment="center" valignment="top" topline="true" rightline="true" usebox="none">
  850. \begin_inset Text
  851. \begin_layout Plain Layout
  852. \end_layout
  853. \end_inset
  854. </cell>
  855. <cell alignment="left" valignment="top" topline="true" rightline="true" usebox="none">
  856. \begin_inset Text
  857. \begin_layout Plain Layout
  858. nuage (point + normale)
  859. \end_layout
  860. \end_inset
  861. </cell>
  862. </row>
  863. <row>
  864. <cell alignment="left" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
  865. \begin_inset Text
  866. \begin_layout Plain Layout
  867. pv
  868. \end_layout
  869. \end_inset
  870. </cell>
  871. <cell alignment="left" valignment="top" topline="true" rightline="true" usebox="none">
  872. \begin_inset Text
  873. \begin_layout Plain Layout
  874. binaire
  875. \end_layout
  876. \end_inset
  877. </cell>
  878. <cell alignment="center" valignment="top" topline="true" rightline="true" usebox="none">
  879. \begin_inset Text
  880. \begin_layout Plain Layout
  881. \end_layout
  882. \end_inset
  883. </cell>
  884. <cell alignment="center" valignment="top" topline="true" rightline="true" usebox="none">
  885. \begin_inset Text
  886. \begin_layout Plain Layout
  887. \end_layout
  888. \end_inset
  889. </cell>
  890. <cell alignment="center" valignment="top" topline="true" rightline="true" usebox="none">
  891. \begin_inset Text
  892. \begin_layout Plain Layout
  893. \end_layout
  894. \end_inset
  895. </cell>
  896. <cell alignment="center" valignment="top" topline="true" rightline="true" usebox="none">
  897. \begin_inset Text
  898. \begin_layout Plain Layout
  899. \end_layout
  900. \end_inset
  901. </cell>
  902. <cell alignment="center" valignment="top" topline="true" rightline="true" usebox="none">
  903. \begin_inset Text
  904. \begin_layout Plain Layout
  905. \end_layout
  906. \end_inset
  907. </cell>
  908. <cell alignment="center" valignment="top" topline="true" rightline="true" usebox="none">
  909. \begin_inset Text
  910. \begin_layout Plain Layout
  911. \end_layout
  912. \end_inset
  913. </cell>
  914. <cell alignment="center" valignment="top" topline="true" rightline="true" usebox="none">
  915. \begin_inset Text
  916. \begin_layout Plain Layout
  917. \end_layout
  918. \end_inset
  919. </cell>
  920. <cell alignment="left" valignment="top" topline="true" rightline="true" usebox="none">
  921. \begin_inset Text
  922. \begin_layout Plain Layout
  923. nuage (point + valeur)
  924. \end_layout
  925. \end_inset
  926. </cell>
  927. </row>
  928. <row>
  929. <cell alignment="left" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
  930. \begin_inset Text
  931. \begin_layout Plain Layout
  932. icm
  933. \end_layout
  934. \end_inset
  935. </cell>
  936. <cell alignment="left" valignment="top" topline="true" bottomline="true" rightline="true" usebox="none">
  937. \begin_inset Text
  938. \begin_layout Plain Layout
  939. ascii
  940. \end_layout
  941. \end_inset
  942. </cell>
  943. <cell alignment="center" valignment="top" topline="true" bottomline="true" rightline="true" usebox="none">
  944. \begin_inset Text
  945. \begin_layout Plain Layout
  946. \end_layout
  947. \end_inset
  948. </cell>
  949. <cell alignment="center" valignment="top" topline="true" bottomline="true" rightline="true" usebox="none">
  950. \begin_inset Text
  951. \begin_layout Plain Layout
  952. \end_layout
  953. \end_inset
  954. </cell>
  955. <cell alignment="center" valignment="top" topline="true" bottomline="true" rightline="true" usebox="none">
  956. \begin_inset Text
  957. \begin_layout Plain Layout
  958. \end_layout
  959. \end_inset
  960. </cell>
  961. <cell alignment="center" valignment="top" topline="true" bottomline="true" rightline="true" usebox="none">
  962. \begin_inset Text
  963. \begin_layout Plain Layout
  964. \end_layout
  965. \end_inset
  966. </cell>
  967. <cell alignment="center" valignment="top" topline="true" bottomline="true" rightline="true" usebox="none">
  968. \begin_inset Text
  969. \begin_layout Plain Layout
  970. \end_layout
  971. \end_inset
  972. </cell>
  973. <cell alignment="center" valignment="top" topline="true" bottomline="true" rightline="true" usebox="none">
  974. \begin_inset Text
  975. \begin_layout Plain Layout
  976. \end_layout
  977. \end_inset
  978. </cell>
  979. <cell alignment="center" valignment="top" topline="true" bottomline="true" rightline="true" usebox="none">
  980. \begin_inset Text
  981. \begin_layout Plain Layout
  982. \end_layout
  983. \end_inset
  984. </cell>
  985. <cell alignment="left" valignment="top" topline="true" bottomline="true" rightline="true" usebox="none">
  986. \begin_inset Text
  987. \begin_layout Plain Layout
  988. association nuages/images calibrées
  989. \end_layout
  990. \end_inset
  991. </cell>
  992. </row>
  993. </lyxtabular>
  994. \end_inset
  995. \begin_inset Newline newline
  996. \end_inset
  997. \end_layout
  998. \begin_layout Standard
  999. \begin_inset Tabular
  1000. <lyxtabular version="3" rows="6" columns="3">
  1001. <features tabularvalignment="middle">
  1002. <column alignment="left" valignment="top" width="0">
  1003. <column alignment="left" valignment="top" width="0">
  1004. <column alignment="left" valignment="top" width="0">
  1005. <row>
  1006. <cell alignment="left" valignment="top" usebox="none">
  1007. \begin_inset Text
  1008. \begin_layout Plain Layout
  1009. P
  1010. \end_layout
  1011. \end_inset
  1012. </cell>
  1013. <cell alignment="left" valignment="top" usebox="none">
  1014. \begin_inset Text
  1015. \begin_layout Plain Layout
  1016. :
  1017. \end_layout
  1018. \end_inset
  1019. </cell>
  1020. <cell alignment="left" valignment="top" usebox="none">
  1021. \begin_inset Text
  1022. \begin_layout Plain Layout
  1023. Points
  1024. \end_layout
  1025. \end_inset
  1026. </cell>
  1027. </row>
  1028. <row>
  1029. <cell alignment="left" valignment="top" usebox="none">
  1030. \begin_inset Text
  1031. \begin_layout Plain Layout
  1032. M
  1033. \end_layout
  1034. \end_inset
  1035. </cell>
  1036. <cell alignment="left" valignment="top" usebox="none">
  1037. \begin_inset Text
  1038. \begin_layout Plain Layout
  1039. :
  1040. \end_layout
  1041. \end_inset
  1042. </cell>
  1043. <cell alignment="left" valignment="top" usebox="none">
  1044. \begin_inset Text
  1045. \begin_layout Plain Layout
  1046. Maillages
  1047. \end_layout
  1048. \end_inset
  1049. </cell>
  1050. </row>
  1051. <row>
  1052. <cell alignment="left" valignment="top" usebox="none">
  1053. \begin_inset Text
  1054. \begin_layout Plain Layout
  1055. RGB
  1056. \end_layout
  1057. \end_inset
  1058. </cell>
  1059. <cell alignment="left" valignment="top" usebox="none">
  1060. \begin_inset Text
  1061. \begin_layout Plain Layout
  1062. :
  1063. \end_layout
  1064. \end_inset
  1065. </cell>
  1066. <cell alignment="left" valignment="top" usebox="none">
  1067. \begin_inset Text
  1068. \begin_layout Plain Layout
  1069. Couleurs (Red, Green, Blue)
  1070. \end_layout
  1071. \end_inset
  1072. </cell>
  1073. </row>
  1074. <row>
  1075. <cell alignment="left" valignment="top" usebox="none">
  1076. \begin_inset Text
  1077. \begin_layout Plain Layout
  1078. NG
  1079. \end_layout
  1080. \end_inset
  1081. </cell>
  1082. <cell alignment="left" valignment="top" usebox="none">
  1083. \begin_inset Text
  1084. \begin_layout Plain Layout
  1085. :
  1086. \end_layout
  1087. \end_inset
  1088. </cell>
  1089. <cell alignment="left" valignment="top" usebox="none">
  1090. \begin_inset Text
  1091. \begin_layout Plain Layout
  1092. Niveaux de Gris
  1093. \end_layout
  1094. \end_inset
  1095. </cell>
  1096. </row>
  1097. <row>
  1098. <cell alignment="left" valignment="top" usebox="none">
  1099. \begin_inset Text
  1100. \begin_layout Plain Layout
  1101. N
  1102. \end_layout
  1103. \end_inset
  1104. </cell>
  1105. <cell alignment="left" valignment="top" usebox="none">
  1106. \begin_inset Text
  1107. \begin_layout Plain Layout
  1108. :
  1109. \end_layout
  1110. \end_inset
  1111. </cell>
  1112. <cell alignment="left" valignment="top" usebox="none">
  1113. \begin_inset Text
  1114. \begin_layout Plain Layout
  1115. Normales
  1116. \end_layout
  1117. \end_inset
  1118. </cell>
  1119. </row>
  1120. <row>
  1121. <cell alignment="left" valignment="top" usebox="none">
  1122. \begin_inset Text
  1123. \begin_layout Plain Layout
  1124. S
  1125. \end_layout
  1126. \end_inset
  1127. </cell>
  1128. <cell alignment="left" valignment="top" usebox="none">
  1129. \begin_inset Text
  1130. \begin_layout Plain Layout
  1131. :
  1132. \end_layout
  1133. \end_inset
  1134. </cell>
  1135. <cell alignment="left" valignment="top" usebox="none">
  1136. \begin_inset Text
  1137. \begin_layout Plain Layout
  1138. Scalaires
  1139. \end_layout
  1140. \end_inset
  1141. </cell>
  1142. </row>
  1143. </lyxtabular>
  1144. \end_inset
  1145. \begin_inset Newline newline
  1146. \end_inset
  1147. \end_layout
  1148. \begin_layout Subsection
  1149. Chargement et sauvegarde
  1150. \end_layout
  1151. \begin_layout Standard
  1152. \align center
  1153. \begin_inset Tabular
  1154. <lyxtabular version="3" rows="13" columns="3">
  1155. <features tabularvalignment="middle">
  1156. <column alignment="left" valignment="middle" width="15text%">
  1157. <column alignment="center" valignment="middle" width="10text%">
  1158. <column alignment="center" valignment="middle" width="10text%">
  1159. <row>
  1160. <cell multicolumn="1" alignment="none" valignment="top" rightline="true" usebox="none" special=">{\raggedright}m{0.15\textwidth}|">
  1161. \begin_inset Text
  1162. \begin_layout Plain Layout
  1163. \end_layout
  1164. \end_inset
  1165. </cell>
  1166. <cell alignment="center" valignment="top" topline="true" rightline="true" usebox="none">
  1167. \begin_inset Text
  1168. \begin_layout Plain Layout
  1169. Chargement
  1170. \end_layout
  1171. \end_inset
  1172. </cell>
  1173. <cell alignment="center" valignment="top" topline="true" rightline="true" usebox="none">
  1174. \begin_inset Text
  1175. \begin_layout Plain Layout
  1176. Sauvegarde
  1177. \end_layout
  1178. \end_inset
  1179. </cell>
  1180. </row>
  1181. <row>
  1182. <cell alignment="left" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
  1183. \begin_inset Text
  1184. \begin_layout Plain Layout
  1185. asc, txt, neu, xyz, etc.
  1186. \end_layout
  1187. \end_inset
  1188. </cell>
  1189. <cell alignment="center" valignment="top" topline="true" rightline="true" usebox="none">
  1190. \begin_inset Text
  1191. \begin_layout Plain Layout
  1192. \end_layout
  1193. \end_inset
  1194. </cell>
  1195. <cell alignment="center" valignment="top" topline="true" rightline="true" usebox="none">
  1196. \begin_inset Text
  1197. \begin_layout Plain Layout
  1198. \end_layout
  1199. \end_inset
  1200. </cell>
  1201. </row>
  1202. <row>
  1203. <cell alignment="left" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
  1204. \begin_inset Text
  1205. \begin_layout Plain Layout
  1206. bin
  1207. \end_layout
  1208. \end_inset
  1209. </cell>
  1210. <cell alignment="center" valignment="top" topline="true" rightline="true" usebox="none">
  1211. \begin_inset Text
  1212. \begin_layout Plain Layout
  1213. \end_layout
  1214. \end_inset
  1215. </cell>
  1216. <cell alignment="center" valignment="top" topline="true" rightline="true" usebox="none">
  1217. \begin_inset Text
  1218. \begin_layout Plain Layout
  1219. \end_layout
  1220. \end_inset
  1221. </cell>
  1222. </row>
  1223. <row>
  1224. <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
  1225. \begin_inset Text
  1226. \begin_layout Plain Layout
  1227. las
  1228. \end_layout
  1229. \end_inset
  1230. </cell>
  1231. <cell alignment="center" valignment="top" topline="true" rightline="true" usebox="none">
  1232. \begin_inset Text
  1233. \begin_layout Plain Layout
  1234. \end_layout
  1235. \end_inset
  1236. </cell>
  1237. <cell alignment="center" valignment="top" topline="true" rightline="true" usebox="none">
  1238. \begin_inset Text
  1239. \begin_layout Plain Layout
  1240. \end_layout
  1241. \end_inset
  1242. </cell>
  1243. </row>
  1244. <row>
  1245. <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
  1246. \begin_inset Text
  1247. \begin_layout Plain Layout
  1248. e57
  1249. \end_layout
  1250. \end_inset
  1251. </cell>
  1252. <cell alignment="center" valignment="top" topline="true" rightline="true" usebox="none">
  1253. \begin_inset Text
  1254. \begin_layout Plain Layout
  1255. \end_layout
  1256. \end_inset
  1257. </cell>
  1258. <cell alignment="center" valignment="top" topline="true" rightline="true" usebox="none">
  1259. \begin_inset Text
  1260. \begin_layout Plain Layout
  1261. \end_layout
  1262. \end_inset
  1263. </cell>
  1264. </row>
  1265. <row>
  1266. <cell alignment="left" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
  1267. \begin_inset Text
  1268. \begin_layout Plain Layout
  1269. ply
  1270. \end_layout
  1271. \end_inset
  1272. </cell>
  1273. <cell alignment="center" valignment="top" topline="true" rightline="true" usebox="none">
  1274. \begin_inset Text
  1275. \begin_layout Plain Layout
  1276. \end_layout
  1277. \end_inset
  1278. </cell>
  1279. <cell alignment="center" valignment="top" topline="true" rightline="true" usebox="none">
  1280. \begin_inset Text
  1281. \begin_layout Plain Layout
  1282. \end_layout
  1283. \end_inset
  1284. </cell>
  1285. </row>
  1286. <row>
  1287. <cell alignment="left" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
  1288. \begin_inset Text
  1289. \begin_layout Plain Layout
  1290. obj
  1291. \end_layout
  1292. \end_inset
  1293. </cell>
  1294. <cell alignment="center" valignment="top" topline="true" rightline="true" usebox="none">
  1295. \begin_inset Text
  1296. \begin_layout Plain Layout
  1297. \end_layout
  1298. \end_inset
  1299. </cell>
  1300. <cell alignment="center" valignment="top" topline="true" rightline="true" usebox="none">
  1301. \begin_inset Text
  1302. \begin_layout Plain Layout
  1303. \end_layout
  1304. \end_inset
  1305. </cell>
  1306. </row>
  1307. <row>
  1308. <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
  1309. \begin_inset Text
  1310. \begin_layout Plain Layout
  1311. vtk
  1312. \end_layout
  1313. \end_inset
  1314. </cell>
  1315. <cell alignment="center" valignment="top" topline="true" rightline="true" usebox="none">
  1316. \begin_inset Text
  1317. \begin_layout Plain Layout
  1318. \end_layout
  1319. \end_inset
  1320. </cell>
  1321. <cell alignment="center" valignment="top" topline="true" rightline="true" usebox="none">
  1322. \begin_inset Text
  1323. \begin_layout Plain Layout
  1324. \end_layout
  1325. \end_inset
  1326. </cell>
  1327. </row>
  1328. <row>
  1329. <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
  1330. \begin_inset Text
  1331. \begin_layout Plain Layout
  1332. ma
  1333. \end_layout
  1334. \end_inset
  1335. </cell>
  1336. <cell alignment="center" valignment="top" topline="true" rightline="true" usebox="none">
  1337. \begin_inset Text
  1338. \begin_layout Plain Layout
  1339. \end_layout
  1340. \end_inset
  1341. </cell>
  1342. <cell alignment="center" valignment="top" topline="true" rightline="true" usebox="none">
  1343. \begin_inset Text
  1344. \begin_layout Plain Layout
  1345. \end_layout
  1346. \end_inset
  1347. </cell>
  1348. </row>
  1349. <row>
  1350. <cell alignment="left" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
  1351. \begin_inset Text
  1352. \begin_layout Plain Layout
  1353. soi s
  1354. \end_layout
  1355. \end_inset
  1356. </cell>
  1357. <cell alignment="center" valignment="top" topline="true" rightline="true" usebox="none">
  1358. \begin_inset Text
  1359. \begin_layout Plain Layout
  1360. \end_layout
  1361. \end_inset
  1362. </cell>
  1363. <cell alignment="none" valignment="top" topline="true" rightline="true" usebox="none">
  1364. \begin_inset Text
  1365. \begin_layout Plain Layout
  1366. \end_layout
  1367. \end_inset
  1368. </cell>
  1369. </row>
  1370. <row>
  1371. <cell alignment="left" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
  1372. \begin_inset Text
  1373. \begin_layout Plain Layout
  1374. pn
  1375. \end_layout
  1376. \end_inset
  1377. </cell>
  1378. <cell alignment="center" valignment="top" topline="true" rightline="true" usebox="none">
  1379. \begin_inset Text
  1380. \begin_layout Plain Layout
  1381. \end_layout
  1382. \end_inset
  1383. </cell>
  1384. <cell alignment="center" valignment="top" topline="true" rightline="true" usebox="none">
  1385. \begin_inset Text
  1386. \begin_layout Plain Layout
  1387. \end_layout
  1388. \end_inset
  1389. </cell>
  1390. </row>
  1391. <row>
  1392. <cell alignment="left" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
  1393. \begin_inset Text
  1394. \begin_layout Plain Layout
  1395. pv
  1396. \end_layout
  1397. \end_inset
  1398. </cell>
  1399. <cell alignment="center" valignment="top" topline="true" rightline="true" usebox="none">
  1400. \begin_inset Text
  1401. \begin_layout Plain Layout
  1402. \end_layout
  1403. \end_inset
  1404. </cell>
  1405. <cell alignment="none" valignment="top" topline="true" rightline="true" usebox="none">
  1406. \begin_inset Text
  1407. \begin_layout Plain Layout
  1408. \end_layout
  1409. \end_inset
  1410. </cell>
  1411. </row>
  1412. <row>
  1413. <cell alignment="left" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
  1414. \begin_inset Text
  1415. \begin_layout Plain Layout
  1416. icm
  1417. \end_layout
  1418. \end_inset
  1419. </cell>
  1420. <cell alignment="center" valignment="top" topline="true" bottomline="true" rightline="true" usebox="none">
  1421. \begin_inset Text
  1422. \begin_layout Plain Layout
  1423. \end_layout
  1424. \end_inset
  1425. </cell>
  1426. <cell alignment="none" valignment="top" topline="true" bottomline="true" rightline="true" usebox="none">
  1427. \begin_inset Text
  1428. \begin_layout Plain Layout
  1429. \end_layout
  1430. \end_inset
  1431. </cell>
  1432. </row>
  1433. </lyxtabular>
  1434. \end_inset
  1435. \begin_inset Newline newline
  1436. \end_inset
  1437. \end_layout
  1438. \begin_layout Subsection
  1439. Lecture de fichiers ASCII
  1440. \end_layout
  1441. \begin_layout Standard
  1442. \begin_inset Float figure
  1443. placement !htb
  1444. wide false
  1445. sideways false
  1446. status open
  1447. \begin_layout Plain Layout
  1448. \align center
  1449. \begin_inset Graphics
  1450. filename images/Partie4_Annexes/asciiFilterDialog.png
  1451. width 70text%
  1452. \end_inset
  1453. \begin_inset Caption
  1454. \begin_layout Plain Layout
  1455. \begin_inset CommandInset label
  1456. LatexCommand label
  1457. name "fig:asciiFilterDialog"
  1458. \end_inset
  1459. Interface de paramètrage de la lecture de fichiers ASCII.
  1460. \end_layout
  1461. \end_inset
  1462. \end_layout
  1463. \end_inset
  1464. \end_layout
  1465. \begin_layout Standard
  1466. Les nuages de points stockés au format ASCII (i.e.
  1467. des fichiers textes) ne suivent pas tous la même organisation selon l'applicati
  1468. on à partir de laquelle ils ont été créés, notamment concernant :
  1469. \end_layout
  1470. \begin_layout Itemize
  1471. la quantité d'information renseignée pour chaque point.
  1472. La seule certitude est que l'on dispose systématiquement des coordonnées
  1473. cartésiennes (X, Y, Z) des points.
  1474. Peuvent s'ajouter à cela les normales et des couleurs (RGB ou intensité).
  1475. Voire encore des champs scalaires ou vectoriels.
  1476. \end_layout
  1477. \begin_layout Itemize
  1478. l'ordre d'apparition des informations présentes.
  1479. \end_layout
  1480. \begin_layout Itemize
  1481. les caractères de séparation des informations.
  1482. \end_layout
  1483. \begin_layout Itemize
  1484. d'éventuels en-têtes
  1485. \begin_inset Index idx
  1486. status collapsed
  1487. \begin_layout Plain Layout
  1488. en-tete@en-tête
  1489. \end_layout
  1490. \end_inset
  1491. de fichiers permettant d'apporter diverses informations, généralement liées
  1492. à l'application ayant permis la sauvegarde du fichier.
  1493. \end_layout
  1494. \begin_layout Standard
  1495. Pour palier à ce problème, CloudCompare propose, à l'ouverture de tels fichiers,
  1496. une boîte de dialogue (figure
  1497. \begin_inset CommandInset ref
  1498. LatexCommand ref
  1499. reference "fig:asciiFilterDialog"
  1500. \end_inset
  1501. ) permettant à l'utilisateur de paramètrer la lecture des données.
  1502. Ainsi, il est possible d'ouvrir n'importe quel fichier ASCII, quelle que
  1503. soit l'application ayant permis de le créer, sous réserve que les données
  1504. qui s'y trouvent soient suffisamment structurées :
  1505. \end_layout
  1506. \begin_layout Itemize
  1507. chaque ligne correspond à un point
  1508. \end_layout
  1509. \begin_layout Itemize
  1510. chaque donnée est séparée de la suivante par un caractère unique commun
  1511. à l'ensemble du fichier (typiquement une tabulation ou un espace)
  1512. \end_layout
  1513. \begin_layout Itemize
  1514. la quantité d'information ainsi que l'ordre d'appartion des ces informations
  1515. sont les mêmes pour chaque ligne (donc pour chaque point)
  1516. \end_layout
  1517. \begin_layout Standard
  1518. La partie centrale de la boîte de dialogue d'ouverture de fichiers ASCII
  1519. est un tableau dans lequel chaque ligne correspond à une ligne du fichier
  1520. lu (donc à un point), et chaque colonne correspond à une information.
  1521. L'utilisateur a la possibilité de définir le type d'information contenue
  1522. dans une colonne, en sélectionnant son type dans la liste déroulante en
  1523. tête de colonne (figure
  1524. \begin_inset CommandInset ref
  1525. LatexCommand ref
  1526. reference "fig:asciiInformationChoice"
  1527. \end_inset
  1528. ).
  1529. \begin_inset Newline newline
  1530. \end_inset
  1531. \end_layout
  1532. \begin_layout Standard
  1533. \begin_inset Float figure
  1534. placement !htb
  1535. wide false
  1536. sideways false
  1537. status open
  1538. \begin_layout Plain Layout
  1539. \align center
  1540. \begin_inset Graphics
  1541. filename images/Partie4_Annexes/asciiInformationChoice.png
  1542. width 13text%
  1543. \end_inset
  1544. \begin_inset Caption
  1545. \begin_layout Plain Layout
  1546. \begin_inset CommandInset label
  1547. LatexCommand label
  1548. name "fig:asciiInformationChoice"
  1549. \end_inset
  1550. Sélection de l'information portée par une colonne.
  1551. \end_layout
  1552. \end_inset
  1553. \end_layout
  1554. \end_inset
  1555. \end_layout
  1556. \begin_layout Standard
  1557. Remarques :
  1558. \end_layout
  1559. \begin_layout Itemize
  1560. il est possible d'ignorer le contenu d'une colonne lors de la lecture, en
  1561. sélectionnant l'élément "Ignore" en tête de colonne (par exemple lorsqu'on
  1562. ne sait pas à quoi correspond une colonne, il est judicieux de l'ignorer
  1563. plutôt que de faire une manipulation pouvant induire des erreurs dans la
  1564. construction du nuage de points).
  1565. \end_layout
  1566. \begin_layout Itemize
  1567. lorsque le premier élément d'un vecteur est sélectionné pour une colonne,
  1568. les colonnes suivantes sont automatiquement modifiées si elles ne sont
  1569. pas déja renseignées, de sorte à recréer le vecteur (si l'utilisateur sélection
  1570. ne Nx pour une colonne par exemple, et que les deux colonnes suivantes sont
  1571. non encore paramétrées, alors elles seront automatiquement basculées à
  1572. Ny et Nz respectivement).
  1573. \end_layout
  1574. \begin_layout Standard
  1575. Cette boîte de dialogue permet aussi d'indiquer à partir de quelle ligne
  1576. la lecture de données peut commencer, de manière à pouvoir ignorer d'éventuels
  1577. en-têtes de fichiers ne portant aucune information liée au nuage de points.
  1578. Pour celà, il suffit de renseigner le champ "Skip lines".
  1579. Par exemple, dans la figure
  1580. \begin_inset CommandInset ref
  1581. LatexCommand ref
  1582. reference "fig:asciiFilterDialog"
  1583. \end_inset
  1584. , les deux premières lignes composent l'en-tête du fichier, et la lecture
  1585. doit donc commencer à partir de la troisième ligne (il faut donc renseigner
  1586. la valeur 2 pour le champ "Skip lines").
  1587. \begin_inset Newline newline
  1588. \end_inset
  1589. \end_layout
  1590. \begin_layout Standard
  1591. Pour finir, il est possible de renseigner le caractère servant de séparateur
  1592. \begin_inset Index idx
  1593. status collapsed
  1594. \begin_layout Plain Layout
  1595. separateur@séparateur
  1596. \end_layout
  1597. \end_inset
  1598. dans le fichier (caractère séparant deux informations successives sur une
  1599. même ligne), via le champ "Separator".
  1600. Les boutons "ESP" (espace), "TAB" (tabulation), "," (virgule) et ";" (point
  1601. virgule) permettent de sélectionner rapidement les caractères les plus
  1602. communément utilisés à cet effet.
  1603. \begin_inset Newline newline
  1604. \end_inset
  1605. \end_layout
  1606. \begin_layout Standard
  1607. Une fois l'interface paramétrée, cliquez sur OK pour lancer le chargement
  1608. du fichier.
  1609. \begin_inset Newline newline
  1610. \end_inset
  1611. \end_layout
  1612. \begin_layout Subsection
  1613. Formats spéciaux
  1614. \end_layout
  1615. \begin_layout Standard
  1616. \begin_inset ERT
  1617. status collapsed
  1618. \begin_layout Plain Layout
  1619. %DGM: pas inclus dans la version 2.1
  1620. \end_layout
  1621. \begin_layout Plain Layout
  1622. \end_layout
  1623. \end_inset
  1624. \begin_inset ERT
  1625. status collapsed
  1626. \begin_layout Plain Layout
  1627. %
  1628. \backslash
  1629. subsubsection{Fichiers de défauts (.txt)}
  1630. \end_layout
  1631. \begin_layout Plain Layout
  1632. \end_layout
  1633. \end_inset
  1634. \begin_inset ERT
  1635. status collapsed
  1636. \begin_layout Plain Layout
  1637. %Liste de défauts surfaciques sur un ouvrage de génie civil (polylignes
  1638. \end_layout
  1639. \begin_layout Plain Layout
  1640. \end_layout
  1641. \end_inset
  1642. \begin_inset ERT
  1643. status collapsed
  1644. \begin_layout Plain Layout
  1645. %3D accompagnées de diverses caractéristiques).
  1646. Source : EDF/DTG.
  1647. \backslash
  1648. \backslash
  1649. \end_layout
  1650. \begin_layout Plain Layout
  1651. \end_layout
  1652. \end_inset
  1653. \end_layout
  1654. \begin_layout Subsubsection
  1655. Fichier ICM
  1656. \end_layout
  1657. \begin_layout Standard
  1658. Fichier d'association entre un nuage de points et un fichier VRML de définition
  1659. des photos calibrées (caméra + fichier image).
  1660. \begin_inset Newline newline
  1661. \end_inset
  1662. \end_layout
  1663. \begin_layout Standard
  1664. Exemple :
  1665. \end_layout
  1666. \begin_layout Standard
  1667. \begin_inset Tabular
  1668. <lyxtabular version="3" rows="5" columns="2">
  1669. <features tabularvalignment="middle">
  1670. <column alignment="left" valignment="top" width="40text%">
  1671. <column alignment="left" valignment="top" width="40text%">
  1672. <row>
  1673. <cell multicolumn="1" alignment="none" valignment="top" topline="true" usebox="none" special="c">
  1674. \begin_inset Text
  1675. \begin_layout Plain Layout
  1676. \color blue
  1677. fichier
  1678. \begin_inset Quotes ard
  1679. \end_inset
  1680. toto.icm
  1681. \begin_inset Quotes ald
  1682. \end_inset
  1683. \end_layout
  1684. \end_inset
  1685. </cell>
  1686. <cell multicolumn="2" alignment="center" valignment="top" topline="true" usebox="none">
  1687. \begin_inset Text
  1688. \begin_layout Plain Layout
  1689. \end_layout
  1690. \end_inset
  1691. </cell>
  1692. </row>
  1693. <row>
  1694. <cell alignment="left" valignment="top" topline="true" usebox="none">
  1695. \begin_inset Text
  1696. \begin_layout Plain Layout
  1697. #CC_ICM_FILE
  1698. \end_layout
  1699. \end_inset
  1700. </cell>
  1701. <cell alignment="left" valignment="top" topline="true" usebox="none">
  1702. \begin_inset Text
  1703. \begin_layout Plain Layout
  1704. //header
  1705. \end_layout
  1706. \end_inset
  1707. </cell>
  1708. </row>
  1709. <row>
  1710. <cell alignment="left" valignment="top" usebox="none">
  1711. \begin_inset Text
  1712. \begin_layout Plain Layout
  1713. FILENAME=pa4.asc
  1714. \end_layout
  1715. \end_inset
  1716. </cell>
  1717. <cell alignment="left" valignment="top" usebox="none">
  1718. \begin_inset Text
  1719. \begin_layout Plain Layout
  1720. //Fichier de points
  1721. \end_layout
  1722. \end_inset
  1723. </cell>
  1724. </row>
  1725. <row>
  1726. <cell alignment="left" valignment="top" usebox="none">
  1727. \begin_inset Text
  1728. \begin_layout Plain Layout
  1729. FILETYPE=ASC
  1730. \end_layout
  1731. \end_inset
  1732. </cell>
  1733. <cell alignment="left" valignment="top" usebox="none">
  1734. \begin_inset Text
  1735. \begin_layout Plain Layout
  1736. //Type du fichier de points
  1737. \end_layout
  1738. \end_inset
  1739. </cell>
  1740. </row>
  1741. <row>
  1742. <cell alignment="left" valignment="top" bottomline="true" usebox="none">
  1743. \begin_inset Text
  1744. \begin_layout Plain Layout
  1745. IMAGES_DESCRIPTOR=photo_match.wrl
  1746. \end_layout
  1747. \end_inset
  1748. </cell>
  1749. <cell alignment="left" valignment="top" bottomline="true" usebox="none">
  1750. \begin_inset Text
  1751. \begin_layout Plain Layout
  1752. //Fichier VRML de description des photos calibrées
  1753. \end_layout
  1754. \end_inset
  1755. </cell>
  1756. </row>
  1757. </lyxtabular>
  1758. \end_inset
  1759. \begin_inset Newline newline
  1760. \end_inset
  1761. \end_layout
  1762. \begin_layout Standard
  1763. \begin_inset Tabular
  1764. <lyxtabular version="3" rows="16" columns="2">
  1765. <features tabularvalignment="middle">
  1766. <column alignment="left" valignment="top" width="40text%">
  1767. <column alignment="left" valignment="top" width="40text%">
  1768. <row>
  1769. <cell multicolumn="1" alignment="none" valignment="top" topline="true" usebox="none" special="c">
  1770. \begin_inset Text
  1771. \begin_layout Plain Layout
  1772. \color blue
  1773. fichier
  1774. \begin_inset Quotes ard
  1775. \end_inset
  1776. photos_match.wrl
  1777. \begin_inset Quotes ald
  1778. \end_inset
  1779. \end_layout
  1780. \end_inset
  1781. </cell>
  1782. <cell multicolumn="2" alignment="center" valignment="top" topline="true" usebox="none">
  1783. \begin_inset Text
  1784. \begin_layout Plain Layout
  1785. \end_layout
  1786. \end_inset
  1787. </cell>
  1788. </row>
  1789. <row>
  1790. <cell alignment="left" valignment="top" topline="true" usebox="none">
  1791. \begin_inset Text
  1792. \begin_layout Plain Layout
  1793. #VRML v2.0 utf8
  1794. \end_layout
  1795. \end_inset
  1796. </cell>
  1797. <cell alignment="none" valignment="top" topline="true" usebox="none">
  1798. \begin_inset Text
  1799. \begin_layout Plain Layout
  1800. \end_layout
  1801. \end_inset
  1802. </cell>
  1803. </row>
  1804. <row>
  1805. <cell alignment="left" valignment="top" usebox="none">
  1806. \begin_inset Text
  1807. \begin_layout Plain Layout
  1808. \end_layout
  1809. \end_inset
  1810. </cell>
  1811. <cell alignment="none" valignment="top" usebox="none">
  1812. \begin_inset Text
  1813. \begin_layout Plain Layout
  1814. \end_layout
  1815. \end_inset
  1816. </cell>
  1817. </row>
  1818. <row>
  1819. <cell alignment="left" valignment="top" usebox="none">
  1820. \begin_inset Text
  1821. \begin_layout Plain Layout
  1822. DEF photo1.jpg Viewpoint{
  1823. \end_layout
  1824. \end_inset
  1825. </cell>
  1826. <cell alignment="left" valignment="top" usebox="none">
  1827. \begin_inset Text
  1828. \begin_layout Plain Layout
  1829. //Header photo #1
  1830. \end_layout
  1831. \end_inset
  1832. </cell>
  1833. </row>
  1834. <row>
  1835. <cell alignment="left" valignment="top" usebox="none">
  1836. \begin_inset Text
  1837. \begin_layout Plain Layout
  1838. fieldOfView 0.621379
  1839. \end_layout
  1840. \end_inset
  1841. </cell>
  1842. <cell alignment="left" valignment="top" usebox="none">
  1843. \begin_inset Text
  1844. \begin_layout Plain Layout
  1845. //F.O.V.
  1846. \end_layout
  1847. \end_inset
  1848. </cell>
  1849. </row>
  1850. <row>
  1851. <cell alignment="left" valignment="top" usebox="none">
  1852. \begin_inset Text
  1853. \begin_layout Plain Layout
  1854. position -10.5418 -15.6091 5.95961
  1855. \end_layout
  1856. \end_inset
  1857. </cell>
  1858. <cell alignment="left" valignment="top" usebox="none">
  1859. \begin_inset Text
  1860. \begin_layout Plain Layout
  1861. //Centre optique
  1862. \end_layout
  1863. \end_inset
  1864. </cell>
  1865. </row>
  1866. <row>
  1867. <cell alignment="left" valignment="top" usebox="none">
  1868. \begin_inset Text
  1869. \begin_layout Plain Layout
  1870. description
  1871. \begin_inset Quotes ard
  1872. \end_inset
  1873. VANNE + PETIT TUYEAU
  1874. \begin_inset Quotes ald
  1875. \end_inset
  1876. \end_layout
  1877. \end_inset
  1878. </cell>
  1879. <cell alignment="left" valignment="top" usebox="none">
  1880. \begin_inset Text
  1881. \begin_layout Plain Layout
  1882. //Description
  1883. \end_layout
  1884. \end_inset
  1885. </cell>
  1886. </row>
  1887. <row>
  1888. <cell alignment="left" valignment="top" usebox="none">
  1889. \begin_inset Text
  1890. \begin_layout Plain Layout
  1891. orientation 0.70724 -0.37292 -0.600618 3.74252
  1892. \end_layout
  1893. \end_inset
  1894. </cell>
  1895. <cell alignment="left" valignment="top" usebox="none">
  1896. \begin_inset Text
  1897. \begin_layout Plain Layout
  1898. //Vecteur
  1899. \begin_inset Quotes ard
  1900. \end_inset
  1901. visée
  1902. \begin_inset Quotes ald
  1903. \end_inset
  1904. \end_layout
  1905. \end_inset
  1906. </cell>
  1907. </row>
  1908. <row>
  1909. <cell alignment="left" valignment="top" usebox="none">
  1910. \begin_inset Text
  1911. \begin_layout Plain Layout
  1912. }
  1913. \end_layout
  1914. \end_inset
  1915. </cell>
  1916. <cell alignment="left" valignment="top" usebox="none">
  1917. \begin_inset Text
  1918. \begin_layout Plain Layout
  1919. //Fin de photo #1
  1920. \end_layout
  1921. \end_inset
  1922. </cell>
  1923. </row>
  1924. <row>
  1925. <cell alignment="left" valignment="top" usebox="none">
  1926. \begin_inset Text
  1927. \begin_layout Plain Layout
  1928. \end_layout
  1929. \end_inset
  1930. </cell>
  1931. <cell alignment="none" valignment="top" usebox="none">
  1932. \begin_inset Text
  1933. \begin_layout Plain Layout
  1934. \end_layout
  1935. \end_inset
  1936. </cell>
  1937. </row>
  1938. <row>
  1939. <cell alignment="left" valignment="top" usebox="none">
  1940. \begin_inset Text
  1941. \begin_layout Plain Layout
  1942. DEF photo2.jpg Viewpoint{
  1943. \end_layout
  1944. \end_inset
  1945. </cell>
  1946. <cell alignment="left" valignment="top" usebox="none">
  1947. \begin_inset Text
  1948. \begin_layout Plain Layout
  1949. //Header photo #2
  1950. \end_layout
  1951. \end_inset
  1952. </cell>
  1953. </row>
  1954. <row>
  1955. <cell alignment="left" valignment="top" usebox="none">
  1956. \begin_inset Text
  1957. \begin_layout Plain Layout
  1958. fieldOfView 0.621379
  1959. \end_layout
  1960. \end_inset
  1961. </cell>
  1962. <cell alignment="left" valignment="top" usebox="none">
  1963. \begin_inset Text
  1964. \begin_layout Plain Layout
  1965. //etc.
  1966. \end_layout
  1967. \end_inset
  1968. </cell>
  1969. </row>
  1970. <row>
  1971. <cell alignment="left" valignment="top" usebox="none">
  1972. \begin_inset Text
  1973. \begin_layout Plain Layout
  1974. position -3.9782 -21.276 5.95616
  1975. \end_layout
  1976. \end_inset
  1977. </cell>
  1978. <cell alignment="none" valignment="top" usebox="none">
  1979. \begin_inset Text
  1980. \begin_layout Plain Layout
  1981. \end_layout
  1982. \end_inset
  1983. </cell>
  1984. </row>
  1985. <row>
  1986. <cell alignment="left" valignment="top" usebox="none">
  1987. \begin_inset Text
  1988. \begin_layout Plain Layout
  1989. description
  1990. \begin_inset Quotes ard
  1991. \end_inset
  1992. PORTE
  1993. \begin_inset Quotes ald
  1994. \end_inset
  1995. \end_layout
  1996. \end_inset
  1997. </cell>
  1998. <cell alignment="none" valignment="top" usebox="none">
  1999. \begin_inset Text
  2000. \begin_layout Plain Layout
  2001. \end_layout
  2002. \end_inset
  2003. </cell>
  2004. </row>
  2005. <row>
  2006. <cell alignment="left" valignment="top" usebox="none">
  2007. \begin_inset Text
  2008. \begin_layout Plain Layout
  2009. orientation 0.572629 0.696275 -0.432778 2.02135
  2010. \end_layout
  2011. \end_inset
  2012. </cell>
  2013. <cell alignment="none" valignment="top" usebox="none">
  2014. \begin_inset Text
  2015. \begin_layout Plain Layout
  2016. \end_layout
  2017. \end_inset
  2018. </cell>
  2019. </row>
  2020. <row>
  2021. <cell alignment="left" valignment="top" bottomline="true" usebox="none">
  2022. \begin_inset Text
  2023. \begin_layout Plain Layout
  2024. }
  2025. \end_layout
  2026. \end_inset
  2027. </cell>
  2028. <cell alignment="none" valignment="top" bottomline="true" usebox="none">
  2029. \begin_inset Text
  2030. \begin_layout Plain Layout
  2031. \end_layout
  2032. \end_inset
  2033. </cell>
  2034. </row>
  2035. </lyxtabular>
  2036. \end_inset
  2037. \begin_inset Newline newline
  2038. \end_inset
  2039. \end_layout
  2040. \begin_layout Standard
  2041. Un tel fichier VRML peut être généré quasi-automatiquement par un logiciel
  2042. comme
  2043. \emph on
  2044. RealWorks
  2045. \emph default
  2046. (Mensi).
  2047. \begin_inset Newline newline
  2048. \end_inset
  2049. \end_layout
  2050. \begin_layout Subsubsection
  2051. Fichier d'export de carte de profondeur
  2052. \end_layout
  2053. \begin_layout Standard
  2054. \begin_inset CommandInset label
  2055. LatexCommand label
  2056. name "subsection:depthMapFileDescription"
  2057. \end_inset
  2058. \end_layout
  2059. \begin_layout Standard
  2060. Fichier ASCII d'export de carte de profondeur associée à un
  2061. \emph on
  2062. capteur
  2063. \emph default
  2064. .
  2065. Peut être généré via la fonction
  2066. \emph on
  2067. Sensor > Ground-Based Lidar > Export depth buffer
  2068. \emph default
  2069. (section
  2070. \begin_inset space ~
  2071. \end_inset
  2072. \begin_inset CommandInset ref
  2073. LatexCommand ref
  2074. reference "subsection:exportGBLDepthBuffer"
  2075. \end_inset
  2076. ).
  2077. \begin_inset Newline newline
  2078. \end_inset
  2079. \end_layout
  2080. \begin_layout Standard
  2081. Exemple :
  2082. \end_layout
  2083. \begin_layout Standard
  2084. \begin_inset Tabular
  2085. <lyxtabular version="3" rows="13" columns="2">
  2086. <features tabularvalignment="middle">
  2087. <column alignment="left" valignment="top" width="40text%">
  2088. <column alignment="left" valignment="top" width="40text%">
  2089. <row>
  2090. <cell multicolumn="1" alignment="none" valignment="top" topline="true" usebox="none" special="c">
  2091. \begin_inset Text
  2092. \begin_layout Plain Layout
  2093. \color blue
  2094. fichier
  2095. \begin_inset Quotes ard
  2096. \end_inset
  2097. Ground Based Laser Scanner.txt
  2098. \begin_inset Quotes ald
  2099. \end_inset
  2100. \end_layout
  2101. \end_inset
  2102. </cell>
  2103. <cell multicolumn="2" alignment="center" valignment="top" topline="true" usebox="none">
  2104. \begin_inset Text
  2105. \begin_layout Plain Layout
  2106. \end_layout
  2107. \end_inset
  2108. </cell>
  2109. </row>
  2110. <row>
  2111. <cell alignment="left" valignment="top" topline="true" usebox="none">
  2112. \begin_inset Text
  2113. \begin_layout Plain Layout
  2114. // CLOUDCOMPARE DEPTH MAP
  2115. \end_layout
  2116. \end_inset
  2117. </cell>
  2118. <cell alignment="none" valignment="top" topline="true" usebox="none">
  2119. \begin_inset Text
  2120. \begin_layout Plain Layout
  2121. \end_layout
  2122. \end_inset
  2123. </cell>
  2124. </row>
  2125. <row>
  2126. <cell alignment="left" valignment="top" usebox="none">
  2127. \begin_inset Text
  2128. \begin_layout Plain Layout
  2129. // Associated cloud: Cloud #0
  2130. \end_layout
  2131. \end_inset
  2132. </cell>
  2133. <cell alignment="left" valignment="top" usebox="none">
  2134. \begin_inset Text
  2135. \begin_layout Plain Layout
  2136. \emph on
  2137. associated cloud name (as disp.
  2138. in CC)
  2139. \end_layout
  2140. \end_inset
  2141. </cell>
  2142. </row>
  2143. <row>
  2144. <cell alignment="left" valignment="top" usebox="none">
  2145. \begin_inset Text
  2146. \begin_layout Plain Layout
  2147. // dPhi = 0.005000 [ -0.383052 : 0.319331 ]
  2148. \end_layout
  2149. \end_inset
  2150. </cell>
  2151. <cell alignment="left" valignment="top" usebox="none">
  2152. \begin_inset Text
  2153. \begin_layout Plain Layout
  2154. \emph on
  2155. horizontal angular step
  2156. \end_layout
  2157. \end_inset
  2158. </cell>
  2159. </row>
  2160. <row>
  2161. <cell alignment="left" valignment="top" usebox="none">
  2162. \begin_inset Text
  2163. \begin_layout Plain Layout
  2164. // dTheta = 0.005000 [ -1.626588 : 0.137948 ]
  2165. \end_layout
  2166. \end_inset
  2167. </cell>
  2168. <cell alignment="left" valignment="top" usebox="none">
  2169. \begin_inset Text
  2170. \begin_layout Plain Layout
  2171. \emph on
  2172. vertical angular step
  2173. \end_layout
  2174. \end_inset
  2175. </cell>
  2176. </row>
  2177. <row>
  2178. <cell alignment="left" valignment="top" usebox="none">
  2179. \begin_inset Text
  2180. \begin_layout Plain Layout
  2181. // pMax = 78823.398438
  2182. \end_layout
  2183. \end_inset
  2184. </cell>
  2185. <cell alignment="left" valignment="top" usebox="none">
  2186. \begin_inset Text
  2187. \begin_layout Plain Layout
  2188. \emph on
  2189. max depth
  2190. \end_layout
  2191. \end_inset
  2192. </cell>
  2193. </row>
  2194. <row>
  2195. <cell alignment="left" valignment="top" usebox="none">
  2196. \begin_inset Text
  2197. \begin_layout Plain Layout
  2198. // L = 353
  2199. \end_layout
  2200. \end_inset
  2201. </cell>
  2202. <cell alignment="left" valignment="top" usebox="none">
  2203. \begin_inset Text
  2204. \begin_layout Plain Layout
  2205. \emph on
  2206. number of horiz.
  2207. pixels
  2208. \end_layout
  2209. \end_inset
  2210. </cell>
  2211. </row>
  2212. <row>
  2213. <cell alignment="left" valignment="top" usebox="none">
  2214. \begin_inset Text
  2215. \begin_layout Plain Layout
  2216. // H = 141
  2217. \end_layout
  2218. \end_inset
  2219. </cell>
  2220. <cell alignment="left" valignment="top" usebox="none">
  2221. \begin_inset Text
  2222. \begin_layout Plain Layout
  2223. \emph on
  2224. number of vert.
  2225. pixels
  2226. \end_layout
  2227. \end_inset
  2228. </cell>
  2229. </row>
  2230. <row>
  2231. <cell alignment="left" valignment="top" usebox="none">
  2232. \begin_inset Text
  2233. \begin_layout Plain Layout
  2234. /////////////////////////
  2235. \end_layout
  2236. \end_inset
  2237. </cell>
  2238. <cell alignment="none" valignment="top" usebox="none">
  2239. \begin_inset Text
  2240. \begin_layout Plain Layout
  2241. \end_layout
  2242. \end_inset
  2243. </cell>
  2244. </row>
  2245. <row>
  2246. <cell alignment="left" valignment="top" usebox="none">
  2247. \begin_inset Text
  2248. \begin_layout Plain Layout
  2249. 0.000000 0.000000 18132.496094
  2250. \end_layout
  2251. \end_inset
  2252. </cell>
  2253. <cell alignment="left" valignment="top" usebox="none">
  2254. \begin_inset Text
  2255. \begin_layout Plain Layout
  2256. 1st pixel coordinates (i,j) and depth (z)
  2257. \end_layout
  2258. \end_inset
  2259. </cell>
  2260. </row>
  2261. <row>
  2262. <cell alignment="left" valignment="top" usebox="none">
  2263. \begin_inset Text
  2264. \begin_layout Plain Layout
  2265. 1.000000 0.000000 15145.963154
  2266. \end_layout
  2267. \end_inset
  2268. </cell>
  2269. <cell alignment="left" valignment="top" usebox="none">
  2270. \begin_inset Text
  2271. \begin_layout Plain Layout
  2272. 2nd pixel coordinates (i,j) and depth (z)
  2273. \end_layout
  2274. \end_inset
  2275. </cell>
  2276. </row>
  2277. <row>
  2278. <cell alignment="left" valignment="top" usebox="none">
  2279. \begin_inset Text
  2280. \begin_layout Plain Layout
  2281. ...
  2282. \end_layout
  2283. \end_inset
  2284. </cell>
  2285. <cell alignment="none" valignment="top" usebox="none">
  2286. \begin_inset Text
  2287. \begin_layout Plain Layout
  2288. \end_layout
  2289. \end_inset
  2290. </cell>
  2291. </row>
  2292. <row>
  2293. <cell alignment="left" valignment="top" bottomline="true" usebox="none">
  2294. \begin_inset Text
  2295. \begin_layout Plain Layout
  2296. 352.000000 140.000000 132135.321542
  2297. \end_layout
  2298. \end_inset
  2299. </cell>
  2300. <cell alignment="left" valignment="top" bottomline="true" usebox="none">
  2301. \begin_inset Text
  2302. \begin_layout Plain Layout
  2303. L*H pixel coordinates (i,j) and depth (z)
  2304. \end_layout
  2305. \end_inset
  2306. </cell>
  2307. </row>
  2308. </lyxtabular>
  2309. \end_inset
  2310. \begin_inset Newline newline
  2311. \end_inset
  2312. \end_layout
  2313. \begin_layout Section
  2314. Ligne de commande
  2315. \end_layout
  2316. \begin_layout Standard
  2317. \begin_inset CommandInset label
  2318. LatexCommand label
  2319. name "subsection:commandeLine"
  2320. \end_inset
  2321. \end_layout
  2322. \begin_layout Standard
  2323. Certaines fonctions de CloudCompare peuvent être appelée en
  2324. \shape italic
  2325. ligne de commande
  2326. \shape default
  2327. (i.e.
  2328. via la console - sous Windows, tapez 'cmd' dans
  2329. \begin_inset Quotes fld
  2330. \end_inset
  2331. Démarrer > exécuter
  2332. \begin_inset Quotes frd
  2333. \end_inset
  2334. ).
  2335. \end_layout
  2336. \begin_layout Standard
  2337. Par défaut, le mode
  2338. \shape italic
  2339. ligne de commande
  2340. \shape default
  2341. fait tout de même apparaitre une console (pour afficher les messages et
  2342. l'avancement des opérations).
  2343. Il applique les actions spécifiées par l'utilisateur (voir ci-dessous)
  2344. puis sauve le résultat à côté du ou des fichiers d'entrée.
  2345. Les actions sont appliquées dans l'ordre où elles apparaissent dans la
  2346. commande d'appel (la ligne de commande se comporte comme une machine d'état).
  2347. \begin_inset Newline newline
  2348. \end_inset
  2349. \end_layout
  2350. \begin_layout Standard
  2351. Options :
  2352. \end_layout
  2353. \begin_layout Itemize
  2354. \begin_inset Quotes fld
  2355. \end_inset
  2356. -SILENT
  2357. \begin_inset Quotes frd
  2358. \end_inset
  2359. : mode silencieux = cache la console (doit toujours être en première position
  2360. si appelé).
  2361. \end_layout
  2362. \begin_layout Itemize
  2363. \begin_inset Quotes fld
  2364. \end_inset
  2365. -O [filename]
  2366. \begin_inset Quotes frd
  2367. \end_inset
  2368. : ouvre le fichier 'filename' (le type de fichier est déduit de l'extension).
  2369. Seuls les nuages et les maillages sont pris en compte.
  2370. Pour le cas particulier des fichiers
  2371. \shape italic
  2372. Bundler
  2373. \shape default
  2374. (images calibrées), voir l'option -BUNDLER_IMPORT ci dessous.
  2375. \end_layout
  2376. \begin_layout Itemize
  2377. \begin_inset Quotes fld
  2378. \end_inset
  2379. -SS [algorithm] [parameter]
  2380. \begin_inset Quotes frd
  2381. \end_inset
  2382. : applique au(x) nuage(s) chargé(s) l'algorithme de sous-échantillonnage
  2383. (voir section
  2384. \begin_inset space ~
  2385. \end_inset
  2386. \begin_inset CommandInset ref
  2387. LatexCommand ref
  2388. reference "subsection:subsample"
  2389. \end_inset
  2390. ).
  2391. \end_layout
  2392. \begin_deeper
  2393. \begin_layout Itemize
  2394. \shape italic
  2395. [algorithm]
  2396. \shape default
  2397. : type de sous-échantillonnage
  2398. \end_layout
  2399. \begin_deeper
  2400. \begin_layout Itemize
  2401. RANDOM (au hasard)
  2402. \end_layout
  2403. \begin_layout Itemize
  2404. SPATIAL (densité maximale)
  2405. \end_layout
  2406. \begin_layout Itemize
  2407. OCTREE
  2408. \begin_inset Quotes frd
  2409. \end_inset
  2410. (à un niveau de subdivision de l'octree donné)
  2411. \end_layout
  2412. \end_deeper
  2413. \begin_layout Itemize
  2414. \shape italic
  2415. [parameter]
  2416. \shape default
  2417. : paramètre (dépend du type de sous-échantillonnage)
  2418. \end_layout
  2419. \begin_deeper
  2420. \begin_layout Itemize
  2421. RANDOM : nombre de points sélectionnés au hasard
  2422. \end_layout
  2423. \begin_layout Itemize
  2424. SPATIAL : distance minimum entre deux points
  2425. \end_layout
  2426. \begin_layout Itemize
  2427. OCTREE: niveau de subdivision (entre 1 et 10 dans la version standard de
  2428. CloudCompare)
  2429. \end_layout
  2430. \end_deeper
  2431. \end_deeper
  2432. \begin_layout Itemize
  2433. \begin_inset Quotes fld
  2434. \end_inset
  2435. -BUNDLER_IMPORT [filename]
  2436. \begin_inset Quotes frd
  2437. \end_inset
  2438. : importe un fichier
  2439. \shape italic
  2440. Bundler
  2441. \shape default
  2442. de nom 'filename'.
  2443. Ceci permet de générer automatiquement des versions ortho-rectifiées des
  2444. images calibrées décrites dans ce type de fichier.
  2445. Des options supplémentaires peuvent être rajoutées à la suite :
  2446. \end_layout
  2447. \begin_deeper
  2448. \begin_layout Itemize
  2449. \begin_inset Quotes fld
  2450. \end_inset
  2451. -ALT_KEYPOINTS [filename]
  2452. \begin_inset Quotes frd
  2453. \end_inset
  2454. : charge des
  2455. \shape italic
  2456. keypoints
  2457. \shape default
  2458. alternatifs (depuis le fichier 'filename'
  2459. \end_layout
  2460. \begin_layout Itemize
  2461. \begin_inset Quotes fld
  2462. \end_inset
  2463. -SCALE_FACTOR [value]
  2464. \begin_inset Quotes frd
  2465. \end_inset
  2466. : défini le facteur d'échelle entre les images chargées par CloudCompare
  2467. et celles qui ont permis de générer les keypoints
  2468. \end_layout
  2469. \begin_layout Itemize
  2470. \begin_inset Quotes fld
  2471. \end_inset
  2472. -COLOR_DTM [vertices count]
  2473. \begin_inset Quotes frd
  2474. \end_inset
  2475. : génère un nuage coloré correspondant aux sommets d'un pseudo-MNT avec
  2476. approximativement 'vertices count' éléments (en mode
  2477. \shape italic
  2478. ligne de commande
  2479. \shape default
  2480. , le nuage est automatiquement sauvé à côté des images ortho-rectifiées
  2481. sous le nom 'colored_dtm_vertices.bin')
  2482. \end_layout
  2483. \begin_layout Itemize
  2484. \begin_inset Quotes fld
  2485. \end_inset
  2486. -UNDISTORT
  2487. \begin_inset Quotes frd
  2488. \end_inset
  2489. : corrige la distorsion des images
  2490. \end_layout
  2491. \end_deeper
  2492. \begin_layout Itemize
  2493. \begin_inset Quotes fld
  2494. \end_inset
  2495. -CLEAR
  2496. \begin_inset Quotes frd
  2497. \end_inset
  2498. : libère la mémoire, i.e.
  2499. supprime tous les entités chargées
  2500. \end_layout
  2501. \begin_layout Itemize
  2502. \begin_inset Quotes fld
  2503. \end_inset
  2504. -CLEAR_CLOUDS
  2505. \begin_inset Quotes frd
  2506. \end_inset
  2507. : supprime uniquement les nuages chargés en mémoire
  2508. \end_layout
  2509. \begin_layout Itemize
  2510. \begin_inset Quotes fld
  2511. \end_inset
  2512. -CLEAR_MESHES
  2513. \begin_inset Quotes frd
  2514. \end_inset
  2515. : supprime uniquement les maillages chargés en mémoire
  2516. \end_layout
  2517. \begin_layout Subsection*
  2518. Exemple 1
  2519. \end_layout
  2520. \begin_layout Standard
  2521. \begin_inset listings
  2522. inline false
  2523. status open
  2524. \begin_layout Plain Layout
  2525. qCC -O myhugecloud.bin -SS SPATIAL 0.1
  2526. \end_layout
  2527. \end_inset
  2528. \end_layout
  2529. \begin_layout Standard
  2530. Cet appel charge le fichier 'myhugecloud.bin' puis applique un sous-échantillonna
  2531. ge spatial avec un pas de
  2532. \begin_inset Formula $0.1$
  2533. \end_inset
  2534. .
  2535. Le résultat sera sauvé dans 'myhugecloud_SPATIAL_SUBSAMPLED_YYYY-MM-DD_HHhMM.bin
  2536. ' (où HH:MM est l'heure courante et DD/MM/YYYY la date).
  2537. \begin_inset Newline newline
  2538. \end_inset
  2539. \end_layout
  2540. \begin_layout Standard
  2541. \begin_inset listings
  2542. inline false
  2543. status open
  2544. \begin_layout Plain Layout
  2545. qCC -O myhugecloud1.bin -SS SPATIAL 0.1 -O 'myhugecloud2.bin' -SS RANDOM 1000000
  2546. -CLEAR_ALL -O 'myhugecloud3.bin' -SS OCTREE 9
  2547. \end_layout
  2548. \end_inset
  2549. \end_layout
  2550. \begin_layout Standard
  2551. Cet appel charge le fichier 'myhugecloud.bin' puis applique un sous-échantillonna
  2552. ge spatial avec un pas de
  2553. \begin_inset Formula $0.1$
  2554. \end_inset
  2555. .Ensuite, le fichier 'myhugecloud2.bin' est ouvert et CloudCompare applique
  2556. \series bold
  2557. aux deux nuages
  2558. \series default
  2559. un sous-échantillonnage aléatoire (1000000 points à chaque fois).
  2560. Ensuite les deux nuages sont fermés, et un troisième fichier 'myhugecloud3.bin'
  2561. est ouvert.
  2562. Enfin CloudCompare applique un sous échantillonnage par octree (niveau
  2563. 9) à ce nuage.
  2564. Les fichiers résultants seront :
  2565. \end_layout
  2566. \begin_layout Itemize
  2567. myhugecloud1_SPATIAL_SUBSAMPLED_YYYY-MM-DD_HHhMM.bin
  2568. \end_layout
  2569. \begin_layout Itemize
  2570. myhugecloud1_RANDOM_SUBSAMPLED_YYYY-MM-DD_HHhMM.bin
  2571. \end_layout
  2572. \begin_layout Itemize
  2573. myhugecloud2_RANDOM_SUBSAMPLED_YYYY-MM-DD_HHhMM.bin
  2574. \end_layout
  2575. \begin_layout Itemize
  2576. myhugecloud3_OCTREE_level_9_SUBSAMPLED_YYYY-MM-DD_HHhMM.bin
  2577. \end_layout
  2578. \begin_layout Standard
  2579. \begin_inset listings
  2580. inline false
  2581. status open
  2582. \begin_layout Plain Layout
  2583. qCC -BUNDLER_IMPORT bundle.out -COLOR_DTM 1000000
  2584. \end_layout
  2585. \end_inset
  2586. \end_layout
  2587. \begin_layout Standard
  2588. Cet appel génère les versions ortho-rectifiées des images calibrées décrites
  2589. dans le fichier 'bundle.out' (la liste des noms de fichiers doit être présente
  2590. dans un fichier 'list.txt' à côté) ainsi que les sommets colorés d'un pseudo-MNT
  2591. construit à partir des
  2592. \shape italic
  2593. keypoints
  2594. \shape default
  2595. (approximativement 1000000 de sommets).
  2596. \end_layout
  2597. \end_body
  2598. \end_document