mainWindow.ui 105 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <ui version="4.0">
  3. <class>MainWindow</class>
  4. <widget class="QMainWindow" name="MainWindow">
  5. <property name="geometry">
  6. <rect>
  7. <x>0</x>
  8. <y>0</y>
  9. <width>1024</width>
  10. <height>768</height>
  11. </rect>
  12. </property>
  13. <property name="sizePolicy">
  14. <sizepolicy hsizetype="Preferred" vsizetype="Maximum">
  15. <horstretch>0</horstretch>
  16. <verstretch>0</verstretch>
  17. </sizepolicy>
  18. </property>
  19. <property name="focusPolicy">
  20. <enum>Qt::ClickFocus</enum>
  21. </property>
  22. <property name="acceptDrops">
  23. <bool>false</bool>
  24. </property>
  25. <property name="windowTitle">
  26. <string>CloudCompare</string>
  27. </property>
  28. <property name="windowIcon">
  29. <iconset resource="../icons.qrc">
  30. <normaloff>:/CC/Icons/images/icon/cc_icon_16.png</normaloff>:/CC/Icons/images/icon/cc_icon_16.png</iconset>
  31. </property>
  32. <property name="autoFillBackground">
  33. <bool>true</bool>
  34. </property>
  35. <widget class="QWidget" name="centralwidget"/>
  36. <widget class="QMenuBar" name="menubar">
  37. <property name="geometry">
  38. <rect>
  39. <x>0</x>
  40. <y>0</y>
  41. <width>1024</width>
  42. <height>21</height>
  43. </rect>
  44. </property>
  45. <widget class="QMenu" name="menuFile">
  46. <property name="title">
  47. <string>&amp;File</string>
  48. </property>
  49. <addaction name="actionOpen"/>
  50. <addaction name="actionSave"/>
  51. <addaction name="actionSaveProject"/>
  52. <addaction name="actionGlobalShiftSettings"/>
  53. <addaction name="separator"/>
  54. <addaction name="actionPrimitiveFactory"/>
  55. <addaction name="separator"/>
  56. <addaction name="actionCloseAll"/>
  57. <addaction name="actionQuit"/>
  58. <addaction name="separator"/>
  59. </widget>
  60. <widget class="QMenu" name="menuDisplay">
  61. <property name="title">
  62. <string>&amp;Display</string>
  63. </property>
  64. <widget class="QMenu" name="menuToolbars">
  65. <property name="title">
  66. <string>Toolbars</string>
  67. </property>
  68. <addaction name="actionDisplayMainTools"/>
  69. <addaction name="actionDisplayScalarFieldsTools"/>
  70. <addaction name="actionDisplayViewTools"/>
  71. </widget>
  72. <widget class="QMenu" name="menuLights">
  73. <property name="title">
  74. <string>Lights</string>
  75. </property>
  76. <property name="icon">
  77. <iconset resource="../icons.qrc">
  78. <normaloff>:/CC/images/ccSunLight.png</normaloff>:/CC/images/ccSunLight.png</iconset>
  79. </property>
  80. <addaction name="actionToggleSunLight"/>
  81. <addaction name="actionToggleCustomLight"/>
  82. </widget>
  83. <widget class="QMenu" name="menuActiveScalarField">
  84. <property name="title">
  85. <string>Active scalar field</string>
  86. </property>
  87. <addaction name="actionToggleActiveSFColorScale"/>
  88. <addaction name="actionShowActiveSFPrevious"/>
  89. <addaction name="actionShowActiveSFNext"/>
  90. </widget>
  91. <widget class="QMenu" name="menuLanguage">
  92. <property name="title">
  93. <string>Language Translation</string>
  94. </property>
  95. </widget>
  96. <addaction name="actionFullScreen"/>
  97. <addaction name="actionExclusiveFullScreen"/>
  98. <addaction name="actionRefresh"/>
  99. <addaction name="actionToggleCenteredPerspective"/>
  100. <addaction name="actionToggleViewerBasedPerspective"/>
  101. <addaction name="actionShowCursor3DCoordinates"/>
  102. <addaction name="actionLockRotationAxis"/>
  103. <addaction name="actionEnterBubbleViewMode"/>
  104. <addaction name="actionEnableCameraLink"/>
  105. <addaction name="separator"/>
  106. <addaction name="actionRenderToFile"/>
  107. <addaction name="actionDisplaySettings"/>
  108. <addaction name="actionEditCamera"/>
  109. <addaction name="actionSaveViewportAsObject"/>
  110. <addaction name="actionAdjustZoom"/>
  111. <addaction name="actionTestFrameRate"/>
  112. <addaction name="separator"/>
  113. <addaction name="menuLights"/>
  114. <addaction name="menuActiveScalarField"/>
  115. <addaction name="separator"/>
  116. <addaction name="actionConsole"/>
  117. <addaction name="menuToolbars"/>
  118. <addaction name="menuLanguage"/>
  119. <addaction name="actionResetGUIElementsPos"/>
  120. <addaction name="actionRestoreWindowOnStartup"/>
  121. <addaction name="actionResetAllVBOs"/>
  122. </widget>
  123. <widget class="QMenu" name="menuHelp">
  124. <property name="title">
  125. <string>&amp;Help</string>
  126. </property>
  127. <addaction name="actionHelp"/>
  128. <addaction name="actionAbout"/>
  129. <addaction name="actionAboutPlugins"/>
  130. <addaction name="separator"/>
  131. <addaction name="actionEnableQtWarnings"/>
  132. </widget>
  133. <widget class="QMenu" name="menuEdit">
  134. <property name="title">
  135. <string>Edit</string>
  136. </property>
  137. <widget class="QMenu" name="menuScalarFields">
  138. <property name="title">
  139. <string>Scalar fields</string>
  140. </property>
  141. <addaction name="actionShowHistogram"/>
  142. <addaction name="actionComputeStatParams"/>
  143. <addaction name="separator"/>
  144. <addaction name="actionSFGradient"/>
  145. <addaction name="actionGaussianFilter"/>
  146. <addaction name="actionBilateralFilter"/>
  147. <addaction name="actionFilterByValue"/>
  148. <addaction name="actionConvertToRGB"/>
  149. <addaction name="actionConvertToRandomRGB"/>
  150. <addaction name="actionRenameSF"/>
  151. <addaction name="separator"/>
  152. <addaction name="actionAddConstantSF"/>
  153. <addaction name="actionAddClassificationSF"/>
  154. <addaction name="actionAddIdField"/>
  155. <addaction name="actionExportCoordToSF"/>
  156. <addaction name="actionSetSFAsCoord"/>
  157. <addaction name="actionExportNormalToSF"/>
  158. <addaction name="actionSetSFsAsNormal"/>
  159. <addaction name="actionInterpolateSFs"/>
  160. <addaction name="actionSplitCloudUsingSF"/>
  161. <addaction name="actionScalarFieldArithmetic"/>
  162. <addaction name="separator"/>
  163. <addaction name="actionOpenColorScalesManager"/>
  164. <addaction name="separator"/>
  165. <addaction name="actionDeleteScalarField"/>
  166. <addaction name="actionDeleteAllSF"/>
  167. <addaction name="separator"/>
  168. </widget>
  169. <widget class="QMenu" name="menuColors">
  170. <property name="title">
  171. <string>Colors</string>
  172. </property>
  173. <addaction name="actionSetUniqueColor"/>
  174. <addaction name="actionColorFromScalarField"/>
  175. <addaction name="actionColorize"/>
  176. <addaction name="actionChangeColorLevels"/>
  177. <addaction name="actionSetColorGradient"/>
  178. <addaction name="actionRGBToGreyScale"/>
  179. <addaction name="actionScalarFieldFromColor"/>
  180. <addaction name="actionInterpolateColors"/>
  181. <addaction name="actionEnhanceRGBWithIntensities"/>
  182. <addaction name="actionRGBBilateralFilter"/>
  183. <addaction name="actionRGBGaussianFilter"/>
  184. <addaction name="actionRGBMeanFilter"/>
  185. <addaction name="actionRGBMedianFilter"/>
  186. <addaction name="separator"/>
  187. <addaction name="actionClearColor"/>
  188. </widget>
  189. <widget class="QMenu" name="menuNormals">
  190. <property name="title">
  191. <string>Normals</string>
  192. </property>
  193. <widget class="QMenu" name="menuOrientNormals">
  194. <property name="title">
  195. <string>Orient normals</string>
  196. </property>
  197. <addaction name="actionOrientNormalsMST"/>
  198. <addaction name="actionOrientNormalsFM"/>
  199. </widget>
  200. <widget class="QMenu" name="menuConvert_to">
  201. <property name="title">
  202. <string>Convert to</string>
  203. </property>
  204. <addaction name="actionConvertNormalToHSV"/>
  205. <addaction name="actionConvertNormalToDipDir"/>
  206. </widget>
  207. <addaction name="actionComputeNormals"/>
  208. <addaction name="actionInvertNormals"/>
  209. <addaction name="menuOrientNormals"/>
  210. <addaction name="menuConvert_to"/>
  211. <addaction name="separator"/>
  212. <addaction name="actionExportNormalToSF"/>
  213. <addaction name="actionSetSFsAsNormal"/>
  214. <addaction name="separator"/>
  215. <addaction name="actionShiftPointsAlongNormals"/>
  216. <addaction name="separator"/>
  217. <addaction name="actionClearNormals"/>
  218. </widget>
  219. <widget class="QMenu" name="menuOctree">
  220. <property name="title">
  221. <string>Octree</string>
  222. </property>
  223. <addaction name="actionComputeOctree"/>
  224. <addaction name="separator"/>
  225. <addaction name="actionResampleWithOctree"/>
  226. </widget>
  227. <widget class="QMenu" name="menuMesh">
  228. <property name="title">
  229. <string>Mesh</string>
  230. </property>
  231. <widget class="QMenu" name="menuMeshScalarField">
  232. <property name="title">
  233. <string>Scalar Field</string>
  234. </property>
  235. <addaction name="actionSmoothMeshSF"/>
  236. <addaction name="actionEnhanceMeshSF"/>
  237. </widget>
  238. <addaction name="actionComputeMeshAA"/>
  239. <addaction name="actionComputeMeshLS"/>
  240. <addaction name="actionMeshTwoPolylines"/>
  241. <addaction name="actionMeshScanGrids"/>
  242. <addaction name="separator"/>
  243. <addaction name="actionConvertTextureToColor"/>
  244. <addaction name="actionSamplePointsOnMesh"/>
  245. <addaction name="actionSmoothMeshLaplacian"/>
  246. <addaction name="actionSubdivideMesh"/>
  247. <addaction name="actionFlipMeshTriangles"/>
  248. <addaction name="separator"/>
  249. <addaction name="actionMeasureMeshSurface"/>
  250. <addaction name="actionMeasureMeshVolume"/>
  251. <addaction name="actionFlagMeshVertices"/>
  252. <addaction name="separator"/>
  253. <addaction name="menuMeshScalarField"/>
  254. </widget>
  255. <widget class="QMenu" name="menuSensors">
  256. <property name="title">
  257. <string>Sensors</string>
  258. </property>
  259. <widget class="QMenu" name="menuGroundBasedLidar">
  260. <property name="toolTip">
  261. <string>Terrestrial Laser Sensor = Ground Based Lidar</string>
  262. </property>
  263. <property name="title">
  264. <string>TLS/GBL</string>
  265. </property>
  266. <property name="icon">
  267. <iconset resource="../icons.qrc">
  268. <normaloff>:/CC/images/dbGBLSensorSymbol.png</normaloff>:/CC/images/dbGBLSensorSymbol.png</iconset>
  269. </property>
  270. <addaction name="actionCreateGBLSensor"/>
  271. <addaction name="separator"/>
  272. <addaction name="actionShowDepthBuffer"/>
  273. <addaction name="actionExportDepthBuffer"/>
  274. <addaction name="actionComputePointsVisibility"/>
  275. </widget>
  276. <widget class="QMenu" name="menuCameraSensor">
  277. <property name="title">
  278. <string>Camera</string>
  279. </property>
  280. <property name="icon">
  281. <iconset resource="../icons.qrc">
  282. <normaloff>:/CC/images/dbCamSensorSymbol.png</normaloff>:/CC/images/dbCamSensorSymbol.png</iconset>
  283. </property>
  284. <addaction name="actionCreateCameraSensor"/>
  285. <addaction name="separator"/>
  286. <addaction name="actionProjectUncertainty"/>
  287. <addaction name="actionCheckPointsInsideFrustum"/>
  288. </widget>
  289. <addaction name="actionModifySensor"/>
  290. <addaction name="separator"/>
  291. <addaction name="menuGroundBasedLidar"/>
  292. <addaction name="menuCameraSensor"/>
  293. <addaction name="separator"/>
  294. <addaction name="actionViewFromSensor"/>
  295. <addaction name="actionComputeDistancesFromSensor"/>
  296. <addaction name="actionComputeScatteringAngles"/>
  297. </widget>
  298. <widget class="QMenu" name="menuToggle">
  299. <property name="title">
  300. <string>Toggle (recursive)</string>
  301. </property>
  302. <addaction name="actionToggleActivation"/>
  303. <addaction name="actionToggleVisibility"/>
  304. <addaction name="actionToggleColors"/>
  305. <addaction name="actionToggleNormals"/>
  306. <addaction name="actionToggleSF"/>
  307. <addaction name="actionToggleMaterials"/>
  308. <addaction name="actionToggleShowName"/>
  309. </widget>
  310. <widget class="QMenu" name="menuWaveform">
  311. <property name="title">
  312. <string>Waveform</string>
  313. </property>
  314. <addaction name="actionShowWaveDialog"/>
  315. <addaction name="actionCompressFWFData"/>
  316. </widget>
  317. <widget class="QMenu" name="menuPlane">
  318. <property name="title">
  319. <string>Plane</string>
  320. </property>
  321. <addaction name="actionCreatePlane"/>
  322. <addaction name="actionFitPlaneProxy"/>
  323. <addaction name="actionEditPlane"/>
  324. <addaction name="actionFlipPlane"/>
  325. <addaction name="actionComparePlanes"/>
  326. </widget>
  327. <widget class="QMenu" name="menuGrid">
  328. <property name="title">
  329. <string>Grid</string>
  330. </property>
  331. <addaction name="actionDeleteScanGrid"/>
  332. <addaction name="actionMeshScanGrids"/>
  333. </widget>
  334. <widget class="QMenu" name="menuPolyline">
  335. <property name="title">
  336. <string>Polyline</string>
  337. </property>
  338. <addaction name="actionSamplePointsOnPolyline"/>
  339. <addaction name="actionSmoothPolyline"/>
  340. </widget>
  341. <widget class="QMenu" name="menuCloud">
  342. <property name="title">
  343. <string>Cloud</string>
  344. </property>
  345. <addaction name="actionCreateSinglePointCloud"/>
  346. <addaction name="actionPasteCloudFromClipboard"/>
  347. </widget>
  348. <addaction name="menuColors"/>
  349. <addaction name="menuNormals"/>
  350. <addaction name="menuOctree"/>
  351. <addaction name="menuGrid"/>
  352. <addaction name="menuCloud"/>
  353. <addaction name="menuMesh"/>
  354. <addaction name="menuPolyline"/>
  355. <addaction name="menuPlane"/>
  356. <addaction name="menuSensors"/>
  357. <addaction name="menuScalarFields"/>
  358. <addaction name="menuWaveform"/>
  359. <addaction name="separator"/>
  360. <addaction name="actionClone"/>
  361. <addaction name="actionMerge"/>
  362. <addaction name="actionSubsample"/>
  363. <addaction name="actionApplyTransformation"/>
  364. <addaction name="actionApplyScale"/>
  365. <addaction name="separator"/>
  366. <addaction name="actionTranslateRotate"/>
  367. <addaction name="actionSegment"/>
  368. <addaction name="actionCrop"/>
  369. <addaction name="separator"/>
  370. <addaction name="actionEditGlobalShiftAndScale"/>
  371. <addaction name="separator"/>
  372. <addaction name="menuToggle"/>
  373. <addaction name="separator"/>
  374. <addaction name="actionDelete"/>
  375. </widget>
  376. <widget class="QMenu" name="menu3DViews">
  377. <property name="title">
  378. <string>3D &amp;Views</string>
  379. </property>
  380. <addaction name="actionNew3DView"/>
  381. <addaction name="separator"/>
  382. <addaction name="actionZoomIn"/>
  383. <addaction name="actionZoomOut"/>
  384. <addaction name="separator"/>
  385. <addaction name="actionClose3DView"/>
  386. <addaction name="actionCloseAll3DViews"/>
  387. <addaction name="separator"/>
  388. <addaction name="actionTile3DViews"/>
  389. <addaction name="actionCascade3DViews"/>
  390. <addaction name="separator"/>
  391. <addaction name="actionNext3DView"/>
  392. <addaction name="actionPrevious3DView"/>
  393. </widget>
  394. <widget class="QMenu" name="menuTools">
  395. <property name="title">
  396. <string>Tools</string>
  397. </property>
  398. <widget class="QMenu" name="menuSegmentation">
  399. <property name="title">
  400. <string>Segmentation</string>
  401. </property>
  402. <addaction name="actionLabelConnectedComponents"/>
  403. <addaction name="actionCrossSection"/>
  404. <addaction name="actionExtractSections"/>
  405. <addaction name="separator"/>
  406. <addaction name="actionKMeans"/>
  407. <addaction name="actionFrontPropagation"/>
  408. </widget>
  409. <widget class="QMenu" name="menuProjection">
  410. <property name="title">
  411. <string>Projection</string>
  412. </property>
  413. <addaction name="actionUnroll"/>
  414. <addaction name="actionRasterize"/>
  415. <addaction name="actionConvertPolylinesToMesh"/>
  416. <addaction name="actionExportCoordToSF"/>
  417. <addaction name="actionCreateSurfaceBetweenTwoPolylines"/>
  418. </widget>
  419. <widget class="QMenu" name="menuStatistics">
  420. <property name="title">
  421. <string>Statistics</string>
  422. </property>
  423. <addaction name="actionStatisticalTest"/>
  424. <addaction name="actionComputeStatParams2"/>
  425. </widget>
  426. <widget class="QMenu" name="menuDistances">
  427. <property name="title">
  428. <string>Distances</string>
  429. </property>
  430. <addaction name="actionCloudCloudDist"/>
  431. <addaction name="actionCloudMeshDist"/>
  432. <addaction name="actionCloudPrimitiveDist"/>
  433. <addaction name="actionCPS"/>
  434. </widget>
  435. <widget class="QMenu" name="menuRegistration">
  436. <property name="title">
  437. <string>Registration</string>
  438. </property>
  439. <addaction name="actionMatchBBCenters"/>
  440. <addaction name="actionMatchScales"/>
  441. <addaction name="actionPointPairsAlign"/>
  442. <addaction name="actionRegister"/>
  443. <addaction name="separator"/>
  444. <addaction name="actionBBCenterToOrigin"/>
  445. <addaction name="actionBBMinCornerToOrigin"/>
  446. <addaction name="actionBBMaxCornerToOrigin"/>
  447. </widget>
  448. <widget class="QMenu" name="menuOther">
  449. <property name="title">
  450. <string>Other</string>
  451. </property>
  452. <addaction name="actionComputeGeometricFeature"/>
  453. <addaction name="actionRemoveDuplicatePoints"/>
  454. </widget>
  455. <widget class="QMenu" name="menuSandBox">
  456. <property name="title">
  457. <string>Sand box (research)</string>
  458. </property>
  459. <addaction name="actionComputeKdTree"/>
  460. <addaction name="separator"/>
  461. <addaction name="actionComputeBestFitBB"/>
  462. <addaction name="actionDistanceToBestFitQuadric3D"/>
  463. <addaction name="actionDistanceMap"/>
  464. <addaction name="separator"/>
  465. <addaction name="actionAlign"/>
  466. <addaction name="separator"/>
  467. <addaction name="actionSNETest"/>
  468. <addaction name="actionCNETest"/>
  469. <addaction name="separator"/>
  470. <addaction name="actionFindBiggestInnerRectangle"/>
  471. <addaction name="separator"/>
  472. <addaction name="actionCreateCloudFromEntCenters"/>
  473. <addaction name="separator"/>
  474. <addaction name="actionComputeBestICPRmsMatrix"/>
  475. <addaction name="separator"/>
  476. <addaction name="actionEnableVisualDebugTraces"/>
  477. </widget>
  478. <widget class="QMenu" name="menuFit">
  479. <property name="title">
  480. <string>Fit</string>
  481. </property>
  482. <addaction name="actionFitPlane"/>
  483. <addaction name="actionFitSphere"/>
  484. <addaction name="actionFitCircle"/>
  485. <addaction name="actionFitFacet"/>
  486. <addaction name="actionFitQuadric"/>
  487. </widget>
  488. <widget class="QMenu" name="menuClean">
  489. <property name="title">
  490. <string>Clean</string>
  491. </property>
  492. <addaction name="actionSORFilter"/>
  493. <addaction name="actionNoiseFilter"/>
  494. </widget>
  495. <widget class="QMenu" name="menuVolume">
  496. <property name="title">
  497. <string>Volume</string>
  498. </property>
  499. <addaction name="actionCompute2HalfDimVolume"/>
  500. </widget>
  501. <widget class="QMenu" name="menuBatchExport">
  502. <property name="title">
  503. <string>Batch export</string>
  504. </property>
  505. <addaction name="actionExportCloudInfo"/>
  506. <addaction name="actionExportPlaneInfo"/>
  507. </widget>
  508. <addaction name="menuClean"/>
  509. <addaction name="menuProjection"/>
  510. <addaction name="menuRegistration"/>
  511. <addaction name="menuDistances"/>
  512. <addaction name="menuVolume"/>
  513. <addaction name="menuStatistics"/>
  514. <addaction name="menuSegmentation"/>
  515. <addaction name="menuFit"/>
  516. <addaction name="menuBatchExport"/>
  517. <addaction name="menuOther"/>
  518. <addaction name="separator"/>
  519. <addaction name="actionLevel"/>
  520. <addaction name="actionPointPicking"/>
  521. <addaction name="actionPointListPicking"/>
  522. <addaction name="actionTracePolyline"/>
  523. <addaction name="separator"/>
  524. <addaction name="menuSandBox"/>
  525. <addaction name="separator"/>
  526. </widget>
  527. <addaction name="menuFile"/>
  528. <addaction name="menuEdit"/>
  529. <addaction name="menuTools"/>
  530. <addaction name="menuDisplay"/>
  531. <addaction name="menu3DViews"/>
  532. <addaction name="menuHelp"/>
  533. </widget>
  534. <widget class="QDockWidget" name="DockableDBTree">
  535. <property name="minimumSize">
  536. <size>
  537. <width>146</width>
  538. <height>175</height>
  539. </size>
  540. </property>
  541. <property name="floating">
  542. <bool>false</bool>
  543. </property>
  544. <property name="features">
  545. <set>QDockWidget::DockWidgetFloatable|QDockWidget::DockWidgetMovable</set>
  546. </property>
  547. <property name="windowTitle">
  548. <string>DB Tree</string>
  549. </property>
  550. <attribute name="dockWidgetArea">
  551. <number>1</number>
  552. </attribute>
  553. <widget class="QWidget" name="dockWidgetContents">
  554. <layout class="QVBoxLayout">
  555. <item>
  556. <widget class="ccCustomQTreeView" name="dbTreeView">
  557. <property name="styleSheet">
  558. <string notr="true">QTreeView::branch:has-siblings:!adjoins-item {
  559. border-image: url(:/CC/images/QTreeView/vline.png) 0;
  560. }
  561. QTreeView::branch:has-siblings:adjoins-item {
  562. border-image: url(:/CC/images/QTreeView/branch-more.png) 0;
  563. }
  564. QTreeView::branch:!has-children:!has-siblings:adjoins-item {
  565. border-image: url(:/CC/images/QTreeView/branch-end.png) 0;
  566. }
  567. QTreeView::branch:has-children:!has-siblings:closed,
  568. QTreeView::branch:closed:has-children:has-siblings {
  569. border-image: none;
  570. image: url(:/CC/images/QTreeView/branch-closed.png);
  571. }
  572. QTreeView::branch:open:has-children:!has-siblings,
  573. QTreeView::branch:open:has-children:has-siblings {
  574. border-image: none;
  575. image: url(:/CC/images/QTreeView/branch-open.png);
  576. }</string>
  577. </property>
  578. <property name="dragEnabled">
  579. <bool>true</bool>
  580. </property>
  581. <property name="dragDropMode">
  582. <enum>QAbstractItemView::InternalMove</enum>
  583. </property>
  584. <property name="selectionMode">
  585. <enum>QAbstractItemView::ExtendedSelection</enum>
  586. </property>
  587. <property name="uniformRowHeights">
  588. <bool>true</bool>
  589. </property>
  590. </widget>
  591. </item>
  592. </layout>
  593. </widget>
  594. </widget>
  595. <widget class="QStatusBar" name="statusBar"/>
  596. <widget class="QToolBar" name="toolBarView">
  597. <property name="windowTitle">
  598. <string>Viewing tools</string>
  599. </property>
  600. <property name="toolTip">
  601. <string>Viewing tools</string>
  602. </property>
  603. <attribute name="toolBarArea">
  604. <enum>LeftToolBarArea</enum>
  605. </attribute>
  606. <attribute name="toolBarBreak">
  607. <bool>false</bool>
  608. </attribute>
  609. <addaction name="actionDisplaySettings"/>
  610. <addaction name="actionEditCamera"/>
  611. <addaction name="actionGlobalZoom"/>
  612. <addaction name="actionPickRotationCenter"/>
  613. <addaction name="actionAutoPickRotationCenter"/>
  614. <addaction name="actionLevel"/>
  615. <addaction name="actionZoomAndCenter"/>
  616. <addaction name="actionSetViewTop"/>
  617. <addaction name="actionSetViewFront"/>
  618. <addaction name="actionSetViewLeft"/>
  619. <addaction name="actionSetViewBack"/>
  620. <addaction name="actionSetViewRight"/>
  621. <addaction name="actionSetViewBottom"/>
  622. <addaction name="actionSetViewIso1"/>
  623. <addaction name="actionSetViewIso2"/>
  624. <addaction name="actionEnableStereo"/>
  625. </widget>
  626. <widget class="QDockWidget" name="DockableConsole">
  627. <property name="sizePolicy">
  628. <sizepolicy hsizetype="Ignored" vsizetype="Maximum">
  629. <horstretch>0</horstretch>
  630. <verstretch>0</verstretch>
  631. </sizepolicy>
  632. </property>
  633. <property name="minimumSize">
  634. <size>
  635. <width>103</width>
  636. <height>137</height>
  637. </size>
  638. </property>
  639. <property name="maximumSize">
  640. <size>
  641. <width>524287</width>
  642. <height>524287</height>
  643. </size>
  644. </property>
  645. <property name="features">
  646. <set>QDockWidget::DockWidgetClosable|QDockWidget::DockWidgetFloatable</set>
  647. </property>
  648. <property name="allowedAreas">
  649. <set>Qt::BottomDockWidgetArea</set>
  650. </property>
  651. <property name="windowTitle">
  652. <string>Console</string>
  653. </property>
  654. <attribute name="dockWidgetArea">
  655. <number>8</number>
  656. </attribute>
  657. <widget class="QWidget" name="dockWidgetContents_2">
  658. <layout class="QVBoxLayout">
  659. <item>
  660. <widget class="ccCustomQListWidget" name="consoleWidget">
  661. <property name="sizePolicy">
  662. <sizepolicy hsizetype="Ignored" vsizetype="Ignored">
  663. <horstretch>0</horstretch>
  664. <verstretch>0</verstretch>
  665. </sizepolicy>
  666. </property>
  667. <property name="minimumSize">
  668. <size>
  669. <width>0</width>
  670. <height>80</height>
  671. </size>
  672. </property>
  673. <property name="editTriggers">
  674. <set>QAbstractItemView::NoEditTriggers</set>
  675. </property>
  676. <property name="showDropIndicator" stdset="0">
  677. <bool>false</bool>
  678. </property>
  679. <property name="alternatingRowColors">
  680. <bool>true</bool>
  681. </property>
  682. <property name="selectionMode">
  683. <enum>QAbstractItemView::ExtendedSelection</enum>
  684. </property>
  685. </widget>
  686. </item>
  687. </layout>
  688. </widget>
  689. </widget>
  690. <widget class="QToolBar" name="toolBarMainTools">
  691. <property name="windowTitle">
  692. <string>Main tools</string>
  693. </property>
  694. <property name="toolTip">
  695. <string>Main tools</string>
  696. </property>
  697. <attribute name="toolBarArea">
  698. <enum>TopToolBarArea</enum>
  699. </attribute>
  700. <attribute name="toolBarBreak">
  701. <bool>false</bool>
  702. </attribute>
  703. <addaction name="actionOpen"/>
  704. <addaction name="actionSave"/>
  705. <addaction name="actionSaveProject"/>
  706. <addaction name="separator"/>
  707. <addaction name="actionPointPicking"/>
  708. <addaction name="actionPointListPicking"/>
  709. <addaction name="actionTracePolyline"/>
  710. <addaction name="actionClone"/>
  711. <addaction name="actionMerge"/>
  712. <addaction name="actionDelete"/>
  713. <addaction name="separator"/>
  714. <addaction name="actionPointPairsAlign"/>
  715. <addaction name="actionRegister"/>
  716. <addaction name="actionSubsample"/>
  717. <addaction name="actionSamplePointsOnMesh"/>
  718. <addaction name="actionCloudCloudDist"/>
  719. <addaction name="actionCloudMeshDist"/>
  720. <addaction name="actionCloudPrimitiveDist"/>
  721. <addaction name="actionLabelConnectedComponents"/>
  722. <addaction name="actionPrimitiveFactory"/>
  723. <addaction name="actionRasterize"/>
  724. <addaction name="actionSORFilter"/>
  725. <addaction name="separator"/>
  726. <addaction name="actionSegment"/>
  727. <addaction name="actionTranslateRotate"/>
  728. <addaction name="actionCrossSection"/>
  729. <addaction name="actionExtractSections"/>
  730. </widget>
  731. <widget class="QToolBar" name="toolBarSFTools">
  732. <property name="windowTitle">
  733. <string>Scalar field tools</string>
  734. </property>
  735. <property name="toolTip">
  736. <string>Scalar field tools</string>
  737. </property>
  738. <attribute name="toolBarArea">
  739. <enum>TopToolBarArea</enum>
  740. </attribute>
  741. <attribute name="toolBarBreak">
  742. <bool>false</bool>
  743. </attribute>
  744. <addaction name="actionShowHistogram"/>
  745. <addaction name="actionComputeStatParams"/>
  746. <addaction name="actionFilterByValue"/>
  747. <addaction name="actionDeleteScalarField"/>
  748. <addaction name="actionAddConstantSF"/>
  749. <addaction name="actionScalarFieldArithmetic"/>
  750. <addaction name="actionOpenColorScalesManager"/>
  751. </widget>
  752. <widget class="QDockWidget" name="DockableProperties">
  753. <property name="minimumSize">
  754. <size>
  755. <width>133</width>
  756. <height>164</height>
  757. </size>
  758. </property>
  759. <property name="floating">
  760. <bool>false</bool>
  761. </property>
  762. <property name="features">
  763. <set>QDockWidget::DockWidgetFloatable|QDockWidget::DockWidgetMovable</set>
  764. </property>
  765. <property name="windowTitle">
  766. <string>Properties</string>
  767. </property>
  768. <attribute name="dockWidgetArea">
  769. <number>1</number>
  770. </attribute>
  771. <widget class="QWidget" name="dockWidgetContents_4">
  772. <layout class="QVBoxLayout">
  773. <item>
  774. <widget class="QTreeView" name="propertiesTreeView">
  775. <property name="editTriggers">
  776. <set>QAbstractItemView::NoEditTriggers</set>
  777. </property>
  778. <property name="showDropIndicator" stdset="0">
  779. <bool>false</bool>
  780. </property>
  781. <property name="alternatingRowColors">
  782. <bool>true</bool>
  783. </property>
  784. <property name="selectionMode">
  785. <enum>QAbstractItemView::NoSelection</enum>
  786. </property>
  787. <property name="rootIsDecorated">
  788. <bool>false</bool>
  789. </property>
  790. <property name="itemsExpandable">
  791. <bool>false</bool>
  792. </property>
  793. <property name="allColumnsShowFocus">
  794. <bool>true</bool>
  795. </property>
  796. <property name="expandsOnDoubleClick">
  797. <bool>false</bool>
  798. </property>
  799. <attribute name="headerDefaultSectionSize">
  800. <number>200</number>
  801. </attribute>
  802. </widget>
  803. </item>
  804. </layout>
  805. </widget>
  806. </widget>
  807. <action name="actionOpen">
  808. <property name="icon">
  809. <iconset resource="../icons.qrc">
  810. <normaloff>:/CC/images/ccOpen.png</normaloff>:/CC/images/ccOpen.png</iconset>
  811. </property>
  812. <property name="text">
  813. <string>&amp;Open</string>
  814. </property>
  815. <property name="toolTip">
  816. <string>Open one or severa files</string>
  817. </property>
  818. <property name="statusTip">
  819. <string>Open one or severa files</string>
  820. </property>
  821. <property name="shortcut">
  822. <string>Ctrl+O</string>
  823. </property>
  824. </action>
  825. <action name="actionSave">
  826. <property name="icon">
  827. <iconset resource="../icons.qrc">
  828. <normaloff>:/CC/images/ccSave.png</normaloff>:/CC/images/ccSave.png</iconset>
  829. </property>
  830. <property name="text">
  831. <string>&amp;Save</string>
  832. </property>
  833. <property name="toolTip">
  834. <string>Save current entity</string>
  835. </property>
  836. <property name="statusTip">
  837. <string>Save current entity</string>
  838. </property>
  839. <property name="shortcut">
  840. <string>Ctrl+S</string>
  841. </property>
  842. <property name="shortcutContext">
  843. <enum>Qt::ApplicationShortcut</enum>
  844. </property>
  845. </action>
  846. <action name="actionQuit">
  847. <property name="text">
  848. <string>&amp;Quit</string>
  849. </property>
  850. <property name="statusTip">
  851. <string>Quit</string>
  852. </property>
  853. </action>
  854. <action name="actionFullScreen">
  855. <property name="checkable">
  856. <bool>true</bool>
  857. </property>
  858. <property name="icon">
  859. <iconset resource="../icons.qrc">
  860. <normaloff>:/CC/images/ccFullScreen.png</normaloff>:/CC/images/ccFullScreen.png</iconset>
  861. </property>
  862. <property name="text">
  863. <string>&amp;Full screen</string>
  864. </property>
  865. <property name="toolTip">
  866. <string>Switch to full screen</string>
  867. </property>
  868. <property name="statusTip">
  869. <string>Switch to full screen</string>
  870. </property>
  871. <property name="shortcut">
  872. <string>F9</string>
  873. </property>
  874. <property name="shortcutContext">
  875. <enum>Qt::ApplicationShortcut</enum>
  876. </property>
  877. </action>
  878. <action name="actionDisplaySettings">
  879. <property name="icon">
  880. <iconset resource="../icons.qrc">
  881. <normaloff>:/CC/images/monitor.svg</normaloff>:/CC/images/monitor.svg</iconset>
  882. </property>
  883. <property name="text">
  884. <string>Display settings</string>
  885. </property>
  886. </action>
  887. <action name="actionHelp">
  888. <property name="text">
  889. <string>&amp;Help</string>
  890. </property>
  891. <property name="statusTip">
  892. <string>Help</string>
  893. </property>
  894. <property name="shortcut">
  895. <string>F1</string>
  896. </property>
  897. </action>
  898. <action name="actionAbout">
  899. <property name="text">
  900. <string>&amp;About ...</string>
  901. </property>
  902. <property name="statusTip">
  903. <string>About</string>
  904. </property>
  905. </action>
  906. <action name="actionSetUniqueColor">
  907. <property name="icon">
  908. <iconset resource="../icons.qrc">
  909. <normaloff>:/CC/images/typeRgbCcolor.png</normaloff>:/CC/images/typeRgbCcolor.png</iconset>
  910. </property>
  911. <property name="text">
  912. <string>Set unique</string>
  913. </property>
  914. <property name="toolTip">
  915. <string>Set a unique color</string>
  916. </property>
  917. <property name="statusTip">
  918. <string>Set a unique color</string>
  919. </property>
  920. <property name="shortcut">
  921. <string>Alt+C</string>
  922. </property>
  923. </action>
  924. <action name="actionSetColorGradient">
  925. <property name="text">
  926. <string>Height Ramp</string>
  927. </property>
  928. <property name="toolTip">
  929. <string>Apply a color ramp along X, Y or Z</string>
  930. </property>
  931. <property name="statusTip">
  932. <string>Apply a color ramp along X, Y or Z</string>
  933. </property>
  934. </action>
  935. <action name="actionComputeNormals">
  936. <property name="icon">
  937. <iconset resource="../icons.qrc">
  938. <normaloff>:/CC/images/typeNormal.png</normaloff>:/CC/images/typeNormal.png</iconset>
  939. </property>
  940. <property name="text">
  941. <string>Compute</string>
  942. </property>
  943. <property name="toolTip">
  944. <string>Compute unsigned normals (least squares approx.)</string>
  945. </property>
  946. <property name="statusTip">
  947. <string>Compute unsigned normals (least squares approx.)</string>
  948. </property>
  949. </action>
  950. <action name="actionInvertNormals">
  951. <property name="text">
  952. <string>Invert</string>
  953. </property>
  954. <property name="toolTip">
  955. <string>Invert normals</string>
  956. </property>
  957. <property name="statusTip">
  958. <string>Invert normals</string>
  959. </property>
  960. </action>
  961. <action name="actionComputeOctree">
  962. <property name="icon">
  963. <iconset resource="../icons.qrc">
  964. <normaloff>:/CC/images/dbOctreeSymbol.png</normaloff>:/CC/images/dbOctreeSymbol.png</iconset>
  965. </property>
  966. <property name="text">
  967. <string>Compute</string>
  968. </property>
  969. <property name="toolTip">
  970. <string>Compute octree</string>
  971. </property>
  972. <property name="statusTip">
  973. <string>Compute octree</string>
  974. </property>
  975. </action>
  976. <action name="actionConsole">
  977. <property name="checkable">
  978. <bool>true</bool>
  979. </property>
  980. <property name="checked">
  981. <bool>true</bool>
  982. </property>
  983. <property name="icon">
  984. <iconset resource="../icons.qrc">
  985. <normaloff>:/CC/images/ccConsole.png</normaloff>:/CC/images/ccConsole.png</iconset>
  986. </property>
  987. <property name="text">
  988. <string>Console</string>
  989. </property>
  990. <property name="shortcut">
  991. <string>F8</string>
  992. </property>
  993. <property name="shortcutContext">
  994. <enum>Qt::ApplicationShortcut</enum>
  995. </property>
  996. </action>
  997. <action name="actionClose3DView">
  998. <property name="text">
  999. <string>Cl&amp;ose</string>
  1000. </property>
  1001. <property name="shortcut">
  1002. <string>Ctrl+F4</string>
  1003. </property>
  1004. </action>
  1005. <action name="actionCloseAll3DViews">
  1006. <property name="text">
  1007. <string>Close &amp;All</string>
  1008. </property>
  1009. </action>
  1010. <action name="actionTile3DViews">
  1011. <property name="text">
  1012. <string>&amp;Tile</string>
  1013. </property>
  1014. </action>
  1015. <action name="actionCascade3DViews">
  1016. <property name="text">
  1017. <string>&amp;Cascade</string>
  1018. </property>
  1019. </action>
  1020. <action name="actionPrevious3DView">
  1021. <property name="text">
  1022. <string>Pre&amp;vious</string>
  1023. </property>
  1024. </action>
  1025. <action name="actionNext3DView">
  1026. <property name="text">
  1027. <string>Ne&amp;xt</string>
  1028. </property>
  1029. </action>
  1030. <action name="actionNew3DView">
  1031. <property name="text">
  1032. <string>New</string>
  1033. </property>
  1034. <property name="shortcut">
  1035. <string>Ctrl+F3</string>
  1036. </property>
  1037. </action>
  1038. <action name="actionClone">
  1039. <property name="icon">
  1040. <iconset resource="../icons.qrc">
  1041. <normaloff>:/CC/images/ccClone.png</normaloff>:/CC/images/ccClone.png</iconset>
  1042. </property>
  1043. <property name="text">
  1044. <string>Clone</string>
  1045. </property>
  1046. <property name="toolTip">
  1047. <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Clone the selected entities&lt;/p&gt;&lt;p&gt;&lt;span style=&quot; font-style:italic;&quot;&gt;(yes Claire ... these are Nyan sheep!)&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>
  1048. </property>
  1049. </action>
  1050. <action name="actionMerge">
  1051. <property name="icon">
  1052. <iconset resource="../icons.qrc">
  1053. <normaloff>:/CC/images/ccMerge.png</normaloff>:/CC/images/ccMerge.png</iconset>
  1054. </property>
  1055. <property name="text">
  1056. <string>Merge</string>
  1057. </property>
  1058. <property name="toolTip">
  1059. <string>Merge multiple clouds</string>
  1060. </property>
  1061. </action>
  1062. <action name="actionDelete">
  1063. <property name="icon">
  1064. <iconset resource="../icons.qrc">
  1065. <normaloff>:/CC/images/ccDelete.png</normaloff>:/CC/images/ccDelete.png</iconset>
  1066. </property>
  1067. <property name="text">
  1068. <string>Delete</string>
  1069. </property>
  1070. <property name="shortcut">
  1071. <string>Del</string>
  1072. </property>
  1073. <property name="shortcutContext">
  1074. <enum>Qt::ApplicationShortcut</enum>
  1075. </property>
  1076. </action>
  1077. <action name="actionRegister">
  1078. <property name="icon">
  1079. <iconset resource="../icons.qrc">
  1080. <normaloff>:/CC/images/ccRegister.png</normaloff>:/CC/images/ccRegister.png</iconset>
  1081. </property>
  1082. <property name="text">
  1083. <string>Fine registration (ICP)</string>
  1084. </property>
  1085. <property name="toolTip">
  1086. <string>Finely registers already (roughly) aligned entities (clouds or meshes)</string>
  1087. </property>
  1088. <property name="statusTip">
  1089. <string>Finely registers already (roughly) aligned entities (clouds or meshes)</string>
  1090. </property>
  1091. </action>
  1092. <action name="actionCloudCloudDist">
  1093. <property name="icon">
  1094. <iconset resource="../icons.qrc">
  1095. <normaloff>:/CC/images/ccCloudCloudDistance.png</normaloff>:/CC/images/ccCloudCloudDistance.png</iconset>
  1096. </property>
  1097. <property name="text">
  1098. <string>Cloud/Cloud Dist</string>
  1099. </property>
  1100. <property name="toolTip">
  1101. <string>Compute cloud/cloud distance</string>
  1102. </property>
  1103. <property name="statusTip">
  1104. <string>Compute cloud/cloud distance</string>
  1105. </property>
  1106. </action>
  1107. <action name="actionCloudMeshDist">
  1108. <property name="icon">
  1109. <iconset resource="../icons.qrc">
  1110. <normaloff>:/CC/images/ccCloudMeshDistance.png</normaloff>:/CC/images/ccCloudMeshDistance.png</iconset>
  1111. </property>
  1112. <property name="text">
  1113. <string>Cloud/Mesh Dist</string>
  1114. </property>
  1115. <property name="toolTip">
  1116. <string>Compute cloud/mesh distance</string>
  1117. </property>
  1118. <property name="statusTip">
  1119. <string>Compute cloud/mesh distance</string>
  1120. </property>
  1121. </action>
  1122. <action name="actionStatisticalTest">
  1123. <property name="icon">
  1124. <iconset resource="../icons.qrc">
  1125. <normaloff>:/CC/images/ccStatTest.png</normaloff>:/CC/images/ccStatTest.png</iconset>
  1126. </property>
  1127. <property name="text">
  1128. <string>Local Statistical test</string>
  1129. </property>
  1130. <property name="toolTip">
  1131. <string>Apply a local statistical test to separate noise from true differences</string>
  1132. </property>
  1133. <property name="statusTip">
  1134. <string>Apply a local statistical test to separate noise from true differences</string>
  1135. </property>
  1136. </action>
  1137. <action name="actionSamplePointsOnMesh">
  1138. <property name="icon">
  1139. <iconset resource="../icons.qrc">
  1140. <normaloff>:/CC/images/ccSamplePoints.png</normaloff>:/CC/images/ccSamplePoints.png</iconset>
  1141. </property>
  1142. <property name="text">
  1143. <string>Sample points</string>
  1144. </property>
  1145. <property name="toolTip">
  1146. <string>Sample points on a mesh</string>
  1147. </property>
  1148. <property name="statusTip">
  1149. <string>Sample points on a mesh</string>
  1150. </property>
  1151. </action>
  1152. <action name="actionLabelConnectedComponents">
  1153. <property name="icon">
  1154. <iconset resource="../icons.qrc">
  1155. <normaloff>:/CC/images/ccCCExtract.png</normaloff>:/CC/images/ccCCExtract.png</iconset>
  1156. </property>
  1157. <property name="text">
  1158. <string>Label Connected Comp.</string>
  1159. </property>
  1160. <property name="toolTip">
  1161. <string>Label connected components</string>
  1162. </property>
  1163. <property name="statusTip">
  1164. <string>Label connected components</string>
  1165. </property>
  1166. </action>
  1167. <action name="actionSegment">
  1168. <property name="icon">
  1169. <iconset resource="../icons.qrc">
  1170. <normaloff>:/CC/images/ccSegment.png</normaloff>:/CC/images/ccSegment.png</iconset>
  1171. </property>
  1172. <property name="text">
  1173. <string>Segment</string>
  1174. </property>
  1175. <property name="shortcut">
  1176. <string>T</string>
  1177. </property>
  1178. </action>
  1179. <action name="actionTranslateRotate">
  1180. <property name="checkable">
  1181. <bool>false</bool>
  1182. </property>
  1183. <property name="icon">
  1184. <iconset resource="../icons.qrc">
  1185. <normaloff>:/CC/images/ccInteractiveTransformation.png</normaloff>:/CC/images/ccInteractiveTransformation.png</iconset>
  1186. </property>
  1187. <property name="text">
  1188. <string>Translate/Rotate</string>
  1189. </property>
  1190. </action>
  1191. <action name="actionShowHistogram">
  1192. <property name="icon">
  1193. <iconset resource="../icons.qrc">
  1194. <normaloff>:/CC/images/ccHistogram.png</normaloff>:/CC/images/ccHistogram.png</iconset>
  1195. </property>
  1196. <property name="text">
  1197. <string>Show histogram</string>
  1198. </property>
  1199. </action>
  1200. <action name="actionComputeStatParams">
  1201. <property name="icon">
  1202. <iconset resource="../icons.qrc">
  1203. <normaloff>:/CC/images/ccComputeStat.png</normaloff>:/CC/images/ccComputeStat.png</iconset>
  1204. </property>
  1205. <property name="text">
  1206. <string>Compute stat. params</string>
  1207. </property>
  1208. <property name="toolTip">
  1209. <string>Fits a statistical model on the active scalar field</string>
  1210. </property>
  1211. <property name="statusTip">
  1212. <string>Fits a statistical model on the active scalar field</string>
  1213. </property>
  1214. </action>
  1215. <action name="actionFilterByValue">
  1216. <property name="icon">
  1217. <iconset resource="../icons.qrc">
  1218. <normaloff>:/CC/images/ccFilterByValue.png</normaloff>:/CC/images/ccFilterByValue.png</iconset>
  1219. </property>
  1220. <property name="text">
  1221. <string>Filter By Value</string>
  1222. </property>
  1223. <property name="toolTip">
  1224. <string>Filter points by value</string>
  1225. </property>
  1226. <property name="statusTip">
  1227. <string>Filter points by value</string>
  1228. </property>
  1229. </action>
  1230. <action name="actionGaussianFilter">
  1231. <property name="icon">
  1232. <iconset resource="../icons.qrc">
  1233. <normaloff>:/CC/images/ccGaussianFilter.png</normaloff>:/CC/images/ccGaussianFilter.png</iconset>
  1234. </property>
  1235. <property name="text">
  1236. <string>Gaussian filter</string>
  1237. </property>
  1238. <property name="toolTip">
  1239. <string>Compute gaussian filter</string>
  1240. </property>
  1241. <property name="statusTip">
  1242. <string>Compute gaussian filter</string>
  1243. </property>
  1244. </action>
  1245. <action name="actionDeleteScalarField">
  1246. <property name="icon">
  1247. <iconset resource="../icons.qrc">
  1248. <normaloff>:/CC/images/ccDeleteSF.png</normaloff>:/CC/images/ccDeleteSF.png</iconset>
  1249. </property>
  1250. <property name="text">
  1251. <string>Delete</string>
  1252. </property>
  1253. <property name="iconText">
  1254. <string>Delete Scalar Field</string>
  1255. </property>
  1256. <property name="toolTip">
  1257. <string>Delete current scalar field</string>
  1258. </property>
  1259. <property name="statusTip">
  1260. <string>Delete current scalar field</string>
  1261. </property>
  1262. </action>
  1263. <action name="actionScalarFieldArithmetic">
  1264. <property name="icon">
  1265. <iconset resource="../icons.qrc">
  1266. <normaloff>:/CC/images/ccSfArithmetic.png</normaloff>:/CC/images/ccSfArithmetic.png</iconset>
  1267. </property>
  1268. <property name="text">
  1269. <string>Arithmetic</string>
  1270. </property>
  1271. <property name="iconText">
  1272. <string>SF arithmetic</string>
  1273. </property>
  1274. <property name="toolTip">
  1275. <string>Add, subtract, multiply or divide two scalar fields</string>
  1276. </property>
  1277. <property name="statusTip">
  1278. <string>Add, subtract, multiply or divide two scalar fields</string>
  1279. </property>
  1280. </action>
  1281. <action name="actionColorize">
  1282. <property name="text">
  1283. <string>Colorize</string>
  1284. </property>
  1285. <property name="toolTip">
  1286. <string>Colorize entity (lightness values are unchanged)</string>
  1287. </property>
  1288. <property name="statusTip">
  1289. <string>Colorize entity (lightness values are unchanged)</string>
  1290. </property>
  1291. </action>
  1292. <action name="actionSmoothMeshSF">
  1293. <property name="text">
  1294. <string>Smooth</string>
  1295. </property>
  1296. <property name="toolTip">
  1297. <string>Smooth mesh scalar field</string>
  1298. </property>
  1299. <property name="statusTip">
  1300. <string>Smooth mesh scalar field</string>
  1301. </property>
  1302. </action>
  1303. <action name="actionEnhanceMeshSF">
  1304. <property name="text">
  1305. <string>Enhance</string>
  1306. </property>
  1307. <property name="toolTip">
  1308. <string>Enhance Scalar Field</string>
  1309. </property>
  1310. <property name="statusTip">
  1311. <string>Enhance Scalar Field</string>
  1312. </property>
  1313. </action>
  1314. <action name="actionClearColor">
  1315. <property name="icon">
  1316. <iconset resource="../icons.qrc">
  1317. <normaloff>:/CC/images/ccDelete.png</normaloff>:/CC/images/ccDelete.png</iconset>
  1318. </property>
  1319. <property name="text">
  1320. <string>Clear</string>
  1321. </property>
  1322. <property name="toolTip">
  1323. <string>Clear colors</string>
  1324. </property>
  1325. <property name="statusTip">
  1326. <string>Clear colors</string>
  1327. </property>
  1328. </action>
  1329. <action name="actionRGBGaussianFilter">
  1330. <property name="icon">
  1331. <iconset resource="../icons.qrc">
  1332. <normaloff>:/CC/images/ccGaussianFilter.png</normaloff>:/CC/images/ccGaussianFilter.png</iconset>
  1333. </property>
  1334. <property name="text">
  1335. <string>Gaussian filter</string>
  1336. </property>
  1337. <property name="toolTip">
  1338. <string>Compute gaussian filter</string>
  1339. </property>
  1340. <property name="statusTip">
  1341. <string>Compute gaussian filter</string>
  1342. </property>
  1343. </action>
  1344. <action name="actionRGBBilateralFilter">
  1345. <property name="icon">
  1346. <iconset resource="../icons.qrc">
  1347. <normaloff>:/CC/images/ccBilateralFilter.png</normaloff>:/CC/images/ccBilateralFilter.png</iconset>
  1348. </property>
  1349. <property name="text">
  1350. <string>Bilateral filter</string>
  1351. </property>
  1352. <property name="toolTip">
  1353. <string>Compute bilateral filter</string>
  1354. </property>
  1355. <property name="statusTip">
  1356. <string>Compute bilateral filter</string>
  1357. </property>
  1358. </action>
  1359. <action name="actionRGBMeanFilter">
  1360. <property name="text">
  1361. <string>Mean filter</string>
  1362. </property>
  1363. <property name="toolTip">
  1364. <string>Compute mean filter</string>
  1365. </property>
  1366. <property name="statusTip">
  1367. <string>Compute mean filter</string>
  1368. </property>
  1369. </action>
  1370. <action name="actionRGBMedianFilter">
  1371. <property name="text">
  1372. <string>Median filter</string>
  1373. </property>
  1374. <property name="toolTip">
  1375. <string>Compute median filter</string>
  1376. </property>
  1377. <property name="statusTip">
  1378. <string>Compute median filter</string>
  1379. </property>
  1380. </action>
  1381. <action name="actionClearNormals">
  1382. <property name="icon">
  1383. <iconset resource="../icons.qrc">
  1384. <normaloff>:/CC/images/ccDelete.png</normaloff>:/CC/images/ccDelete.png</iconset>
  1385. </property>
  1386. <property name="text">
  1387. <string>Clear</string>
  1388. </property>
  1389. <property name="toolTip">
  1390. <string>Delete normals</string>
  1391. </property>
  1392. <property name="statusTip">
  1393. <string>Delete normals</string>
  1394. </property>
  1395. </action>
  1396. <action name="actionResampleWithOctree">
  1397. <property name="text">
  1398. <string>Resample</string>
  1399. </property>
  1400. <property name="toolTip">
  1401. <string>Resample entity with octree</string>
  1402. </property>
  1403. <property name="statusTip">
  1404. <string>Resample entity with octree</string>
  1405. </property>
  1406. </action>
  1407. <action name="actionComputeMeshAA">
  1408. <property name="text">
  1409. <string>Delaunay 2.5D (XY plane)</string>
  1410. </property>
  1411. <property name="toolTip">
  1412. <string>Compute &quot;2D1/2&quot; mesh by projecting points on the XY plane</string>
  1413. </property>
  1414. <property name="statusTip">
  1415. <string>Compute &quot;2D1/2&quot; mesh by projecting points on the XY plane</string>
  1416. </property>
  1417. </action>
  1418. <action name="actionComputeMeshLS">
  1419. <property name="text">
  1420. <string>Delaunay 2.5D (best fitting plane)</string>
  1421. </property>
  1422. <property name="toolTip">
  1423. <string>Compute &quot;2D1/2&quot; mesh by projecting points on the (least squares) best fitting plane</string>
  1424. </property>
  1425. <property name="statusTip">
  1426. <string>Compute &quot;2D1/2&quot; mesh by projecting points on the (least squares) best fitting plane</string>
  1427. </property>
  1428. </action>
  1429. <action name="actionMeasureMeshSurface">
  1430. <property name="text">
  1431. <string>Measure surface</string>
  1432. </property>
  1433. <property name="toolTip">
  1434. <string>Measure mesh surface</string>
  1435. </property>
  1436. <property name="statusTip">
  1437. <string>Measure mesh surface</string>
  1438. </property>
  1439. </action>
  1440. <action name="actionCPS">
  1441. <property name="text">
  1442. <string>Closest Point Set</string>
  1443. </property>
  1444. <property name="toolTip">
  1445. <string>Compute closest point set</string>
  1446. </property>
  1447. <property name="statusTip">
  1448. <string>Compute closest point set</string>
  1449. </property>
  1450. </action>
  1451. <action name="actionDeleteAllSF">
  1452. <property name="text">
  1453. <string>Delete all (!)</string>
  1454. </property>
  1455. <property name="toolTip">
  1456. <string>Delete all scalar fields</string>
  1457. </property>
  1458. <property name="statusTip">
  1459. <string>Delete all scalar fields</string>
  1460. </property>
  1461. </action>
  1462. <action name="actionMultiplySF">
  1463. <property name="text">
  1464. <string>Multiply</string>
  1465. </property>
  1466. <property name="toolTip">
  1467. <string>Multiply scalar field by a constant</string>
  1468. </property>
  1469. <property name="statusTip">
  1470. <string>Multiply scalar field by a constant</string>
  1471. </property>
  1472. </action>
  1473. <action name="actionKMeans">
  1474. <property name="checkable">
  1475. <bool>true</bool>
  1476. </property>
  1477. <property name="text">
  1478. <string>K-Means</string>
  1479. </property>
  1480. <property name="toolTip">
  1481. <string>classify point (K-Means applied on a scalar field)</string>
  1482. </property>
  1483. <property name="statusTip">
  1484. <string>classify point (K-Means applied on a scalar field)</string>
  1485. </property>
  1486. </action>
  1487. <action name="actionFrontPropagation">
  1488. <property name="enabled">
  1489. <bool>false</bool>
  1490. </property>
  1491. <property name="text">
  1492. <string>Front propagation</string>
  1493. </property>
  1494. <property name="toolTip">
  1495. <string>Classify points by propagating a front on a scalar field</string>
  1496. </property>
  1497. <property name="statusTip">
  1498. <string>Classify points by propagating a front on a scalar field</string>
  1499. </property>
  1500. </action>
  1501. <action name="actionApplyScale">
  1502. <property name="text">
  1503. <string>Multiply/Scale</string>
  1504. </property>
  1505. <property name="toolTip">
  1506. <string>Multiply coordinates (separately)</string>
  1507. </property>
  1508. <property name="statusTip">
  1509. <string>Multiply coordinates (separately)</string>
  1510. </property>
  1511. </action>
  1512. <action name="actionMatchBBCenters">
  1513. <property name="text">
  1514. <string>Match bounding-box centers</string>
  1515. </property>
  1516. <property name="toolTip">
  1517. <string>Synchronize selected entities bbox centers</string>
  1518. </property>
  1519. <property name="statusTip">
  1520. <string>Synchronize selected entities bbox centers</string>
  1521. </property>
  1522. </action>
  1523. <action name="actionUnroll">
  1524. <property name="text">
  1525. <string>Unroll</string>
  1526. </property>
  1527. <property name="toolTip">
  1528. <string>Unroll entity on a cylinder or a cone</string>
  1529. </property>
  1530. <property name="statusTip">
  1531. <string>Unroll entity on a cylinder or a cone</string>
  1532. </property>
  1533. </action>
  1534. <action name="actionSFGradient">
  1535. <property name="icon">
  1536. <iconset resource="../icons.qrc">
  1537. <normaloff>:/CC/images/ccGradient.png</normaloff>:/CC/images/ccGradient.png</iconset>
  1538. </property>
  1539. <property name="text">
  1540. <string>Gradient</string>
  1541. </property>
  1542. </action>
  1543. <action name="actionZoomAndCenter">
  1544. <property name="icon">
  1545. <iconset resource="../icons.qrc">
  1546. <normaloff>:/CC/images/search.svg</normaloff>:/CC/images/search.svg</iconset>
  1547. </property>
  1548. <property name="text">
  1549. <string>Zoom &amp; Center</string>
  1550. </property>
  1551. <property name="iconText">
  1552. <string>ZoomCenter</string>
  1553. </property>
  1554. <property name="toolTip">
  1555. <string>Zoom and center on selected entities (Z)</string>
  1556. </property>
  1557. <property name="statusTip">
  1558. <string>Zoom and center on selected entities (Z)</string>
  1559. </property>
  1560. <property name="shortcut">
  1561. <string>Z</string>
  1562. </property>
  1563. </action>
  1564. <action name="actionSetViewTop">
  1565. <property name="icon">
  1566. <iconset resource="../icons.qrc">
  1567. <normaloff>:/CC/images/ccViewZpos.png</normaloff>:/CC/images/ccViewZpos.png</iconset>
  1568. </property>
  1569. <property name="text">
  1570. <string>Top View</string>
  1571. </property>
  1572. <property name="toolTip">
  1573. <string>Set top view</string>
  1574. </property>
  1575. <property name="statusTip">
  1576. <string>Set top view</string>
  1577. </property>
  1578. <property name="shortcut">
  1579. <string notr="true">8</string>
  1580. </property>
  1581. <property name="shortcutContext">
  1582. <enum>Qt::ApplicationShortcut</enum>
  1583. </property>
  1584. </action>
  1585. <action name="actionSetViewFront">
  1586. <property name="icon">
  1587. <iconset resource="../icons.qrc">
  1588. <normaloff>:/CC/images/ccViewYpos.png</normaloff>:/CC/images/ccViewYpos.png</iconset>
  1589. </property>
  1590. <property name="text">
  1591. <string>Front View</string>
  1592. </property>
  1593. <property name="toolTip">
  1594. <string>Set front view</string>
  1595. </property>
  1596. <property name="statusTip">
  1597. <string>Set front view</string>
  1598. </property>
  1599. <property name="shortcut">
  1600. <string notr="true">5</string>
  1601. </property>
  1602. <property name="shortcutContext">
  1603. <enum>Qt::ApplicationShortcut</enum>
  1604. </property>
  1605. </action>
  1606. <action name="actionSetViewBack">
  1607. <property name="icon">
  1608. <iconset resource="../icons.qrc">
  1609. <normaloff>:/CC/images/ccViewYneg.png</normaloff>:/CC/images/ccViewYneg.png</iconset>
  1610. </property>
  1611. <property name="text">
  1612. <string>Back View</string>
  1613. </property>
  1614. <property name="toolTip">
  1615. <string>Set back view</string>
  1616. </property>
  1617. <property name="statusTip">
  1618. <string>Set back view</string>
  1619. </property>
  1620. <property name="shortcut">
  1621. <string notr="true">0</string>
  1622. </property>
  1623. <property name="shortcutContext">
  1624. <enum>Qt::ApplicationShortcut</enum>
  1625. </property>
  1626. </action>
  1627. <action name="actionSetViewLeft">
  1628. <property name="icon">
  1629. <iconset resource="../icons.qrc">
  1630. <normaloff>:/CC/images/ccViewXpos.png</normaloff>:/CC/images/ccViewXpos.png</iconset>
  1631. </property>
  1632. <property name="text">
  1633. <string>Left Side View</string>
  1634. </property>
  1635. <property name="toolTip">
  1636. <string>Set left side view</string>
  1637. </property>
  1638. <property name="statusTip">
  1639. <string>Set left side view</string>
  1640. </property>
  1641. <property name="shortcut">
  1642. <string notr="true">4</string>
  1643. </property>
  1644. <property name="shortcutContext">
  1645. <enum>Qt::ApplicationShortcut</enum>
  1646. </property>
  1647. </action>
  1648. <action name="actionSetViewRight">
  1649. <property name="icon">
  1650. <iconset resource="../icons.qrc">
  1651. <normaloff>:/CC/images/ccViewXneg.png</normaloff>:/CC/images/ccViewXneg.png</iconset>
  1652. </property>
  1653. <property name="text">
  1654. <string>Right Side View</string>
  1655. </property>
  1656. <property name="toolTip">
  1657. <string>Set right side view</string>
  1658. </property>
  1659. <property name="statusTip">
  1660. <string>Set right side view</string>
  1661. </property>
  1662. <property name="shortcut">
  1663. <string notr="true">6</string>
  1664. </property>
  1665. <property name="shortcutContext">
  1666. <enum>Qt::ApplicationShortcut</enum>
  1667. </property>
  1668. </action>
  1669. <action name="actionSetViewBottom">
  1670. <property name="icon">
  1671. <iconset resource="../icons.qrc">
  1672. <normaloff>:/CC/images/ccViewZneg.png</normaloff>:/CC/images/ccViewZneg.png</iconset>
  1673. </property>
  1674. <property name="text">
  1675. <string>Bottom View</string>
  1676. </property>
  1677. <property name="toolTip">
  1678. <string>Set bottom view</string>
  1679. </property>
  1680. <property name="statusTip">
  1681. <string>Set bottom view</string>
  1682. </property>
  1683. <property name="shortcut">
  1684. <string notr="true">2</string>
  1685. </property>
  1686. <property name="shortcutContext">
  1687. <enum>Qt::ApplicationShortcut</enum>
  1688. </property>
  1689. </action>
  1690. <action name="actionDisplayMainTools">
  1691. <property name="checkable">
  1692. <bool>true</bool>
  1693. </property>
  1694. <property name="checked">
  1695. <bool>true</bool>
  1696. </property>
  1697. <property name="text">
  1698. <string>Main</string>
  1699. </property>
  1700. <property name="toolTip">
  1701. <string>Show/hide main toolbar</string>
  1702. </property>
  1703. <property name="statusTip">
  1704. <string>Show/hide main toolbar</string>
  1705. </property>
  1706. </action>
  1707. <action name="actionDisplayViewTools">
  1708. <property name="checkable">
  1709. <bool>true</bool>
  1710. </property>
  1711. <property name="checked">
  1712. <bool>true</bool>
  1713. </property>
  1714. <property name="text">
  1715. <string>View</string>
  1716. </property>
  1717. <property name="toolTip">
  1718. <string>Show/hide view toolbar</string>
  1719. </property>
  1720. <property name="statusTip">
  1721. <string>Show/hide view toolbar</string>
  1722. </property>
  1723. </action>
  1724. <action name="actionDisplayScalarFieldsTools">
  1725. <property name="checkable">
  1726. <bool>true</bool>
  1727. </property>
  1728. <property name="checked">
  1729. <bool>true</bool>
  1730. </property>
  1731. <property name="text">
  1732. <string>Scalar fields</string>
  1733. </property>
  1734. <property name="toolTip">
  1735. <string>Show/hide scalar fields toolbar</string>
  1736. </property>
  1737. <property name="statusTip">
  1738. <string>Show/hide scalar fields toolbar</string>
  1739. </property>
  1740. </action>
  1741. <action name="actionToggleSunLight">
  1742. <property name="text">
  1743. <string>Toggle Sun Light</string>
  1744. </property>
  1745. <property name="toolTip">
  1746. <string>Toggle sun light (active window)</string>
  1747. </property>
  1748. <property name="statusTip">
  1749. <string>Toggle sun light (active window)</string>
  1750. </property>
  1751. <property name="shortcut">
  1752. <string>F6</string>
  1753. </property>
  1754. <property name="shortcutContext">
  1755. <enum>Qt::ApplicationShortcut</enum>
  1756. </property>
  1757. </action>
  1758. <action name="actionToggleCustomLight">
  1759. <property name="text">
  1760. <string>Toggle Custom Light</string>
  1761. </property>
  1762. <property name="toolTip">
  1763. <string>Toggle custom light (active window)</string>
  1764. </property>
  1765. <property name="statusTip">
  1766. <string>Toggle custom light (active window)</string>
  1767. </property>
  1768. <property name="shortcut">
  1769. <string>F7</string>
  1770. </property>
  1771. <property name="shortcutContext">
  1772. <enum>Qt::ApplicationShortcut</enum>
  1773. </property>
  1774. </action>
  1775. <action name="actionGlobalZoom">
  1776. <property name="icon">
  1777. <iconset resource="../icons.qrc">
  1778. <normaloff>:/CC/images/ccGlobalZoom.png</normaloff>:/CC/images/ccGlobalZoom.png</iconset>
  1779. </property>
  1780. <property name="text">
  1781. <string>Global Zoom</string>
  1782. </property>
  1783. </action>
  1784. <action name="actionToggleCenteredPerspective">
  1785. <property name="icon">
  1786. <iconset resource="../icons.qrc">
  1787. <normaloff>:/CC/images/ccCenteredPerspective32.png</normaloff>:/CC/images/ccCenteredPerspective32.png</iconset>
  1788. </property>
  1789. <property name="text">
  1790. <string>Toggle Centered Perspective</string>
  1791. </property>
  1792. <property name="toolTip">
  1793. <string>Toggle perspective view (centered on objects) in current window</string>
  1794. </property>
  1795. <property name="statusTip">
  1796. <string>Toggle perspective view (centered on objects) in current window</string>
  1797. </property>
  1798. <property name="shortcut">
  1799. <string>F3</string>
  1800. </property>
  1801. <property name="shortcutContext">
  1802. <enum>Qt::ApplicationShortcut</enum>
  1803. </property>
  1804. </action>
  1805. <action name="actionToggleViewerBasedPerspective">
  1806. <property name="icon">
  1807. <iconset resource="../icons.qrc">
  1808. <normaloff>:/CC/images/ccViewerBasedPerspective32.png</normaloff>:/CC/images/ccViewerBasedPerspective32.png</iconset>
  1809. </property>
  1810. <property name="text">
  1811. <string>Toggle Viewer Based Perspective</string>
  1812. </property>
  1813. <property name="toolTip">
  1814. <string>Toggle perspective view (centered on viewer) in current window</string>
  1815. </property>
  1816. <property name="statusTip">
  1817. <string>Toggle perspective view (centered on viewer) in current window</string>
  1818. </property>
  1819. <property name="shortcut">
  1820. <string>F4</string>
  1821. </property>
  1822. <property name="shortcutContext">
  1823. <enum>Qt::ApplicationShortcut</enum>
  1824. </property>
  1825. </action>
  1826. <action name="actionRefresh">
  1827. <property name="icon">
  1828. <iconset resource="../icons.qrc">
  1829. <normaloff>:/CC/images/smallReset.png</normaloff>:/CC/images/smallReset.png</iconset>
  1830. </property>
  1831. <property name="text">
  1832. <string>Refresh</string>
  1833. </property>
  1834. <property name="shortcut">
  1835. <string>F5</string>
  1836. </property>
  1837. <property name="shortcutContext">
  1838. <enum>Qt::ApplicationShortcut</enum>
  1839. </property>
  1840. </action>
  1841. <action name="actionTestFrameRate">
  1842. <property name="text">
  1843. <string>Test Frame Rate</string>
  1844. </property>
  1845. </action>
  1846. <action name="actionRenderToFile">
  1847. <property name="text">
  1848. <string>Render to File</string>
  1849. </property>
  1850. </action>
  1851. <action name="actionAboutPlugins">
  1852. <property name="text">
  1853. <string>About Plugins...</string>
  1854. </property>
  1855. </action>
  1856. <action name="actionConvertToRGB">
  1857. <property name="icon">
  1858. <iconset resource="../icons.qrc">
  1859. <normaloff>:/CC/images/typeRgbCcolor.png</normaloff>:/CC/images/typeRgbCcolor.png</iconset>
  1860. </property>
  1861. <property name="text">
  1862. <string>Convert to RGB</string>
  1863. </property>
  1864. <property name="toolTip">
  1865. <string>Convert current scalar field to RGB colors</string>
  1866. </property>
  1867. </action>
  1868. <action name="actionShowDepthBuffer">
  1869. <property name="text">
  1870. <string>Create/show depth buffer</string>
  1871. </property>
  1872. </action>
  1873. <action name="actionExportDepthBuffer">
  1874. <property name="text">
  1875. <string>Export depth buffer</string>
  1876. </property>
  1877. </action>
  1878. <action name="actionModifySensor">
  1879. <property name="text">
  1880. <string>Edit</string>
  1881. </property>
  1882. </action>
  1883. <action name="actionRasterize">
  1884. <property name="icon">
  1885. <iconset resource="../icons.qrc">
  1886. <normaloff>:/CC/images/ccGrid.png</normaloff>:/CC/images/ccGrid.png</iconset>
  1887. </property>
  1888. <property name="text">
  1889. <string>Rasterize (and contour plot)</string>
  1890. </property>
  1891. <property name="toolTip">
  1892. <string>Convert a cloud to 2D raster (and optionally generate the contour plot)</string>
  1893. </property>
  1894. </action>
  1895. <action name="actionAlign">
  1896. <property name="text">
  1897. <string>Auto align clouds</string>
  1898. </property>
  1899. <property name="toolTip">
  1900. <string>Tries to automatically register (roughly) two points clouds</string>
  1901. </property>
  1902. <property name="statusTip">
  1903. <string>Tries to automatically register (roughly) two points clouds</string>
  1904. </property>
  1905. </action>
  1906. <action name="actionSubsample">
  1907. <property name="icon">
  1908. <iconset resource="../icons.qrc">
  1909. <normaloff>:/CC/images/ccSampleCloud.png</normaloff>:/CC/images/ccSampleCloud.png</iconset>
  1910. </property>
  1911. <property name="text">
  1912. <string>Subsample</string>
  1913. </property>
  1914. <property name="toolTip">
  1915. <string>Subsample a point cloud</string>
  1916. </property>
  1917. <property name="statusTip">
  1918. <string>Subsample a point cloud</string>
  1919. </property>
  1920. </action>
  1921. <action name="actionLoadShader">
  1922. <property name="enabled">
  1923. <bool>false</bool>
  1924. </property>
  1925. <property name="text">
  1926. <string>Load shader</string>
  1927. </property>
  1928. </action>
  1929. <action name="actionDeleteShader">
  1930. <property name="enabled">
  1931. <bool>false</bool>
  1932. </property>
  1933. <property name="text">
  1934. <string>Delete shader</string>
  1935. </property>
  1936. </action>
  1937. <action name="actionPointPicking">
  1938. <property name="icon">
  1939. <iconset resource="../icons.qrc">
  1940. <normaloff>:/CC/images/ccPointPicking.png</normaloff>:/CC/images/ccPointPicking.png</iconset>
  1941. </property>
  1942. <property name="text">
  1943. <string>Point picking</string>
  1944. </property>
  1945. <property name="toolTip">
  1946. <string>Point picking (point information, distance between 2 points, angles between 3 points, etc.)</string>
  1947. </property>
  1948. <property name="statusTip">
  1949. <string>Point picking (point information, distance between 2 points, angles between 3 points, etc.)</string>
  1950. </property>
  1951. </action>
  1952. <action name="actionComputeBestFitBB">
  1953. <property name="text">
  1954. <string>Bounding box P.C.A. fit</string>
  1955. </property>
  1956. <property name="toolTip">
  1957. <string>Makes BB fit principal components (rotates entity!)</string>
  1958. </property>
  1959. <property name="statusTip">
  1960. <string>Makes BB fit principal components (rotates entity!)</string>
  1961. </property>
  1962. </action>
  1963. <action name="actionEditCamera">
  1964. <property name="icon">
  1965. <iconset resource="../icons.qrc">
  1966. <normaloff>:/CC/images/photo-camera.svg</normaloff>:/CC/images/photo-camera.svg</iconset>
  1967. </property>
  1968. <property name="text">
  1969. <string>Camera settings</string>
  1970. </property>
  1971. </action>
  1972. <action name="actionPointListPicking">
  1973. <property name="icon">
  1974. <iconset resource="../icons.qrc">
  1975. <normaloff>:/CC/images/ccPointListPicking.png</normaloff>:/CC/images/ccPointListPicking.png</iconset>
  1976. </property>
  1977. <property name="text">
  1978. <string>Point list picking</string>
  1979. </property>
  1980. <property name="statusTip">
  1981. <string>Pick several points (and export them to ASCII file, a new cloud, etc.)</string>
  1982. </property>
  1983. </action>
  1984. <action name="actionCurvature">
  1985. <property name="text">
  1986. <string>Curvature</string>
  1987. </property>
  1988. </action>
  1989. <action name="actionRoughness">
  1990. <property name="enabled">
  1991. <bool>false</bool>
  1992. </property>
  1993. <property name="text">
  1994. <string>Roughness</string>
  1995. </property>
  1996. </action>
  1997. <action name="actionFitPlane">
  1998. <property name="text">
  1999. <string>Plane</string>
  2000. </property>
  2001. <property name="toolTip">
  2002. <string>Fit a plane on a set of point</string>
  2003. </property>
  2004. </action>
  2005. <action name="actionRenameSF">
  2006. <property name="text">
  2007. <string>Rename</string>
  2008. </property>
  2009. </action>
  2010. <action name="actionFitQuadric">
  2011. <property name="text">
  2012. <string>2.5D quadric</string>
  2013. </property>
  2014. </action>
  2015. <action name="actionSNETest">
  2016. <property name="text">
  2017. <string>SNE test</string>
  2018. </property>
  2019. <property name="toolTip">
  2020. <string>Spherical Neighbourhood Extraction test</string>
  2021. </property>
  2022. <property name="statusTip">
  2023. <string>Spherical Neighbourhood Extraction test</string>
  2024. </property>
  2025. </action>
  2026. <action name="actionToggleVisibility">
  2027. <property name="text">
  2028. <string>Visibility</string>
  2029. </property>
  2030. <property name="toolTip">
  2031. <string>Toggle selected entities visibility (recursive)</string>
  2032. </property>
  2033. <property name="shortcut">
  2034. <string>V</string>
  2035. </property>
  2036. <property name="shortcutContext">
  2037. <enum>Qt::ApplicationShortcut</enum>
  2038. </property>
  2039. </action>
  2040. <action name="actionToggleNormals">
  2041. <property name="text">
  2042. <string>Normals</string>
  2043. </property>
  2044. <property name="toolTip">
  2045. <string>Toggle selected entities normals (recursive)</string>
  2046. </property>
  2047. <property name="shortcut">
  2048. <string>N</string>
  2049. </property>
  2050. <property name="shortcutContext">
  2051. <enum>Qt::ApplicationShortcut</enum>
  2052. </property>
  2053. </action>
  2054. <action name="actionToggleColors">
  2055. <property name="text">
  2056. <string>Colors</string>
  2057. </property>
  2058. <property name="toolTip">
  2059. <string>Toggle selected entities colors (recursive)</string>
  2060. </property>
  2061. <property name="shortcut">
  2062. <string>C</string>
  2063. </property>
  2064. <property name="shortcutContext">
  2065. <enum>Qt::ApplicationShortcut</enum>
  2066. </property>
  2067. </action>
  2068. <action name="actionToggleSF">
  2069. <property name="text">
  2070. <string>SF</string>
  2071. </property>
  2072. <property name="toolTip">
  2073. <string>Toggle selected entities SF (recursive)</string>
  2074. </property>
  2075. <property name="shortcut">
  2076. <string>S</string>
  2077. </property>
  2078. <property name="shortcutContext">
  2079. <enum>Qt::ApplicationShortcut</enum>
  2080. </property>
  2081. </action>
  2082. <action name="actionApplyTransformation">
  2083. <property name="text">
  2084. <string>Apply transformation</string>
  2085. </property>
  2086. <property name="toolTip">
  2087. <string>Apply rotation and/or translation</string>
  2088. </property>
  2089. <property name="shortcut">
  2090. <string>Ctrl+T</string>
  2091. </property>
  2092. </action>
  2093. <action name="actionSmoothMeshLaplacian">
  2094. <property name="text">
  2095. <string>Smooth (Laplacian)</string>
  2096. </property>
  2097. </action>
  2098. <action name="actionConvertNormalToHSV">
  2099. <property name="text">
  2100. <string>HSV colors</string>
  2101. </property>
  2102. </action>
  2103. <action name="actionSaveViewportAsObject">
  2104. <property name="icon">
  2105. <iconset resource="../icons.qrc">
  2106. <normaloff>:/CC/images/dbViewportSymbol.png</normaloff>:/CC/images/dbViewportSymbol.png</iconset>
  2107. </property>
  2108. <property name="text">
  2109. <string>Save viewport as object</string>
  2110. </property>
  2111. <property name="shortcut">
  2112. <string>Ctrl+V</string>
  2113. </property>
  2114. <property name="shortcutContext">
  2115. <enum>Qt::ApplicationShortcut</enum>
  2116. </property>
  2117. </action>
  2118. <action name="actionPickRotationCenter">
  2119. <property name="icon">
  2120. <iconset resource="../icons.qrc">
  2121. <normaloff>:/CC/images/ccPickCenter.png</normaloff>:/CC/images/ccPickCenter.png</iconset>
  2122. </property>
  2123. <property name="text">
  2124. <string>Pick rotation center</string>
  2125. </property>
  2126. <property name="shortcut">
  2127. <string>P</string>
  2128. </property>
  2129. <property name="shortcutContext">
  2130. <enum>Qt::ApplicationShortcut</enum>
  2131. </property>
  2132. </action>
  2133. <action name="actionComputeDistancesFromSensor">
  2134. <property name="text">
  2135. <string>Compute Ranges</string>
  2136. </property>
  2137. <property name="toolTip">
  2138. <string>Compute ranges from sensor</string>
  2139. </property>
  2140. </action>
  2141. <action name="actionBilateralFilter">
  2142. <property name="icon">
  2143. <iconset resource="../icons.qrc">
  2144. <normaloff>:/CC/images/ccBilateralFilter.png</normaloff>:/CC/images/ccBilateralFilter.png</iconset>
  2145. </property>
  2146. <property name="text">
  2147. <string>Bilateral filter</string>
  2148. </property>
  2149. <property name="toolTip">
  2150. <string>Compute bilateral filter</string>
  2151. </property>
  2152. </action>
  2153. <action name="actionComputeScatteringAngles">
  2154. <property name="text">
  2155. <string>Compute Scattering Angles</string>
  2156. </property>
  2157. <property name="toolTip">
  2158. <string>Compute laser beam scattering angle for a cloud with normals</string>
  2159. </property>
  2160. </action>
  2161. <action name="actionToggleActiveSFColorScale">
  2162. <property name="text">
  2163. <string>Toggle color scale</string>
  2164. </property>
  2165. <property name="iconText">
  2166. <string>Toggle active scalar field color scale</string>
  2167. </property>
  2168. <property name="toolTip">
  2169. <string>Toggle active scalar field color scale</string>
  2170. </property>
  2171. <property name="shortcut">
  2172. <string>Shift+C</string>
  2173. </property>
  2174. <property name="shortcutContext">
  2175. <enum>Qt::ApplicationShortcut</enum>
  2176. </property>
  2177. </action>
  2178. <action name="actionShowActiveSFPrevious">
  2179. <property name="text">
  2180. <string>Show previous SF</string>
  2181. </property>
  2182. <property name="iconText">
  2183. <string>Show previous scalar field for active entity</string>
  2184. </property>
  2185. <property name="toolTip">
  2186. <string>Show previous scalar field for active entity</string>
  2187. </property>
  2188. <property name="shortcut">
  2189. <string>Shift+Up</string>
  2190. </property>
  2191. <property name="shortcutContext">
  2192. <enum>Qt::ApplicationShortcut</enum>
  2193. </property>
  2194. </action>
  2195. <action name="actionShowActiveSFNext">
  2196. <property name="text">
  2197. <string>Show next SF</string>
  2198. </property>
  2199. <property name="iconText">
  2200. <string>Show next scalar field for active entity</string>
  2201. </property>
  2202. <property name="toolTip">
  2203. <string>Show next scalar field for active entity</string>
  2204. </property>
  2205. <property name="shortcut">
  2206. <string>Shift+Down</string>
  2207. </property>
  2208. </action>
  2209. <action name="actionPointPairsAlign">
  2210. <property name="icon">
  2211. <iconset resource="../icons.qrc">
  2212. <normaloff>:/CC/images/ccAlign.png</normaloff>:/CC/images/ccAlign.png</iconset>
  2213. </property>
  2214. <property name="text">
  2215. <string>Align (point pairs picking)</string>
  2216. </property>
  2217. <property name="toolTip">
  2218. <string>Aligns two clouds by picking (at least 4) equivalent point pairs</string>
  2219. </property>
  2220. <property name="statusTip">
  2221. <string>Aligns two clouds by picking (at least 4) equivalent point pairs</string>
  2222. </property>
  2223. </action>
  2224. <action name="actionAddConstantSF">
  2225. <property name="icon">
  2226. <iconset resource="../icons.qrc">
  2227. <normaloff>:/CC/images/ccAddConstSF.png</normaloff>:/CC/images/ccAddConstSF.png</iconset>
  2228. </property>
  2229. <property name="text">
  2230. <string>Add constant SF</string>
  2231. </property>
  2232. </action>
  2233. <action name="actionExportCoordToSF">
  2234. <property name="text">
  2235. <string>Export coordinate(s) to SF(s)</string>
  2236. </property>
  2237. <property name="toolTip">
  2238. <string>Export X, Y and/or Z coordinates to scalar field(s)</string>
  2239. </property>
  2240. </action>
  2241. <action name="actionSubdivideMesh">
  2242. <property name="text">
  2243. <string>Subdivide</string>
  2244. </property>
  2245. </action>
  2246. <action name="actionToggleShowName">
  2247. <property name="text">
  2248. <string>3D name</string>
  2249. </property>
  2250. <property name="toolTip">
  2251. <string>Toggle selected entities 3D name display (recursive)</string>
  2252. </property>
  2253. <property name="shortcut">
  2254. <string>D</string>
  2255. </property>
  2256. <property name="shortcutContext">
  2257. <enum>Qt::ApplicationShortcut</enum>
  2258. </property>
  2259. </action>
  2260. <action name="actionPrimitiveFactory">
  2261. <property name="icon">
  2262. <iconset resource="../icons.qrc">
  2263. <normaloff>:/CC/images/dbMiscGeomSymbol.png</normaloff>:/CC/images/dbMiscGeomSymbol.png</iconset>
  2264. </property>
  2265. <property name="text">
  2266. <string>Primitive factory</string>
  2267. </property>
  2268. </action>
  2269. <action name="actionToggleMaterials">
  2270. <property name="text">
  2271. <string>Materials/textures</string>
  2272. </property>
  2273. <property name="toolTip">
  2274. <string>Toggle selected entities materials/textures (recursive)</string>
  2275. </property>
  2276. <property name="shortcut">
  2277. <string>M</string>
  2278. </property>
  2279. <property name="shortcutContext">
  2280. <enum>Qt::ApplicationShortcut</enum>
  2281. </property>
  2282. </action>
  2283. <action name="actionSetOrthoView">
  2284. <property name="icon">
  2285. <iconset resource="../icons.qrc">
  2286. <normaloff>:/CC/images/ccOrthoMode32.png</normaloff>:/CC/images/ccOrthoMode32.png</iconset>
  2287. </property>
  2288. <property name="text">
  2289. <string>Orthographic projection</string>
  2290. </property>
  2291. <property name="toolTip">
  2292. <string>Set orthographic projection for current 3D View</string>
  2293. </property>
  2294. <property name="statusTip">
  2295. <string>Set orthographic projection for current 3D View</string>
  2296. </property>
  2297. </action>
  2298. <action name="actionSetCenteredPerspectiveView">
  2299. <property name="icon">
  2300. <iconset resource="../icons.qrc">
  2301. <normaloff>:/CC/images/ccCenteredPerspective32.png</normaloff>:/CC/images/ccCenteredPerspective32.png</iconset>
  2302. </property>
  2303. <property name="text">
  2304. <string>Object-centered perspective</string>
  2305. </property>
  2306. <property name="toolTip">
  2307. <string>Set object-centered perspective for current 3D View</string>
  2308. </property>
  2309. <property name="statusTip">
  2310. <string>Set object-centered perspective for current 3D View</string>
  2311. </property>
  2312. </action>
  2313. <action name="actionSetViewerPerspectiveView">
  2314. <property name="icon">
  2315. <iconset resource="../icons.qrc">
  2316. <normaloff>:/CC/images/ccViewerBasedPerspective32.png</normaloff>:/CC/images/ccViewerBasedPerspective32.png</iconset>
  2317. </property>
  2318. <property name="text">
  2319. <string>Viewer-based perspective</string>
  2320. </property>
  2321. <property name="toolTip">
  2322. <string>Set viewer-based perspective for current 3D View</string>
  2323. </property>
  2324. <property name="statusTip">
  2325. <string>Set viewer-based perspective for current 3D View</string>
  2326. </property>
  2327. </action>
  2328. <action name="actionSetPivotAlwaysOn">
  2329. <property name="icon">
  2330. <iconset resource="../icons.qrc">
  2331. <normaloff>:/CC/images/ccPivotOn.png</normaloff>:/CC/images/ccPivotOn.png</iconset>
  2332. </property>
  2333. <property name="text">
  2334. <string>Always visible</string>
  2335. </property>
  2336. <property name="toolTip">
  2337. <string>Pivot always visible</string>
  2338. </property>
  2339. <property name="statusTip">
  2340. <string>Pivot always visible</string>
  2341. </property>
  2342. </action>
  2343. <action name="actionSetPivotRotationOnly">
  2344. <property name="icon">
  2345. <iconset resource="../icons.qrc">
  2346. <normaloff>:/CC/images/ccPivotAuto.png</normaloff>:/CC/images/ccPivotAuto.png</iconset>
  2347. </property>
  2348. <property name="text">
  2349. <string>Rotation only</string>
  2350. </property>
  2351. <property name="toolTip">
  2352. <string>Pivot visible when rotating</string>
  2353. </property>
  2354. <property name="statusTip">
  2355. <string>Pivot visible when rotating</string>
  2356. </property>
  2357. </action>
  2358. <action name="actionSetPivotOff">
  2359. <property name="icon">
  2360. <iconset resource="../icons.qrc">
  2361. <normaloff>:/CC/images/ccPivotOff.png</normaloff>:/CC/images/ccPivotOff.png</iconset>
  2362. </property>
  2363. <property name="text">
  2364. <string>Never visible</string>
  2365. </property>
  2366. <property name="toolTip">
  2367. <string>Pivot never visible</string>
  2368. </property>
  2369. <property name="statusTip">
  2370. <string>Pivot never visible</string>
  2371. </property>
  2372. </action>
  2373. <action name="actionSetViewIso1">
  2374. <property name="icon">
  2375. <iconset resource="../icons.qrc">
  2376. <normaloff>:/CC/images/ccViewIso1.png</normaloff>:/CC/images/ccViewIso1.png</iconset>
  2377. </property>
  2378. <property name="text">
  2379. <string>Iso 1</string>
  2380. </property>
  2381. <property name="toolTip">
  2382. <string>Set view to 'front' isometric</string>
  2383. </property>
  2384. <property name="statusTip">
  2385. <string>Set view to 'front' isometric</string>
  2386. </property>
  2387. <property name="shortcut">
  2388. <string notr="true">7</string>
  2389. </property>
  2390. <property name="shortcutContext">
  2391. <enum>Qt::ApplicationShortcut</enum>
  2392. </property>
  2393. </action>
  2394. <action name="actionSetViewIso2">
  2395. <property name="icon">
  2396. <iconset resource="../icons.qrc">
  2397. <normaloff>:/CC/images/ccViewIso2.png</normaloff>:/CC/images/ccViewIso2.png</iconset>
  2398. </property>
  2399. <property name="text">
  2400. <string>Iso 2</string>
  2401. </property>
  2402. <property name="toolTip">
  2403. <string>Set view to 'back' isometric</string>
  2404. </property>
  2405. <property name="statusTip">
  2406. <string>Set view to 'back' isometric</string>
  2407. </property>
  2408. <property name="shortcut">
  2409. <string notr="true">9</string>
  2410. </property>
  2411. <property name="shortcutContext">
  2412. <enum>Qt::ApplicationShortcut</enum>
  2413. </property>
  2414. </action>
  2415. <action name="actionConvertTextureToColor">
  2416. <property name="icon">
  2417. <iconset resource="../icons.qrc">
  2418. <normaloff>:/CC/images/typeRgbCcolor.png</normaloff>:/CC/images/typeRgbCcolor.png</iconset>
  2419. </property>
  2420. <property name="text">
  2421. <string>Convert texture/material to RGB</string>
  2422. </property>
  2423. </action>
  2424. <action name="actionOpenColorScalesManager">
  2425. <property name="icon">
  2426. <iconset resource="../icons.qrc">
  2427. <normaloff>:/CC/images/typeSF.png</normaloff>:/CC/images/typeSF.png</iconset>
  2428. </property>
  2429. <property name="text">
  2430. <string>Color Scales Manager</string>
  2431. </property>
  2432. <property name="toolTip">
  2433. <string>Open Color Scales Manager dialog</string>
  2434. </property>
  2435. <property name="shortcutContext">
  2436. <enum>Qt::ApplicationShortcut</enum>
  2437. </property>
  2438. </action>
  2439. <action name="actionCrossSection">
  2440. <property name="icon">
  2441. <iconset resource="../icons.qrc">
  2442. <normaloff>:/CC/images/ccClippingBox.png</normaloff>:/CC/images/ccClippingBox.png</iconset>
  2443. </property>
  2444. <property name="text">
  2445. <string>Cross Section</string>
  2446. </property>
  2447. <property name="statusTip">
  2448. <string>Cross Section</string>
  2449. </property>
  2450. <property name="shortcut">
  2451. <string>X</string>
  2452. </property>
  2453. </action>
  2454. <action name="actionEditGlobalShiftAndScale">
  2455. <property name="text">
  2456. <string>Edit global shift and scale</string>
  2457. </property>
  2458. </action>
  2459. <action name="actionScalarFieldFromColor">
  2460. <property name="text">
  2461. <string>Convert to Scalar field</string>
  2462. </property>
  2463. </action>
  2464. <action name="actionColorFromScalarField">
  2465. <property name="text">
  2466. <string>From Scalar fields</string>
  2467. </property>
  2468. </action>
  2469. <action name="actionComputeKdTree">
  2470. <property name="text">
  2471. <string>Compute Kd-tree</string>
  2472. </property>
  2473. </action>
  2474. <action name="actionTest">
  2475. <property name="text">
  2476. <string>test</string>
  2477. </property>
  2478. </action>
  2479. <action name="actionAddIdField">
  2480. <property name="text">
  2481. <string>Add point indexes as SF</string>
  2482. </property>
  2483. <property name="toolTip">
  2484. <string>Adds a scalar field with ordered integers for each point in the cloud</string>
  2485. </property>
  2486. </action>
  2487. <action name="actionFitFacet">
  2488. <property name="text">
  2489. <string>2D polygon (facet)</string>
  2490. </property>
  2491. </action>
  2492. <action name="actionAdjustZoom">
  2493. <property name="text">
  2494. <string>Adjust zoom</string>
  2495. </property>
  2496. <property name="toolTip">
  2497. <string>Adjusts zoom with a given pixel/unit ratio (orthographic projection only)</string>
  2498. </property>
  2499. </action>
  2500. <action name="actionSetSFAsCoord">
  2501. <property name="text">
  2502. <string>Set SF as coordinate(s)</string>
  2503. </property>
  2504. <property name="toolTip">
  2505. <string>Set SF as coordinate(s) (X, Y or Z)</string>
  2506. </property>
  2507. </action>
  2508. <action name="actionCloseAll">
  2509. <property name="text">
  2510. <string>Close all</string>
  2511. </property>
  2512. <property name="toolTip">
  2513. <string>Remove all entities currently loaded in the DB tree</string>
  2514. </property>
  2515. </action>
  2516. <action name="actionEditGlobalScale">
  2517. <property name="text">
  2518. <string>Edit global scale</string>
  2519. </property>
  2520. </action>
  2521. <action name="actionViewFromSensor">
  2522. <property name="icon">
  2523. <iconset resource="../icons.qrc">
  2524. <normaloff>:/CC/images/dbViewportSymbol.png</normaloff>:/CC/images/dbViewportSymbol.png</iconset>
  2525. </property>
  2526. <property name="text">
  2527. <string>View from sensor</string>
  2528. </property>
  2529. </action>
  2530. <action name="actionFindBiggestInnerRectangle">
  2531. <property name="text">
  2532. <string>Find biggest inner rectangle (2D)</string>
  2533. </property>
  2534. </action>
  2535. <action name="actionCreateGBLSensor">
  2536. <property name="text">
  2537. <string>Create</string>
  2538. </property>
  2539. </action>
  2540. <action name="actionCreateCameraSensor">
  2541. <property name="text">
  2542. <string>Create</string>
  2543. </property>
  2544. </action>
  2545. <action name="actionCheckPointsInsideFrustum">
  2546. <property name="text">
  2547. <string>Compute points visibility (with octree)</string>
  2548. </property>
  2549. </action>
  2550. <action name="actionProjectUncertainty">
  2551. <property name="text">
  2552. <string>Project Uncertainty</string>
  2553. </property>
  2554. </action>
  2555. <action name="actionOrientNormalsMST">
  2556. <property name="text">
  2557. <string>With Minimum Spanning Tree</string>
  2558. </property>
  2559. </action>
  2560. <action name="actionOrientNormalsFM">
  2561. <property name="text">
  2562. <string>With Fast Marching</string>
  2563. </property>
  2564. </action>
  2565. <action name="actionCNETest">
  2566. <property name="text">
  2567. <string>CNE test</string>
  2568. </property>
  2569. <property name="iconText">
  2570. <string>Cylindrical Neighbourhood Extraction test</string>
  2571. </property>
  2572. <property name="toolTip">
  2573. <string>Cylindrical Neighbourhood Extraction test</string>
  2574. </property>
  2575. </action>
  2576. <action name="actionApproximateDensity">
  2577. <property name="text">
  2578. <string>Approximate (dist. to nearest neighbor)</string>
  2579. </property>
  2580. </action>
  2581. <action name="actionComputeDensity">
  2582. <property name="text">
  2583. <string>Density</string>
  2584. </property>
  2585. <property name="toolTip">
  2586. <string>Compute density</string>
  2587. </property>
  2588. </action>
  2589. <action name="actionRemoveDuplicatePoints">
  2590. <property name="text">
  2591. <string>Remove duplicate points</string>
  2592. </property>
  2593. </action>
  2594. <action name="actionCrop">
  2595. <property name="text">
  2596. <string>Crop</string>
  2597. </property>
  2598. </action>
  2599. <action name="actionConvertNormalToDipDir">
  2600. <property name="text">
  2601. <string>Dip/Dip direction SFs</string>
  2602. </property>
  2603. </action>
  2604. <action name="actionExportCloudInfo">
  2605. <property name="text">
  2606. <string>Export cloud info</string>
  2607. </property>
  2608. <property name="toolTip">
  2609. <string>Export cloud info to a CSV file (name, size, barycenter, scalar fields info, etc.)</string>
  2610. </property>
  2611. <property name="shortcut">
  2612. <string>E</string>
  2613. </property>
  2614. </action>
  2615. <action name="actionInterpolateColors">
  2616. <property name="text">
  2617. <string>Interpolate from another entity</string>
  2618. </property>
  2619. <property name="toolTip">
  2620. <string>Interpolate colors from another entity (cloud or mesh) - color is taken from the nearest neighbor</string>
  2621. </property>
  2622. </action>
  2623. <action name="actionDistanceToBestFitQuadric3D">
  2624. <property name="text">
  2625. <string>Distance map to best-fit 3D quadric</string>
  2626. </property>
  2627. </action>
  2628. <action name="actionChangeColorLevels">
  2629. <property name="text">
  2630. <string>Levels</string>
  2631. </property>
  2632. </action>
  2633. <action name="actionResetGUIElementsPos">
  2634. <property name="text">
  2635. <string>Reset all GUI element positions</string>
  2636. </property>
  2637. <property name="toolTip">
  2638. <string>Reset all GUI element positions (after restart)</string>
  2639. </property>
  2640. </action>
  2641. <action name="actionConvertToRandomRGB">
  2642. <property name="text">
  2643. <string>Convert to random RGB</string>
  2644. </property>
  2645. </action>
  2646. <action name="actionNoiseFilter">
  2647. <property name="text">
  2648. <string>Noise filter</string>
  2649. </property>
  2650. <property name="toolTip">
  2651. <string>Noise filter (remove the points far from the - approximate - local surface)</string>
  2652. </property>
  2653. </action>
  2654. <action name="actionComputeStatParams2">
  2655. <property name="icon">
  2656. <iconset resource="../icons.qrc">
  2657. <normaloff>:/CC/images/ccComputeStat.png</normaloff>:/CC/images/ccComputeStat.png</iconset>
  2658. </property>
  2659. <property name="text">
  2660. <string>Compute stat. params (active SF)</string>
  2661. </property>
  2662. <property name="toolTip">
  2663. <string>Fits a statistical model on the active scalar field</string>
  2664. </property>
  2665. <property name="statusTip">
  2666. <string>Fits a statistical model on the active scalar field</string>
  2667. </property>
  2668. </action>
  2669. <action name="actionMeasureMeshVolume">
  2670. <property name="text">
  2671. <string>Measure volume</string>
  2672. </property>
  2673. </action>
  2674. <action name="actionFlagMeshVertices">
  2675. <property name="text">
  2676. <string>Flag vertices by type</string>
  2677. </property>
  2678. <property name="toolTip">
  2679. <string>Flag vertices by type: normal (0), border (1), non-manifold (2)</string>
  2680. </property>
  2681. </action>
  2682. <action name="actionToggleActivation">
  2683. <property name="text">
  2684. <string>Activation (not recursive)</string>
  2685. </property>
  2686. <property name="toolTip">
  2687. <string>Enable/disable selected entities (not recursive)</string>
  2688. </property>
  2689. <property name="shortcut">
  2690. <string>A</string>
  2691. </property>
  2692. <property name="shortcutContext">
  2693. <enum>Qt::ApplicationShortcut</enum>
  2694. </property>
  2695. </action>
  2696. <action name="actionLockRotationAxis">
  2697. <property name="checkable">
  2698. <bool>true</bool>
  2699. </property>
  2700. <property name="text">
  2701. <string>Lock rotation about an axis</string>
  2702. </property>
  2703. <property name="toolTip">
  2704. <string>Lock 3D camera rotation about an axis</string>
  2705. </property>
  2706. <property name="shortcut">
  2707. <string>L</string>
  2708. </property>
  2709. <property name="shortcutContext">
  2710. <enum>Qt::ApplicationShortcut</enum>
  2711. </property>
  2712. </action>
  2713. <action name="actionCreateCloudFromEntCenters">
  2714. <property name="text">
  2715. <string>Create cloud from selected entities centers</string>
  2716. </property>
  2717. </action>
  2718. <action name="actionComputeBestICPRmsMatrix">
  2719. <property name="text">
  2720. <string>Compute best registration RMS matrix</string>
  2721. </property>
  2722. <property name="toolTip">
  2723. <string>Computes the best registration between all couples among multiple entities and save the resulting RMS in a matrix (CSV) file</string>
  2724. </property>
  2725. </action>
  2726. <action name="actionEnterBubbleViewMode">
  2727. <property name="text">
  2728. <string>Enter bubble-view mode</string>
  2729. </property>
  2730. <property name="shortcut">
  2731. <string>B</string>
  2732. </property>
  2733. </action>
  2734. <action name="actionExtractSections">
  2735. <property name="icon">
  2736. <iconset resource="../icons.qrc">
  2737. <normaloff>:/CC/images/dbPolylineSymbol.png</normaloff>:/CC/images/dbPolylineSymbol.png</iconset>
  2738. </property>
  2739. <property name="text">
  2740. <string>Extract sections / Unfold</string>
  2741. </property>
  2742. <property name="toolTip">
  2743. <string>Extract cloud sections along polylines or unfold a cloud along a polyline</string>
  2744. </property>
  2745. </action>
  2746. <action name="actionConvertPolylinesToMesh">
  2747. <property name="text">
  2748. <string>Contour plot (polylines) to mesh</string>
  2749. </property>
  2750. <property name="toolTip">
  2751. <string>Contour plot (set of polylines) to a 2.5D mesh</string>
  2752. </property>
  2753. </action>
  2754. <action name="actionLevel">
  2755. <property name="icon">
  2756. <iconset resource="../icons.qrc">
  2757. <normaloff>:/CC/images/ccLevel.png</normaloff>:/CC/images/ccLevel.png</iconset>
  2758. </property>
  2759. <property name="text">
  2760. <string>Level</string>
  2761. </property>
  2762. <property name="toolTip">
  2763. <string>Pick three points to make a cloud or mesh 'level'</string>
  2764. </property>
  2765. </action>
  2766. <action name="actionFitSphere">
  2767. <property name="text">
  2768. <string>Sphere</string>
  2769. </property>
  2770. <property name="toolTip">
  2771. <string>Fits a sphere on the selected cloud</string>
  2772. </property>
  2773. </action>
  2774. <action name="actionMatchScales">
  2775. <property name="text">
  2776. <string>Match scales</string>
  2777. </property>
  2778. </action>
  2779. <action name="actionZoomIn">
  2780. <property name="text">
  2781. <string>Zoom in</string>
  2782. </property>
  2783. <property name="toolTip">
  2784. <string>Zoom in (current 3D view)</string>
  2785. </property>
  2786. <property name="shortcut">
  2787. <string extracomment="Zoom in shortcut">+</string>
  2788. </property>
  2789. </action>
  2790. <action name="actionZoomOut">
  2791. <property name="text">
  2792. <string>Zoom out</string>
  2793. </property>
  2794. <property name="toolTip">
  2795. <string>Zoom out (current 3D view)</string>
  2796. </property>
  2797. <property name="shortcut">
  2798. <string extracomment="Zoom in shortcut">=</string>
  2799. </property>
  2800. </action>
  2801. <action name="actionDistanceMap">
  2802. <property name="text">
  2803. <string>Distance map</string>
  2804. </property>
  2805. </action>
  2806. <action name="actionSORFilter">
  2807. <property name="icon">
  2808. <iconset resource="../icons.qrc">
  2809. <normaloff>:/CC/images/ccSORFilter.png</normaloff>:/CC/images/ccSORFilter.png</iconset>
  2810. </property>
  2811. <property name="text">
  2812. <string>SOR filter</string>
  2813. </property>
  2814. <property name="toolTip">
  2815. <string>Statistical Outlier Filter (remove the points far from their neighbors)</string>
  2816. </property>
  2817. </action>
  2818. <action name="actionEnableStereo">
  2819. <property name="checkable">
  2820. <bool>true</bool>
  2821. </property>
  2822. <property name="icon">
  2823. <iconset resource="../icons.qrc">
  2824. <normaloff>:/CC/images/ccStereo.png</normaloff>:/CC/images/ccStereo.png</iconset>
  2825. </property>
  2826. <property name="text">
  2827. <string>actionEnableStereo</string>
  2828. </property>
  2829. <property name="toolTip">
  2830. <string>Enable stereo mode (with red-blue or red-cyan glasses)</string>
  2831. </property>
  2832. <property name="shortcut">
  2833. <string>F10</string>
  2834. </property>
  2835. <property name="shortcutContext">
  2836. <enum>Qt::ApplicationShortcut</enum>
  2837. </property>
  2838. </action>
  2839. <action name="actionComputePointsVisibility">
  2840. <property name="text">
  2841. <string>Compute points visibility (with depth buffer)</string>
  2842. </property>
  2843. </action>
  2844. <action name="actionCompute2HalfDimVolume">
  2845. <property name="text">
  2846. <string>Compute 2.5D volume</string>
  2847. </property>
  2848. </action>
  2849. <action name="actionExclusiveFullScreen">
  2850. <property name="checkable">
  2851. <bool>true</bool>
  2852. </property>
  2853. <property name="icon">
  2854. <iconset resource="../icons.qrc">
  2855. <normaloff>:/CC/images/ccFullScreen.png</normaloff>:/CC/images/ccFullScreen.png</iconset>
  2856. </property>
  2857. <property name="text">
  2858. <string>Full screen (3D view)</string>
  2859. </property>
  2860. <property name="toolTip">
  2861. <string>Exclusive full screen (3D view)</string>
  2862. </property>
  2863. <property name="shortcut">
  2864. <string>F11</string>
  2865. </property>
  2866. <property name="shortcutContext">
  2867. <enum>Qt::ApplicationShortcut</enum>
  2868. </property>
  2869. </action>
  2870. <action name="actionEnableVisualDebugTraces">
  2871. <property name="text">
  2872. <string>Enable Visual Debug Traces</string>
  2873. </property>
  2874. <property name="toolTip">
  2875. <string>Enables visual debug traces (active 3D view)</string>
  2876. </property>
  2877. <property name="shortcut">
  2878. <string>Ctrl+D</string>
  2879. </property>
  2880. </action>
  2881. <action name="actionRGBToGreyScale">
  2882. <property name="text">
  2883. <string>Convert to grey scale</string>
  2884. </property>
  2885. <property name="toolTip">
  2886. <string>Convert RGB colors to grey scale colors</string>
  2887. </property>
  2888. </action>
  2889. <action name="actionTracePolyline">
  2890. <property name="icon">
  2891. <iconset resource="../icons.qrc">
  2892. <normaloff>:/CC/images/ccTracePolyline.png</normaloff>:/CC/images/ccTracePolyline.png</iconset>
  2893. </property>
  2894. <property name="text">
  2895. <string>Trace Polyline</string>
  2896. </property>
  2897. <property name="toolTip">
  2898. <string>Trace a polyline by point picking</string>
  2899. </property>
  2900. <property name="shortcut">
  2901. <string>Ctrl+P</string>
  2902. </property>
  2903. </action>
  2904. <action name="actionEnableQtWarnings">
  2905. <property name="checkable">
  2906. <bool>true</bool>
  2907. </property>
  2908. <property name="text">
  2909. <string>Enable Qt warnings in Console</string>
  2910. </property>
  2911. </action>
  2912. <action name="actionGlobalShiftSettings">
  2913. <property name="text">
  2914. <string>Global Shift settings</string>
  2915. </property>
  2916. <property name="toolTip">
  2917. <string>Set Global Shift &amp; Scale mechanism parameters</string>
  2918. </property>
  2919. </action>
  2920. <action name="actionEnableCameraLink">
  2921. <property name="checkable">
  2922. <bool>true</bool>
  2923. </property>
  2924. <property name="text">
  2925. <string>Camera link</string>
  2926. </property>
  2927. <property name="toolTip">
  2928. <string>Link the cameras of all 3D views
  2929. (so that they all move in the same way and at the same time)</string>
  2930. </property>
  2931. </action>
  2932. <action name="actionShowWaveDialog">
  2933. <property name="text">
  2934. <string>2D Waveform viewer</string>
  2935. </property>
  2936. </action>
  2937. <action name="actionCreatePlane">
  2938. <property name="text">
  2939. <string>Create</string>
  2940. </property>
  2941. <property name="toolTip">
  2942. <string>Create a plane</string>
  2943. </property>
  2944. </action>
  2945. <action name="actionEditPlane">
  2946. <property name="text">
  2947. <string>Edit</string>
  2948. </property>
  2949. <property name="toolTip">
  2950. <string>Edit the plane parameters</string>
  2951. </property>
  2952. </action>
  2953. <action name="actionCreateSurfaceBetweenTwoPolylines">
  2954. <property name="text">
  2955. <string>Create surface between two polylines</string>
  2956. </property>
  2957. </action>
  2958. <action name="actionMeshTwoPolylines">
  2959. <property name="text">
  2960. <string>Surface between 2 polylines</string>
  2961. </property>
  2962. </action>
  2963. <action name="actionFitPlaneProxy">
  2964. <property name="text">
  2965. <string>Fit</string>
  2966. </property>
  2967. <property name="toolTip">
  2968. <string>Fit a plane on a set of point</string>
  2969. </property>
  2970. </action>
  2971. <action name="actionEnhanceRGBWithIntensities">
  2972. <property name="text">
  2973. <string>Enhance with intensities</string>
  2974. </property>
  2975. </action>
  2976. <action name="actionMeshScanGrids">
  2977. <property name="text">
  2978. <string>Mesh scan grids</string>
  2979. </property>
  2980. <property name="toolTip">
  2981. <string>Mesh scan grids (structured point clouds)</string>
  2982. </property>
  2983. </action>
  2984. <action name="actionAutoPickRotationCenter">
  2985. <property name="checkable">
  2986. <bool>true</bool>
  2987. </property>
  2988. <property name="checked">
  2989. <bool>true</bool>
  2990. </property>
  2991. <property name="icon">
  2992. <iconset resource="../icons.qrc">
  2993. <normaloff>:/CC/images/ccPickCenterAuto.png</normaloff>:/CC/images/ccPickCenterAuto.png</iconset>
  2994. </property>
  2995. <property name="text">
  2996. <string>Auto-pick rotation center</string>
  2997. </property>
  2998. <property name="toolTip">
  2999. <string>Auto-pick rotation center (rotation is always placed at the middle of the screen if possible)</string>
  3000. </property>
  3001. <property name="shortcut">
  3002. <string>Shift+P</string>
  3003. </property>
  3004. <property name="shortcutContext">
  3005. <enum>Qt::ApplicationShortcut</enum>
  3006. </property>
  3007. </action>
  3008. <action name="actionShowCursor3DCoordinates">
  3009. <property name="checkable">
  3010. <bool>true</bool>
  3011. </property>
  3012. <property name="text">
  3013. <string>Show cursor coordinates</string>
  3014. </property>
  3015. <property name="toolTip">
  3016. <string>Show cursor coordinates (2D and 3D if possible)</string>
  3017. </property>
  3018. </action>
  3019. <action name="actionDeleteScanGrid">
  3020. <property name="text">
  3021. <string>Delete scan grids</string>
  3022. </property>
  3023. <property name="toolTip">
  3024. <string>Delete the underlying scan grids</string>
  3025. </property>
  3026. </action>
  3027. <action name="actionCompressFWFData">
  3028. <property name="text">
  3029. <string>Compress FWF data</string>
  3030. </property>
  3031. <property name="toolTip">
  3032. <string>Compress the associated FWF data (maybe interesting after interactive segmentation for instance)</string>
  3033. </property>
  3034. </action>
  3035. <action name="actionInterpolateSFs">
  3036. <property name="text">
  3037. <string>Interpolate from another entity</string>
  3038. </property>
  3039. <property name="toolTip">
  3040. <string>Interpolate scalar-field(s) from another cloud or mesh</string>
  3041. </property>
  3042. </action>
  3043. <action name="actionExportPlaneInfo">
  3044. <property name="text">
  3045. <string>Export plane info</string>
  3046. </property>
  3047. <property name="toolTip">
  3048. <string>Export plane info to a CSV file (name, width, height, center, normal, dip and dip direction, etc.)</string>
  3049. </property>
  3050. </action>
  3051. <action name="actionLock_rotation_about_arbitrary_axis">
  3052. <property name="text">
  3053. <string>Lock rotation about arbitrary axis</string>
  3054. </property>
  3055. </action>
  3056. <action name="actionSamplePointsOnPolyline">
  3057. <property name="text">
  3058. <string>Sample points</string>
  3059. </property>
  3060. </action>
  3061. <action name="actionNoTranslation">
  3062. <property name="text">
  3063. <string>None (English)</string>
  3064. </property>
  3065. </action>
  3066. <action name="actionComputeGeometricFeature">
  3067. <property name="text">
  3068. <string>Compute geometric features</string>
  3069. </property>
  3070. <property name="toolTip">
  3071. <string>Compute geometric features (density, curvature, roughness, etc.)</string>
  3072. </property>
  3073. </action>
  3074. <action name="actionBBMinCornerToOrigin">
  3075. <property name="text">
  3076. <string>Move bounding-box min corner to origin</string>
  3077. </property>
  3078. <property name="toolTip">
  3079. <string>Move the bounding-box min corner to the origin</string>
  3080. </property>
  3081. </action>
  3082. <action name="actionBBMaxCornerToOrigin">
  3083. <property name="text">
  3084. <string>Move bounding-box max corner to origin</string>
  3085. </property>
  3086. <property name="toolTip">
  3087. <string>Move the bounding-box max corner to the origin</string>
  3088. </property>
  3089. </action>
  3090. <action name="actionBBCenterToOrigin">
  3091. <property name="text">
  3092. <string>Move bounding-box center to origin</string>
  3093. </property>
  3094. <property name="toolTip">
  3095. <string>Move the bounding-box center to the origin</string>
  3096. </property>
  3097. </action>
  3098. <action name="actionFlipPlane">
  3099. <property name="text">
  3100. <string>Flip</string>
  3101. </property>
  3102. <property name="toolTip">
  3103. <string>Flip the selected plane</string>
  3104. </property>
  3105. </action>
  3106. <action name="actionComparePlanes">
  3107. <property name="text">
  3108. <string>Compare</string>
  3109. </property>
  3110. <property name="toolTip">
  3111. <string>Compare two planes (angle + distance)</string>
  3112. </property>
  3113. </action>
  3114. <action name="actionFlipMeshTriangles">
  3115. <property name="text">
  3116. <string>Flip triangles</string>
  3117. </property>
  3118. <property name="toolTip">
  3119. <string>Flip triangles (if vertices are ordered in the non-direct order)</string>
  3120. </property>
  3121. </action>
  3122. <action name="actionCloudPrimitiveDist">
  3123. <property name="icon">
  3124. <iconset resource="../icons.qrc">
  3125. <normaloff>:/CC/images/ccCloudPrimitiveDistance.png</normaloff>:/CC/images/ccCloudPrimitiveDistance.png</iconset>
  3126. </property>
  3127. <property name="text">
  3128. <string>Cloud/Primitive Dist</string>
  3129. </property>
  3130. <property name="toolTip">
  3131. <string>Compute cloud/Primitive distance</string>
  3132. </property>
  3133. <property name="statusTip">
  3134. <string>Compute cloud/Primitive distance</string>
  3135. </property>
  3136. </action>
  3137. <action name="actionExportNormalToSF">
  3138. <property name="text">
  3139. <string>Export normals to SF(s)</string>
  3140. </property>
  3141. <property name="toolTip">
  3142. <string>Export normals to one or several scalar fields</string>
  3143. </property>
  3144. </action>
  3145. <action name="actionSmoothPolyline">
  3146. <property name="text">
  3147. <string>Smooth</string>
  3148. </property>
  3149. </action>
  3150. <action name="actionResetAllVBOs">
  3151. <property name="text">
  3152. <string>Reset all VBOs</string>
  3153. </property>
  3154. <property name="toolTip">
  3155. <string>Reset all VBOs (unload GPU memory)</string>
  3156. </property>
  3157. </action>
  3158. <action name="actionCreateSinglePointCloud">
  3159. <property name="text">
  3160. <string>Create single point cloud</string>
  3161. </property>
  3162. <property name="toolTip">
  3163. <string>Create a cloud with a single point</string>
  3164. </property>
  3165. <property name="statusTip">
  3166. <string>Create a cloud with a single point</string>
  3167. </property>
  3168. <property name="whatsThis">
  3169. <string/>
  3170. </property>
  3171. </action>
  3172. <action name="actionPasteCloudFromClipboard">
  3173. <property name="text">
  3174. <string>Paste from clipboard</string>
  3175. </property>
  3176. <property name="toolTip">
  3177. <string>Paste from ASCII/text data stored in the clipboard</string>
  3178. </property>
  3179. <property name="statusTip">
  3180. <string>Paste from ASCII/text data stored in the clipboard</string>
  3181. </property>
  3182. <property name="shortcut">
  3183. <string>Alt+P</string>
  3184. </property>
  3185. </action>
  3186. <action name="actionSplitCloudUsingSF">
  3187. <property name="text">
  3188. <string>Split cloud (integer values)</string>
  3189. </property>
  3190. <property name="toolTip">
  3191. <string>Split the selected cloud using the current scalar field.
  3192. The active scalar field should have integer values.</string>
  3193. </property>
  3194. </action>
  3195. <action name="actionAddClassificationSF">
  3196. <property name="icon">
  3197. <iconset resource="../icons.qrc">
  3198. <normaloff>:/CC/images/ccAddConstSF.png</normaloff>:/CC/images/ccAddConstSF.png</iconset>
  3199. </property>
  3200. <property name="text">
  3201. <string>Add classification SF</string>
  3202. </property>
  3203. <property name="toolTip">
  3204. <string>Add classification SF (shorcut to 'Add constant SF')</string>
  3205. </property>
  3206. </action>
  3207. <action name="actionRestoreWindowOnStartup">
  3208. <property name="checkable">
  3209. <bool>true</bool>
  3210. </property>
  3211. <property name="checked">
  3212. <bool>true</bool>
  3213. </property>
  3214. <property name="text">
  3215. <string>Restore window geometry on startup</string>
  3216. </property>
  3217. </action>
  3218. <action name="actionShiftPointsAlongNormals">
  3219. <property name="text">
  3220. <string>Shift points along normals</string>
  3221. </property>
  3222. <property name="toolTip">
  3223. <string>Shift the points of the selected cloud along their normals</string>
  3224. </property>
  3225. </action>
  3226. <action name="actionFitCircle">
  3227. <property name="text">
  3228. <string>Circle</string>
  3229. </property>
  3230. <property name="toolTip">
  3231. <string>Fits a circle on the selected cloud</string>
  3232. </property>
  3233. </action>
  3234. <action name="actionSetSFsAsNormal">
  3235. <property name="text">
  3236. <string>Set SF(s) as normal</string>
  3237. </property>
  3238. </action>
  3239. <action name="actionOpen_project">
  3240. <property name="text">
  3241. <string>Open project</string>
  3242. </property>
  3243. </action>
  3244. <action name="actionSaveProject">
  3245. <property name="icon">
  3246. <iconset resource="../icons.qrc">
  3247. <normaloff>:/CC/images/ccSaveProject.png</normaloff>:/CC/images/ccSaveProject.png</iconset>
  3248. </property>
  3249. <property name="text">
  3250. <string>Save project</string>
  3251. </property>
  3252. <property name="iconText">
  3253. <string>Save project (BIN)</string>
  3254. </property>
  3255. <property name="toolTip">
  3256. <string>Save all entities in a BIN file</string>
  3257. </property>
  3258. <property name="statusTip">
  3259. <string>Save all entities in a BIN file</string>
  3260. </property>
  3261. <property name="shortcut">
  3262. <string>Ctrl+Shift+S</string>
  3263. </property>
  3264. </action>
  3265. </widget>
  3266. <customwidgets>
  3267. <customwidget>
  3268. <class>ccCustomQTreeView</class>
  3269. <extends>QTreeView</extends>
  3270. <header location="global">ccDBRoot.h</header>
  3271. </customwidget>
  3272. <customwidget>
  3273. <class>ccCustomQListWidget</class>
  3274. <extends>QListWidget</extends>
  3275. <header location="global">ccConsole.h</header>
  3276. </customwidget>
  3277. </customwidgets>
  3278. <resources>
  3279. <include location="../icons.qrc"/>
  3280. </resources>
  3281. <connections>
  3282. <connection>
  3283. <sender>actionConsole</sender>
  3284. <signal>triggered(bool)</signal>
  3285. <receiver>DockableConsole</receiver>
  3286. <slot>setVisible(bool)</slot>
  3287. <hints>
  3288. <hint type="sourcelabel">
  3289. <x>-1</x>
  3290. <y>-1</y>
  3291. </hint>
  3292. <hint type="destinationlabel">
  3293. <x>554</x>
  3294. <y>747</y>
  3295. </hint>
  3296. </hints>
  3297. </connection>
  3298. <connection>
  3299. <sender>DockableConsole</sender>
  3300. <signal>visibilityChanged(bool)</signal>
  3301. <receiver>actionConsole</receiver>
  3302. <slot>setChecked(bool)</slot>
  3303. <hints>
  3304. <hint type="sourcelabel">
  3305. <x>554</x>
  3306. <y>747</y>
  3307. </hint>
  3308. <hint type="destinationlabel">
  3309. <x>-1</x>
  3310. <y>-1</y>
  3311. </hint>
  3312. </hints>
  3313. </connection>
  3314. <connection>
  3315. <sender>actionDisplayMainTools</sender>
  3316. <signal>toggled(bool)</signal>
  3317. <receiver>toolBarMainTools</receiver>
  3318. <slot>setVisible(bool)</slot>
  3319. <hints>
  3320. <hint type="sourcelabel">
  3321. <x>-1</x>
  3322. <y>-1</y>
  3323. </hint>
  3324. <hint type="destinationlabel">
  3325. <x>232</x>
  3326. <y>35</y>
  3327. </hint>
  3328. </hints>
  3329. </connection>
  3330. <connection>
  3331. <sender>actionDisplayScalarFieldsTools</sender>
  3332. <signal>toggled(bool)</signal>
  3333. <receiver>toolBarSFTools</receiver>
  3334. <slot>setVisible(bool)</slot>
  3335. <hints>
  3336. <hint type="sourcelabel">
  3337. <x>-1</x>
  3338. <y>-1</y>
  3339. </hint>
  3340. <hint type="destinationlabel">
  3341. <x>1023</x>
  3342. <y>54</y>
  3343. </hint>
  3344. </hints>
  3345. </connection>
  3346. <connection>
  3347. <sender>actionDisplayViewTools</sender>
  3348. <signal>toggled(bool)</signal>
  3349. <receiver>toolBarView</receiver>
  3350. <slot>setVisible(bool)</slot>
  3351. <hints>
  3352. <hint type="sourcelabel">
  3353. <x>-1</x>
  3354. <y>-1</y>
  3355. </hint>
  3356. <hint type="destinationlabel">
  3357. <x>34</x>
  3358. <y>150</y>
  3359. </hint>
  3360. </hints>
  3361. </connection>
  3362. <connection>
  3363. <sender>actionFitPlaneProxy</sender>
  3364. <signal>triggered()</signal>
  3365. <receiver>actionFitPlane</receiver>
  3366. <slot>trigger()</slot>
  3367. <hints>
  3368. <hint type="sourcelabel">
  3369. <x>-1</x>
  3370. <y>-1</y>
  3371. </hint>
  3372. <hint type="destinationlabel">
  3373. <x>-1</x>
  3374. <y>-1</y>
  3375. </hint>
  3376. </hints>
  3377. </connection>
  3378. <connection>
  3379. <sender>actionCreateSurfaceBetweenTwoPolylines</sender>
  3380. <signal>triggered()</signal>
  3381. <receiver>actionMeshTwoPolylines</receiver>
  3382. <slot>trigger()</slot>
  3383. <hints>
  3384. <hint type="sourcelabel">
  3385. <x>-1</x>
  3386. <y>-1</y>
  3387. </hint>
  3388. <hint type="destinationlabel">
  3389. <x>-1</x>
  3390. <y>-1</y>
  3391. </hint>
  3392. </hints>
  3393. </connection>
  3394. </connections>
  3395. </ui>