| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399 |
- <?xml version="1.0" encoding="UTF-8"?>
- <ui version="4.0">
- <class>MainWindow</class>
- <widget class="QMainWindow" name="MainWindow">
- <property name="geometry">
- <rect>
- <x>0</x>
- <y>0</y>
- <width>1024</width>
- <height>768</height>
- </rect>
- </property>
- <property name="sizePolicy">
- <sizepolicy hsizetype="Preferred" vsizetype="Maximum">
- <horstretch>0</horstretch>
- <verstretch>0</verstretch>
- </sizepolicy>
- </property>
- <property name="focusPolicy">
- <enum>Qt::ClickFocus</enum>
- </property>
- <property name="acceptDrops">
- <bool>false</bool>
- </property>
- <property name="windowTitle">
- <string>CloudCompare</string>
- </property>
- <property name="windowIcon">
- <iconset resource="../icons.qrc">
- <normaloff>:/CC/Icons/images/icon/cc_icon_16.png</normaloff>:/CC/Icons/images/icon/cc_icon_16.png</iconset>
- </property>
- <property name="autoFillBackground">
- <bool>true</bool>
- </property>
- <widget class="QWidget" name="centralwidget"/>
- <widget class="QMenuBar" name="menubar">
- <property name="geometry">
- <rect>
- <x>0</x>
- <y>0</y>
- <width>1024</width>
- <height>21</height>
- </rect>
- </property>
- <widget class="QMenu" name="menuFile">
- <property name="title">
- <string>&File</string>
- </property>
- <addaction name="actionOpen"/>
- <addaction name="actionSave"/>
- <addaction name="actionSaveProject"/>
- <addaction name="actionGlobalShiftSettings"/>
- <addaction name="separator"/>
- <addaction name="actionPrimitiveFactory"/>
- <addaction name="separator"/>
- <addaction name="actionCloseAll"/>
- <addaction name="actionQuit"/>
- <addaction name="separator"/>
- </widget>
- <widget class="QMenu" name="menuDisplay">
- <property name="title">
- <string>&Display</string>
- </property>
- <widget class="QMenu" name="menuToolbars">
- <property name="title">
- <string>Toolbars</string>
- </property>
- <addaction name="actionDisplayMainTools"/>
- <addaction name="actionDisplayScalarFieldsTools"/>
- <addaction name="actionDisplayViewTools"/>
- </widget>
- <widget class="QMenu" name="menuLights">
- <property name="title">
- <string>Lights</string>
- </property>
- <property name="icon">
- <iconset resource="../icons.qrc">
- <normaloff>:/CC/images/ccSunLight.png</normaloff>:/CC/images/ccSunLight.png</iconset>
- </property>
- <addaction name="actionToggleSunLight"/>
- <addaction name="actionToggleCustomLight"/>
- </widget>
- <widget class="QMenu" name="menuActiveScalarField">
- <property name="title">
- <string>Active scalar field</string>
- </property>
- <addaction name="actionToggleActiveSFColorScale"/>
- <addaction name="actionShowActiveSFPrevious"/>
- <addaction name="actionShowActiveSFNext"/>
- </widget>
- <widget class="QMenu" name="menuLanguage">
- <property name="title">
- <string>Language Translation</string>
- </property>
- </widget>
- <addaction name="actionFullScreen"/>
- <addaction name="actionExclusiveFullScreen"/>
- <addaction name="actionRefresh"/>
- <addaction name="actionToggleCenteredPerspective"/>
- <addaction name="actionToggleViewerBasedPerspective"/>
- <addaction name="actionShowCursor3DCoordinates"/>
- <addaction name="actionLockRotationAxis"/>
- <addaction name="actionEnterBubbleViewMode"/>
- <addaction name="actionEnableCameraLink"/>
- <addaction name="separator"/>
- <addaction name="actionRenderToFile"/>
- <addaction name="actionDisplaySettings"/>
- <addaction name="actionEditCamera"/>
- <addaction name="actionSaveViewportAsObject"/>
- <addaction name="actionAdjustZoom"/>
- <addaction name="actionTestFrameRate"/>
- <addaction name="separator"/>
- <addaction name="menuLights"/>
- <addaction name="menuActiveScalarField"/>
- <addaction name="separator"/>
- <addaction name="actionConsole"/>
- <addaction name="menuToolbars"/>
- <addaction name="menuLanguage"/>
- <addaction name="actionResetGUIElementsPos"/>
- <addaction name="actionRestoreWindowOnStartup"/>
- <addaction name="actionResetAllVBOs"/>
- </widget>
- <widget class="QMenu" name="menuHelp">
- <property name="title">
- <string>&Help</string>
- </property>
- <addaction name="actionHelp"/>
- <addaction name="actionAbout"/>
- <addaction name="actionAboutPlugins"/>
- <addaction name="separator"/>
- <addaction name="actionEnableQtWarnings"/>
- </widget>
- <widget class="QMenu" name="menuEdit">
- <property name="title">
- <string>Edit</string>
- </property>
- <widget class="QMenu" name="menuScalarFields">
- <property name="title">
- <string>Scalar fields</string>
- </property>
- <addaction name="actionShowHistogram"/>
- <addaction name="actionComputeStatParams"/>
- <addaction name="separator"/>
- <addaction name="actionSFGradient"/>
- <addaction name="actionGaussianFilter"/>
- <addaction name="actionBilateralFilter"/>
- <addaction name="actionFilterByValue"/>
- <addaction name="actionConvertToRGB"/>
- <addaction name="actionConvertToRandomRGB"/>
- <addaction name="actionRenameSF"/>
- <addaction name="separator"/>
- <addaction name="actionAddConstantSF"/>
- <addaction name="actionAddClassificationSF"/>
- <addaction name="actionAddIdField"/>
- <addaction name="actionExportCoordToSF"/>
- <addaction name="actionSetSFAsCoord"/>
- <addaction name="actionExportNormalToSF"/>
- <addaction name="actionSetSFsAsNormal"/>
- <addaction name="actionInterpolateSFs"/>
- <addaction name="actionSplitCloudUsingSF"/>
- <addaction name="actionScalarFieldArithmetic"/>
- <addaction name="separator"/>
- <addaction name="actionOpenColorScalesManager"/>
- <addaction name="separator"/>
- <addaction name="actionDeleteScalarField"/>
- <addaction name="actionDeleteAllSF"/>
- <addaction name="separator"/>
- </widget>
- <widget class="QMenu" name="menuColors">
- <property name="title">
- <string>Colors</string>
- </property>
- <addaction name="actionSetUniqueColor"/>
- <addaction name="actionColorFromScalarField"/>
- <addaction name="actionColorize"/>
- <addaction name="actionChangeColorLevels"/>
- <addaction name="actionSetColorGradient"/>
- <addaction name="actionRGBToGreyScale"/>
- <addaction name="actionScalarFieldFromColor"/>
- <addaction name="actionInterpolateColors"/>
- <addaction name="actionEnhanceRGBWithIntensities"/>
- <addaction name="actionRGBBilateralFilter"/>
- <addaction name="actionRGBGaussianFilter"/>
- <addaction name="actionRGBMeanFilter"/>
- <addaction name="actionRGBMedianFilter"/>
- <addaction name="separator"/>
- <addaction name="actionClearColor"/>
- </widget>
- <widget class="QMenu" name="menuNormals">
- <property name="title">
- <string>Normals</string>
- </property>
- <widget class="QMenu" name="menuOrientNormals">
- <property name="title">
- <string>Orient normals</string>
- </property>
- <addaction name="actionOrientNormalsMST"/>
- <addaction name="actionOrientNormalsFM"/>
- </widget>
- <widget class="QMenu" name="menuConvert_to">
- <property name="title">
- <string>Convert to</string>
- </property>
- <addaction name="actionConvertNormalToHSV"/>
- <addaction name="actionConvertNormalToDipDir"/>
- </widget>
- <addaction name="actionComputeNormals"/>
- <addaction name="actionInvertNormals"/>
- <addaction name="menuOrientNormals"/>
- <addaction name="menuConvert_to"/>
- <addaction name="separator"/>
- <addaction name="actionExportNormalToSF"/>
- <addaction name="actionSetSFsAsNormal"/>
- <addaction name="separator"/>
- <addaction name="actionShiftPointsAlongNormals"/>
- <addaction name="separator"/>
- <addaction name="actionClearNormals"/>
- </widget>
- <widget class="QMenu" name="menuOctree">
- <property name="title">
- <string>Octree</string>
- </property>
- <addaction name="actionComputeOctree"/>
- <addaction name="separator"/>
- <addaction name="actionResampleWithOctree"/>
- </widget>
- <widget class="QMenu" name="menuMesh">
- <property name="title">
- <string>Mesh</string>
- </property>
- <widget class="QMenu" name="menuMeshScalarField">
- <property name="title">
- <string>Scalar Field</string>
- </property>
- <addaction name="actionSmoothMeshSF"/>
- <addaction name="actionEnhanceMeshSF"/>
- </widget>
- <addaction name="actionComputeMeshAA"/>
- <addaction name="actionComputeMeshLS"/>
- <addaction name="actionMeshTwoPolylines"/>
- <addaction name="actionMeshScanGrids"/>
- <addaction name="separator"/>
- <addaction name="actionConvertTextureToColor"/>
- <addaction name="actionSamplePointsOnMesh"/>
- <addaction name="actionSmoothMeshLaplacian"/>
- <addaction name="actionSubdivideMesh"/>
- <addaction name="actionFlipMeshTriangles"/>
- <addaction name="separator"/>
- <addaction name="actionMeasureMeshSurface"/>
- <addaction name="actionMeasureMeshVolume"/>
- <addaction name="actionFlagMeshVertices"/>
- <addaction name="separator"/>
- <addaction name="menuMeshScalarField"/>
- </widget>
- <widget class="QMenu" name="menuSensors">
- <property name="title">
- <string>Sensors</string>
- </property>
- <widget class="QMenu" name="menuGroundBasedLidar">
- <property name="toolTip">
- <string>Terrestrial Laser Sensor = Ground Based Lidar</string>
- </property>
- <property name="title">
- <string>TLS/GBL</string>
- </property>
- <property name="icon">
- <iconset resource="../icons.qrc">
- <normaloff>:/CC/images/dbGBLSensorSymbol.png</normaloff>:/CC/images/dbGBLSensorSymbol.png</iconset>
- </property>
- <addaction name="actionCreateGBLSensor"/>
- <addaction name="separator"/>
- <addaction name="actionShowDepthBuffer"/>
- <addaction name="actionExportDepthBuffer"/>
- <addaction name="actionComputePointsVisibility"/>
- </widget>
- <widget class="QMenu" name="menuCameraSensor">
- <property name="title">
- <string>Camera</string>
- </property>
- <property name="icon">
- <iconset resource="../icons.qrc">
- <normaloff>:/CC/images/dbCamSensorSymbol.png</normaloff>:/CC/images/dbCamSensorSymbol.png</iconset>
- </property>
- <addaction name="actionCreateCameraSensor"/>
- <addaction name="separator"/>
- <addaction name="actionProjectUncertainty"/>
- <addaction name="actionCheckPointsInsideFrustum"/>
- </widget>
- <addaction name="actionModifySensor"/>
- <addaction name="separator"/>
- <addaction name="menuGroundBasedLidar"/>
- <addaction name="menuCameraSensor"/>
- <addaction name="separator"/>
- <addaction name="actionViewFromSensor"/>
- <addaction name="actionComputeDistancesFromSensor"/>
- <addaction name="actionComputeScatteringAngles"/>
- </widget>
- <widget class="QMenu" name="menuToggle">
- <property name="title">
- <string>Toggle (recursive)</string>
- </property>
- <addaction name="actionToggleActivation"/>
- <addaction name="actionToggleVisibility"/>
- <addaction name="actionToggleColors"/>
- <addaction name="actionToggleNormals"/>
- <addaction name="actionToggleSF"/>
- <addaction name="actionToggleMaterials"/>
- <addaction name="actionToggleShowName"/>
- </widget>
- <widget class="QMenu" name="menuWaveform">
- <property name="title">
- <string>Waveform</string>
- </property>
- <addaction name="actionShowWaveDialog"/>
- <addaction name="actionCompressFWFData"/>
- </widget>
- <widget class="QMenu" name="menuPlane">
- <property name="title">
- <string>Plane</string>
- </property>
- <addaction name="actionCreatePlane"/>
- <addaction name="actionFitPlaneProxy"/>
- <addaction name="actionEditPlane"/>
- <addaction name="actionFlipPlane"/>
- <addaction name="actionComparePlanes"/>
- </widget>
- <widget class="QMenu" name="menuGrid">
- <property name="title">
- <string>Grid</string>
- </property>
- <addaction name="actionDeleteScanGrid"/>
- <addaction name="actionMeshScanGrids"/>
- </widget>
- <widget class="QMenu" name="menuPolyline">
- <property name="title">
- <string>Polyline</string>
- </property>
- <addaction name="actionSamplePointsOnPolyline"/>
- <addaction name="actionSmoothPolyline"/>
- </widget>
- <widget class="QMenu" name="menuCloud">
- <property name="title">
- <string>Cloud</string>
- </property>
- <addaction name="actionCreateSinglePointCloud"/>
- <addaction name="actionPasteCloudFromClipboard"/>
- </widget>
- <addaction name="menuColors"/>
- <addaction name="menuNormals"/>
- <addaction name="menuOctree"/>
- <addaction name="menuGrid"/>
- <addaction name="menuCloud"/>
- <addaction name="menuMesh"/>
- <addaction name="menuPolyline"/>
- <addaction name="menuPlane"/>
- <addaction name="menuSensors"/>
- <addaction name="menuScalarFields"/>
- <addaction name="menuWaveform"/>
- <addaction name="separator"/>
- <addaction name="actionClone"/>
- <addaction name="actionMerge"/>
- <addaction name="actionSubsample"/>
- <addaction name="actionApplyTransformation"/>
- <addaction name="actionApplyScale"/>
- <addaction name="separator"/>
- <addaction name="actionTranslateRotate"/>
- <addaction name="actionSegment"/>
- <addaction name="actionCrop"/>
- <addaction name="separator"/>
- <addaction name="actionEditGlobalShiftAndScale"/>
- <addaction name="separator"/>
- <addaction name="menuToggle"/>
- <addaction name="separator"/>
- <addaction name="actionDelete"/>
- </widget>
- <widget class="QMenu" name="menu3DViews">
- <property name="title">
- <string>3D &Views</string>
- </property>
- <addaction name="actionNew3DView"/>
- <addaction name="separator"/>
- <addaction name="actionZoomIn"/>
- <addaction name="actionZoomOut"/>
- <addaction name="separator"/>
- <addaction name="actionClose3DView"/>
- <addaction name="actionCloseAll3DViews"/>
- <addaction name="separator"/>
- <addaction name="actionTile3DViews"/>
- <addaction name="actionCascade3DViews"/>
- <addaction name="separator"/>
- <addaction name="actionNext3DView"/>
- <addaction name="actionPrevious3DView"/>
- </widget>
- <widget class="QMenu" name="menuTools">
- <property name="title">
- <string>Tools</string>
- </property>
- <widget class="QMenu" name="menuSegmentation">
- <property name="title">
- <string>Segmentation</string>
- </property>
- <addaction name="actionLabelConnectedComponents"/>
- <addaction name="actionCrossSection"/>
- <addaction name="actionExtractSections"/>
- <addaction name="separator"/>
- <addaction name="actionKMeans"/>
- <addaction name="actionFrontPropagation"/>
- </widget>
- <widget class="QMenu" name="menuProjection">
- <property name="title">
- <string>Projection</string>
- </property>
- <addaction name="actionUnroll"/>
- <addaction name="actionRasterize"/>
- <addaction name="actionConvertPolylinesToMesh"/>
- <addaction name="actionExportCoordToSF"/>
- <addaction name="actionCreateSurfaceBetweenTwoPolylines"/>
- </widget>
- <widget class="QMenu" name="menuStatistics">
- <property name="title">
- <string>Statistics</string>
- </property>
- <addaction name="actionStatisticalTest"/>
- <addaction name="actionComputeStatParams2"/>
- </widget>
- <widget class="QMenu" name="menuDistances">
- <property name="title">
- <string>Distances</string>
- </property>
- <addaction name="actionCloudCloudDist"/>
- <addaction name="actionCloudMeshDist"/>
- <addaction name="actionCloudPrimitiveDist"/>
- <addaction name="actionCPS"/>
- </widget>
- <widget class="QMenu" name="menuRegistration">
- <property name="title">
- <string>Registration</string>
- </property>
- <addaction name="actionMatchBBCenters"/>
- <addaction name="actionMatchScales"/>
- <addaction name="actionPointPairsAlign"/>
- <addaction name="actionRegister"/>
- <addaction name="separator"/>
- <addaction name="actionBBCenterToOrigin"/>
- <addaction name="actionBBMinCornerToOrigin"/>
- <addaction name="actionBBMaxCornerToOrigin"/>
- </widget>
- <widget class="QMenu" name="menuOther">
- <property name="title">
- <string>Other</string>
- </property>
- <addaction name="actionComputeGeometricFeature"/>
- <addaction name="actionRemoveDuplicatePoints"/>
- </widget>
- <widget class="QMenu" name="menuSandBox">
- <property name="title">
- <string>Sand box (research)</string>
- </property>
- <addaction name="actionComputeKdTree"/>
- <addaction name="separator"/>
- <addaction name="actionComputeBestFitBB"/>
- <addaction name="actionDistanceToBestFitQuadric3D"/>
- <addaction name="actionDistanceMap"/>
- <addaction name="separator"/>
- <addaction name="actionAlign"/>
- <addaction name="separator"/>
- <addaction name="actionSNETest"/>
- <addaction name="actionCNETest"/>
- <addaction name="separator"/>
- <addaction name="actionFindBiggestInnerRectangle"/>
- <addaction name="separator"/>
- <addaction name="actionCreateCloudFromEntCenters"/>
- <addaction name="separator"/>
- <addaction name="actionComputeBestICPRmsMatrix"/>
- <addaction name="separator"/>
- <addaction name="actionEnableVisualDebugTraces"/>
- </widget>
- <widget class="QMenu" name="menuFit">
- <property name="title">
- <string>Fit</string>
- </property>
- <addaction name="actionFitPlane"/>
- <addaction name="actionFitSphere"/>
- <addaction name="actionFitCircle"/>
- <addaction name="actionFitFacet"/>
- <addaction name="actionFitQuadric"/>
- </widget>
- <widget class="QMenu" name="menuClean">
- <property name="title">
- <string>Clean</string>
- </property>
- <addaction name="actionSORFilter"/>
- <addaction name="actionNoiseFilter"/>
- </widget>
- <widget class="QMenu" name="menuVolume">
- <property name="title">
- <string>Volume</string>
- </property>
- <addaction name="actionCompute2HalfDimVolume"/>
- </widget>
- <widget class="QMenu" name="menuBatchExport">
- <property name="title">
- <string>Batch export</string>
- </property>
- <addaction name="actionExportCloudInfo"/>
- <addaction name="actionExportPlaneInfo"/>
- </widget>
- <addaction name="menuClean"/>
- <addaction name="menuProjection"/>
- <addaction name="menuRegistration"/>
- <addaction name="menuDistances"/>
- <addaction name="menuVolume"/>
- <addaction name="menuStatistics"/>
- <addaction name="menuSegmentation"/>
- <addaction name="menuFit"/>
- <addaction name="menuBatchExport"/>
- <addaction name="menuOther"/>
- <addaction name="separator"/>
- <addaction name="actionLevel"/>
- <addaction name="actionPointPicking"/>
- <addaction name="actionPointListPicking"/>
- <addaction name="actionTracePolyline"/>
- <addaction name="separator"/>
- <addaction name="menuSandBox"/>
- <addaction name="separator"/>
- </widget>
- <addaction name="menuFile"/>
- <addaction name="menuEdit"/>
- <addaction name="menuTools"/>
- <addaction name="menuDisplay"/>
- <addaction name="menu3DViews"/>
- <addaction name="menuHelp"/>
- </widget>
- <widget class="QDockWidget" name="DockableDBTree">
- <property name="minimumSize">
- <size>
- <width>146</width>
- <height>175</height>
- </size>
- </property>
- <property name="floating">
- <bool>false</bool>
- </property>
- <property name="features">
- <set>QDockWidget::DockWidgetFloatable|QDockWidget::DockWidgetMovable</set>
- </property>
- <property name="windowTitle">
- <string>DB Tree</string>
- </property>
- <attribute name="dockWidgetArea">
- <number>1</number>
- </attribute>
- <widget class="QWidget" name="dockWidgetContents">
- <layout class="QVBoxLayout">
- <item>
- <widget class="ccCustomQTreeView" name="dbTreeView">
- <property name="styleSheet">
- <string notr="true">QTreeView::branch:has-siblings:!adjoins-item {
- border-image: url(:/CC/images/QTreeView/vline.png) 0;
- }
- QTreeView::branch:has-siblings:adjoins-item {
- border-image: url(:/CC/images/QTreeView/branch-more.png) 0;
- }
- QTreeView::branch:!has-children:!has-siblings:adjoins-item {
- border-image: url(:/CC/images/QTreeView/branch-end.png) 0;
- }
- QTreeView::branch:has-children:!has-siblings:closed,
- QTreeView::branch:closed:has-children:has-siblings {
- border-image: none;
- image: url(:/CC/images/QTreeView/branch-closed.png);
- }
- QTreeView::branch:open:has-children:!has-siblings,
- QTreeView::branch:open:has-children:has-siblings {
- border-image: none;
- image: url(:/CC/images/QTreeView/branch-open.png);
- }</string>
- </property>
- <property name="dragEnabled">
- <bool>true</bool>
- </property>
- <property name="dragDropMode">
- <enum>QAbstractItemView::InternalMove</enum>
- </property>
- <property name="selectionMode">
- <enum>QAbstractItemView::ExtendedSelection</enum>
- </property>
- <property name="uniformRowHeights">
- <bool>true</bool>
- </property>
- </widget>
- </item>
- </layout>
- </widget>
- </widget>
- <widget class="QStatusBar" name="statusBar"/>
- <widget class="QToolBar" name="toolBarView">
- <property name="windowTitle">
- <string>Viewing tools</string>
- </property>
- <property name="toolTip">
- <string>Viewing tools</string>
- </property>
- <attribute name="toolBarArea">
- <enum>LeftToolBarArea</enum>
- </attribute>
- <attribute name="toolBarBreak">
- <bool>false</bool>
- </attribute>
- <addaction name="actionDisplaySettings"/>
- <addaction name="actionEditCamera"/>
- <addaction name="actionGlobalZoom"/>
- <addaction name="actionPickRotationCenter"/>
- <addaction name="actionAutoPickRotationCenter"/>
- <addaction name="actionLevel"/>
- <addaction name="actionZoomAndCenter"/>
- <addaction name="actionSetViewTop"/>
- <addaction name="actionSetViewFront"/>
- <addaction name="actionSetViewLeft"/>
- <addaction name="actionSetViewBack"/>
- <addaction name="actionSetViewRight"/>
- <addaction name="actionSetViewBottom"/>
- <addaction name="actionSetViewIso1"/>
- <addaction name="actionSetViewIso2"/>
- <addaction name="actionEnableStereo"/>
- </widget>
- <widget class="QDockWidget" name="DockableConsole">
- <property name="sizePolicy">
- <sizepolicy hsizetype="Ignored" vsizetype="Maximum">
- <horstretch>0</horstretch>
- <verstretch>0</verstretch>
- </sizepolicy>
- </property>
- <property name="minimumSize">
- <size>
- <width>103</width>
- <height>137</height>
- </size>
- </property>
- <property name="maximumSize">
- <size>
- <width>524287</width>
- <height>524287</height>
- </size>
- </property>
- <property name="features">
- <set>QDockWidget::DockWidgetClosable|QDockWidget::DockWidgetFloatable</set>
- </property>
- <property name="allowedAreas">
- <set>Qt::BottomDockWidgetArea</set>
- </property>
- <property name="windowTitle">
- <string>Console</string>
- </property>
- <attribute name="dockWidgetArea">
- <number>8</number>
- </attribute>
- <widget class="QWidget" name="dockWidgetContents_2">
- <layout class="QVBoxLayout">
- <item>
- <widget class="ccCustomQListWidget" name="consoleWidget">
- <property name="sizePolicy">
- <sizepolicy hsizetype="Ignored" vsizetype="Ignored">
- <horstretch>0</horstretch>
- <verstretch>0</verstretch>
- </sizepolicy>
- </property>
- <property name="minimumSize">
- <size>
- <width>0</width>
- <height>80</height>
- </size>
- </property>
- <property name="editTriggers">
- <set>QAbstractItemView::NoEditTriggers</set>
- </property>
- <property name="showDropIndicator" stdset="0">
- <bool>false</bool>
- </property>
- <property name="alternatingRowColors">
- <bool>true</bool>
- </property>
- <property name="selectionMode">
- <enum>QAbstractItemView::ExtendedSelection</enum>
- </property>
- </widget>
- </item>
- </layout>
- </widget>
- </widget>
- <widget class="QToolBar" name="toolBarMainTools">
- <property name="windowTitle">
- <string>Main tools</string>
- </property>
- <property name="toolTip">
- <string>Main tools</string>
- </property>
- <attribute name="toolBarArea">
- <enum>TopToolBarArea</enum>
- </attribute>
- <attribute name="toolBarBreak">
- <bool>false</bool>
- </attribute>
- <addaction name="actionOpen"/>
- <addaction name="actionSave"/>
- <addaction name="actionSaveProject"/>
- <addaction name="separator"/>
- <addaction name="actionPointPicking"/>
- <addaction name="actionPointListPicking"/>
- <addaction name="actionTracePolyline"/>
- <addaction name="actionClone"/>
- <addaction name="actionMerge"/>
- <addaction name="actionDelete"/>
- <addaction name="separator"/>
- <addaction name="actionPointPairsAlign"/>
- <addaction name="actionRegister"/>
- <addaction name="actionSubsample"/>
- <addaction name="actionSamplePointsOnMesh"/>
- <addaction name="actionCloudCloudDist"/>
- <addaction name="actionCloudMeshDist"/>
- <addaction name="actionCloudPrimitiveDist"/>
- <addaction name="actionLabelConnectedComponents"/>
- <addaction name="actionPrimitiveFactory"/>
- <addaction name="actionRasterize"/>
- <addaction name="actionSORFilter"/>
- <addaction name="separator"/>
- <addaction name="actionSegment"/>
- <addaction name="actionTranslateRotate"/>
- <addaction name="actionCrossSection"/>
- <addaction name="actionExtractSections"/>
- </widget>
- <widget class="QToolBar" name="toolBarSFTools">
- <property name="windowTitle">
- <string>Scalar field tools</string>
- </property>
- <property name="toolTip">
- <string>Scalar field tools</string>
- </property>
- <attribute name="toolBarArea">
- <enum>TopToolBarArea</enum>
- </attribute>
- <attribute name="toolBarBreak">
- <bool>false</bool>
- </attribute>
- <addaction name="actionShowHistogram"/>
- <addaction name="actionComputeStatParams"/>
- <addaction name="actionFilterByValue"/>
- <addaction name="actionDeleteScalarField"/>
- <addaction name="actionAddConstantSF"/>
- <addaction name="actionScalarFieldArithmetic"/>
- <addaction name="actionOpenColorScalesManager"/>
- </widget>
- <widget class="QDockWidget" name="DockableProperties">
- <property name="minimumSize">
- <size>
- <width>133</width>
- <height>164</height>
- </size>
- </property>
- <property name="floating">
- <bool>false</bool>
- </property>
- <property name="features">
- <set>QDockWidget::DockWidgetFloatable|QDockWidget::DockWidgetMovable</set>
- </property>
- <property name="windowTitle">
- <string>Properties</string>
- </property>
- <attribute name="dockWidgetArea">
- <number>1</number>
- </attribute>
- <widget class="QWidget" name="dockWidgetContents_4">
- <layout class="QVBoxLayout">
- <item>
- <widget class="QTreeView" name="propertiesTreeView">
- <property name="editTriggers">
- <set>QAbstractItemView::NoEditTriggers</set>
- </property>
- <property name="showDropIndicator" stdset="0">
- <bool>false</bool>
- </property>
- <property name="alternatingRowColors">
- <bool>true</bool>
- </property>
- <property name="selectionMode">
- <enum>QAbstractItemView::NoSelection</enum>
- </property>
- <property name="rootIsDecorated">
- <bool>false</bool>
- </property>
- <property name="itemsExpandable">
- <bool>false</bool>
- </property>
- <property name="allColumnsShowFocus">
- <bool>true</bool>
- </property>
- <property name="expandsOnDoubleClick">
- <bool>false</bool>
- </property>
- <attribute name="headerDefaultSectionSize">
- <number>200</number>
- </attribute>
- </widget>
- </item>
- </layout>
- </widget>
- </widget>
- <action name="actionOpen">
- <property name="icon">
- <iconset resource="../icons.qrc">
- <normaloff>:/CC/images/ccOpen.png</normaloff>:/CC/images/ccOpen.png</iconset>
- </property>
- <property name="text">
- <string>&Open</string>
- </property>
- <property name="toolTip">
- <string>Open one or severa files</string>
- </property>
- <property name="statusTip">
- <string>Open one or severa files</string>
- </property>
- <property name="shortcut">
- <string>Ctrl+O</string>
- </property>
- </action>
- <action name="actionSave">
- <property name="icon">
- <iconset resource="../icons.qrc">
- <normaloff>:/CC/images/ccSave.png</normaloff>:/CC/images/ccSave.png</iconset>
- </property>
- <property name="text">
- <string>&Save</string>
- </property>
- <property name="toolTip">
- <string>Save current entity</string>
- </property>
- <property name="statusTip">
- <string>Save current entity</string>
- </property>
- <property name="shortcut">
- <string>Ctrl+S</string>
- </property>
- <property name="shortcutContext">
- <enum>Qt::ApplicationShortcut</enum>
- </property>
- </action>
- <action name="actionQuit">
- <property name="text">
- <string>&Quit</string>
- </property>
- <property name="statusTip">
- <string>Quit</string>
- </property>
- </action>
- <action name="actionFullScreen">
- <property name="checkable">
- <bool>true</bool>
- </property>
- <property name="icon">
- <iconset resource="../icons.qrc">
- <normaloff>:/CC/images/ccFullScreen.png</normaloff>:/CC/images/ccFullScreen.png</iconset>
- </property>
- <property name="text">
- <string>&Full screen</string>
- </property>
- <property name="toolTip">
- <string>Switch to full screen</string>
- </property>
- <property name="statusTip">
- <string>Switch to full screen</string>
- </property>
- <property name="shortcut">
- <string>F9</string>
- </property>
- <property name="shortcutContext">
- <enum>Qt::ApplicationShortcut</enum>
- </property>
- </action>
- <action name="actionDisplaySettings">
- <property name="icon">
- <iconset resource="../icons.qrc">
- <normaloff>:/CC/images/monitor.svg</normaloff>:/CC/images/monitor.svg</iconset>
- </property>
- <property name="text">
- <string>Display settings</string>
- </property>
- </action>
- <action name="actionHelp">
- <property name="text">
- <string>&Help</string>
- </property>
- <property name="statusTip">
- <string>Help</string>
- </property>
- <property name="shortcut">
- <string>F1</string>
- </property>
- </action>
- <action name="actionAbout">
- <property name="text">
- <string>&About ...</string>
- </property>
- <property name="statusTip">
- <string>About</string>
- </property>
- </action>
- <action name="actionSetUniqueColor">
- <property name="icon">
- <iconset resource="../icons.qrc">
- <normaloff>:/CC/images/typeRgbCcolor.png</normaloff>:/CC/images/typeRgbCcolor.png</iconset>
- </property>
- <property name="text">
- <string>Set unique</string>
- </property>
- <property name="toolTip">
- <string>Set a unique color</string>
- </property>
- <property name="statusTip">
- <string>Set a unique color</string>
- </property>
- <property name="shortcut">
- <string>Alt+C</string>
- </property>
- </action>
- <action name="actionSetColorGradient">
- <property name="text">
- <string>Height Ramp</string>
- </property>
- <property name="toolTip">
- <string>Apply a color ramp along X, Y or Z</string>
- </property>
- <property name="statusTip">
- <string>Apply a color ramp along X, Y or Z</string>
- </property>
- </action>
- <action name="actionComputeNormals">
- <property name="icon">
- <iconset resource="../icons.qrc">
- <normaloff>:/CC/images/typeNormal.png</normaloff>:/CC/images/typeNormal.png</iconset>
- </property>
- <property name="text">
- <string>Compute</string>
- </property>
- <property name="toolTip">
- <string>Compute unsigned normals (least squares approx.)</string>
- </property>
- <property name="statusTip">
- <string>Compute unsigned normals (least squares approx.)</string>
- </property>
- </action>
- <action name="actionInvertNormals">
- <property name="text">
- <string>Invert</string>
- </property>
- <property name="toolTip">
- <string>Invert normals</string>
- </property>
- <property name="statusTip">
- <string>Invert normals</string>
- </property>
- </action>
- <action name="actionComputeOctree">
- <property name="icon">
- <iconset resource="../icons.qrc">
- <normaloff>:/CC/images/dbOctreeSymbol.png</normaloff>:/CC/images/dbOctreeSymbol.png</iconset>
- </property>
- <property name="text">
- <string>Compute</string>
- </property>
- <property name="toolTip">
- <string>Compute octree</string>
- </property>
- <property name="statusTip">
- <string>Compute octree</string>
- </property>
- </action>
- <action name="actionConsole">
- <property name="checkable">
- <bool>true</bool>
- </property>
- <property name="checked">
- <bool>true</bool>
- </property>
- <property name="icon">
- <iconset resource="../icons.qrc">
- <normaloff>:/CC/images/ccConsole.png</normaloff>:/CC/images/ccConsole.png</iconset>
- </property>
- <property name="text">
- <string>Console</string>
- </property>
- <property name="shortcut">
- <string>F8</string>
- </property>
- <property name="shortcutContext">
- <enum>Qt::ApplicationShortcut</enum>
- </property>
- </action>
- <action name="actionClose3DView">
- <property name="text">
- <string>Cl&ose</string>
- </property>
- <property name="shortcut">
- <string>Ctrl+F4</string>
- </property>
- </action>
- <action name="actionCloseAll3DViews">
- <property name="text">
- <string>Close &All</string>
- </property>
- </action>
- <action name="actionTile3DViews">
- <property name="text">
- <string>&Tile</string>
- </property>
- </action>
- <action name="actionCascade3DViews">
- <property name="text">
- <string>&Cascade</string>
- </property>
- </action>
- <action name="actionPrevious3DView">
- <property name="text">
- <string>Pre&vious</string>
- </property>
- </action>
- <action name="actionNext3DView">
- <property name="text">
- <string>Ne&xt</string>
- </property>
- </action>
- <action name="actionNew3DView">
- <property name="text">
- <string>New</string>
- </property>
- <property name="shortcut">
- <string>Ctrl+F3</string>
- </property>
- </action>
- <action name="actionClone">
- <property name="icon">
- <iconset resource="../icons.qrc">
- <normaloff>:/CC/images/ccClone.png</normaloff>:/CC/images/ccClone.png</iconset>
- </property>
- <property name="text">
- <string>Clone</string>
- </property>
- <property name="toolTip">
- <string><html><head/><body><p>Clone the selected entities</p><p><span style=" font-style:italic;">(yes Claire ... these are Nyan sheep!)</span></p></body></html></string>
- </property>
- </action>
- <action name="actionMerge">
- <property name="icon">
- <iconset resource="../icons.qrc">
- <normaloff>:/CC/images/ccMerge.png</normaloff>:/CC/images/ccMerge.png</iconset>
- </property>
- <property name="text">
- <string>Merge</string>
- </property>
- <property name="toolTip">
- <string>Merge multiple clouds</string>
- </property>
- </action>
- <action name="actionDelete">
- <property name="icon">
- <iconset resource="../icons.qrc">
- <normaloff>:/CC/images/ccDelete.png</normaloff>:/CC/images/ccDelete.png</iconset>
- </property>
- <property name="text">
- <string>Delete</string>
- </property>
- <property name="shortcut">
- <string>Del</string>
- </property>
- <property name="shortcutContext">
- <enum>Qt::ApplicationShortcut</enum>
- </property>
- </action>
- <action name="actionRegister">
- <property name="icon">
- <iconset resource="../icons.qrc">
- <normaloff>:/CC/images/ccRegister.png</normaloff>:/CC/images/ccRegister.png</iconset>
- </property>
- <property name="text">
- <string>Fine registration (ICP)</string>
- </property>
- <property name="toolTip">
- <string>Finely registers already (roughly) aligned entities (clouds or meshes)</string>
- </property>
- <property name="statusTip">
- <string>Finely registers already (roughly) aligned entities (clouds or meshes)</string>
- </property>
- </action>
- <action name="actionCloudCloudDist">
- <property name="icon">
- <iconset resource="../icons.qrc">
- <normaloff>:/CC/images/ccCloudCloudDistance.png</normaloff>:/CC/images/ccCloudCloudDistance.png</iconset>
- </property>
- <property name="text">
- <string>Cloud/Cloud Dist</string>
- </property>
- <property name="toolTip">
- <string>Compute cloud/cloud distance</string>
- </property>
- <property name="statusTip">
- <string>Compute cloud/cloud distance</string>
- </property>
- </action>
- <action name="actionCloudMeshDist">
- <property name="icon">
- <iconset resource="../icons.qrc">
- <normaloff>:/CC/images/ccCloudMeshDistance.png</normaloff>:/CC/images/ccCloudMeshDistance.png</iconset>
- </property>
- <property name="text">
- <string>Cloud/Mesh Dist</string>
- </property>
- <property name="toolTip">
- <string>Compute cloud/mesh distance</string>
- </property>
- <property name="statusTip">
- <string>Compute cloud/mesh distance</string>
- </property>
- </action>
- <action name="actionStatisticalTest">
- <property name="icon">
- <iconset resource="../icons.qrc">
- <normaloff>:/CC/images/ccStatTest.png</normaloff>:/CC/images/ccStatTest.png</iconset>
- </property>
- <property name="text">
- <string>Local Statistical test</string>
- </property>
- <property name="toolTip">
- <string>Apply a local statistical test to separate noise from true differences</string>
- </property>
- <property name="statusTip">
- <string>Apply a local statistical test to separate noise from true differences</string>
- </property>
- </action>
- <action name="actionSamplePointsOnMesh">
- <property name="icon">
- <iconset resource="../icons.qrc">
- <normaloff>:/CC/images/ccSamplePoints.png</normaloff>:/CC/images/ccSamplePoints.png</iconset>
- </property>
- <property name="text">
- <string>Sample points</string>
- </property>
- <property name="toolTip">
- <string>Sample points on a mesh</string>
- </property>
- <property name="statusTip">
- <string>Sample points on a mesh</string>
- </property>
- </action>
- <action name="actionLabelConnectedComponents">
- <property name="icon">
- <iconset resource="../icons.qrc">
- <normaloff>:/CC/images/ccCCExtract.png</normaloff>:/CC/images/ccCCExtract.png</iconset>
- </property>
- <property name="text">
- <string>Label Connected Comp.</string>
- </property>
- <property name="toolTip">
- <string>Label connected components</string>
- </property>
- <property name="statusTip">
- <string>Label connected components</string>
- </property>
- </action>
- <action name="actionSegment">
- <property name="icon">
- <iconset resource="../icons.qrc">
- <normaloff>:/CC/images/ccSegment.png</normaloff>:/CC/images/ccSegment.png</iconset>
- </property>
- <property name="text">
- <string>Segment</string>
- </property>
- <property name="shortcut">
- <string>T</string>
- </property>
- </action>
- <action name="actionTranslateRotate">
- <property name="checkable">
- <bool>false</bool>
- </property>
- <property name="icon">
- <iconset resource="../icons.qrc">
- <normaloff>:/CC/images/ccInteractiveTransformation.png</normaloff>:/CC/images/ccInteractiveTransformation.png</iconset>
- </property>
- <property name="text">
- <string>Translate/Rotate</string>
- </property>
- </action>
- <action name="actionShowHistogram">
- <property name="icon">
- <iconset resource="../icons.qrc">
- <normaloff>:/CC/images/ccHistogram.png</normaloff>:/CC/images/ccHistogram.png</iconset>
- </property>
- <property name="text">
- <string>Show histogram</string>
- </property>
- </action>
- <action name="actionComputeStatParams">
- <property name="icon">
- <iconset resource="../icons.qrc">
- <normaloff>:/CC/images/ccComputeStat.png</normaloff>:/CC/images/ccComputeStat.png</iconset>
- </property>
- <property name="text">
- <string>Compute stat. params</string>
- </property>
- <property name="toolTip">
- <string>Fits a statistical model on the active scalar field</string>
- </property>
- <property name="statusTip">
- <string>Fits a statistical model on the active scalar field</string>
- </property>
- </action>
- <action name="actionFilterByValue">
- <property name="icon">
- <iconset resource="../icons.qrc">
- <normaloff>:/CC/images/ccFilterByValue.png</normaloff>:/CC/images/ccFilterByValue.png</iconset>
- </property>
- <property name="text">
- <string>Filter By Value</string>
- </property>
- <property name="toolTip">
- <string>Filter points by value</string>
- </property>
- <property name="statusTip">
- <string>Filter points by value</string>
- </property>
- </action>
- <action name="actionGaussianFilter">
- <property name="icon">
- <iconset resource="../icons.qrc">
- <normaloff>:/CC/images/ccGaussianFilter.png</normaloff>:/CC/images/ccGaussianFilter.png</iconset>
- </property>
- <property name="text">
- <string>Gaussian filter</string>
- </property>
- <property name="toolTip">
- <string>Compute gaussian filter</string>
- </property>
- <property name="statusTip">
- <string>Compute gaussian filter</string>
- </property>
- </action>
- <action name="actionDeleteScalarField">
- <property name="icon">
- <iconset resource="../icons.qrc">
- <normaloff>:/CC/images/ccDeleteSF.png</normaloff>:/CC/images/ccDeleteSF.png</iconset>
- </property>
- <property name="text">
- <string>Delete</string>
- </property>
- <property name="iconText">
- <string>Delete Scalar Field</string>
- </property>
- <property name="toolTip">
- <string>Delete current scalar field</string>
- </property>
- <property name="statusTip">
- <string>Delete current scalar field</string>
- </property>
- </action>
- <action name="actionScalarFieldArithmetic">
- <property name="icon">
- <iconset resource="../icons.qrc">
- <normaloff>:/CC/images/ccSfArithmetic.png</normaloff>:/CC/images/ccSfArithmetic.png</iconset>
- </property>
- <property name="text">
- <string>Arithmetic</string>
- </property>
- <property name="iconText">
- <string>SF arithmetic</string>
- </property>
- <property name="toolTip">
- <string>Add, subtract, multiply or divide two scalar fields</string>
- </property>
- <property name="statusTip">
- <string>Add, subtract, multiply or divide two scalar fields</string>
- </property>
- </action>
- <action name="actionColorize">
- <property name="text">
- <string>Colorize</string>
- </property>
- <property name="toolTip">
- <string>Colorize entity (lightness values are unchanged)</string>
- </property>
- <property name="statusTip">
- <string>Colorize entity (lightness values are unchanged)</string>
- </property>
- </action>
- <action name="actionSmoothMeshSF">
- <property name="text">
- <string>Smooth</string>
- </property>
- <property name="toolTip">
- <string>Smooth mesh scalar field</string>
- </property>
- <property name="statusTip">
- <string>Smooth mesh scalar field</string>
- </property>
- </action>
- <action name="actionEnhanceMeshSF">
- <property name="text">
- <string>Enhance</string>
- </property>
- <property name="toolTip">
- <string>Enhance Scalar Field</string>
- </property>
- <property name="statusTip">
- <string>Enhance Scalar Field</string>
- </property>
- </action>
- <action name="actionClearColor">
- <property name="icon">
- <iconset resource="../icons.qrc">
- <normaloff>:/CC/images/ccDelete.png</normaloff>:/CC/images/ccDelete.png</iconset>
- </property>
- <property name="text">
- <string>Clear</string>
- </property>
- <property name="toolTip">
- <string>Clear colors</string>
- </property>
- <property name="statusTip">
- <string>Clear colors</string>
- </property>
- </action>
- <action name="actionRGBGaussianFilter">
- <property name="icon">
- <iconset resource="../icons.qrc">
- <normaloff>:/CC/images/ccGaussianFilter.png</normaloff>:/CC/images/ccGaussianFilter.png</iconset>
- </property>
- <property name="text">
- <string>Gaussian filter</string>
- </property>
- <property name="toolTip">
- <string>Compute gaussian filter</string>
- </property>
- <property name="statusTip">
- <string>Compute gaussian filter</string>
- </property>
- </action>
- <action name="actionRGBBilateralFilter">
- <property name="icon">
- <iconset resource="../icons.qrc">
- <normaloff>:/CC/images/ccBilateralFilter.png</normaloff>:/CC/images/ccBilateralFilter.png</iconset>
- </property>
- <property name="text">
- <string>Bilateral filter</string>
- </property>
- <property name="toolTip">
- <string>Compute bilateral filter</string>
- </property>
- <property name="statusTip">
- <string>Compute bilateral filter</string>
- </property>
- </action>
- <action name="actionRGBMeanFilter">
- <property name="text">
- <string>Mean filter</string>
- </property>
- <property name="toolTip">
- <string>Compute mean filter</string>
- </property>
- <property name="statusTip">
- <string>Compute mean filter</string>
- </property>
- </action>
- <action name="actionRGBMedianFilter">
- <property name="text">
- <string>Median filter</string>
- </property>
- <property name="toolTip">
- <string>Compute median filter</string>
- </property>
- <property name="statusTip">
- <string>Compute median filter</string>
- </property>
- </action>
- <action name="actionClearNormals">
- <property name="icon">
- <iconset resource="../icons.qrc">
- <normaloff>:/CC/images/ccDelete.png</normaloff>:/CC/images/ccDelete.png</iconset>
- </property>
- <property name="text">
- <string>Clear</string>
- </property>
- <property name="toolTip">
- <string>Delete normals</string>
- </property>
- <property name="statusTip">
- <string>Delete normals</string>
- </property>
- </action>
- <action name="actionResampleWithOctree">
- <property name="text">
- <string>Resample</string>
- </property>
- <property name="toolTip">
- <string>Resample entity with octree</string>
- </property>
- <property name="statusTip">
- <string>Resample entity with octree</string>
- </property>
- </action>
- <action name="actionComputeMeshAA">
- <property name="text">
- <string>Delaunay 2.5D (XY plane)</string>
- </property>
- <property name="toolTip">
- <string>Compute "2D1/2" mesh by projecting points on the XY plane</string>
- </property>
- <property name="statusTip">
- <string>Compute "2D1/2" mesh by projecting points on the XY plane</string>
- </property>
- </action>
- <action name="actionComputeMeshLS">
- <property name="text">
- <string>Delaunay 2.5D (best fitting plane)</string>
- </property>
- <property name="toolTip">
- <string>Compute "2D1/2" mesh by projecting points on the (least squares) best fitting plane</string>
- </property>
- <property name="statusTip">
- <string>Compute "2D1/2" mesh by projecting points on the (least squares) best fitting plane</string>
- </property>
- </action>
- <action name="actionMeasureMeshSurface">
- <property name="text">
- <string>Measure surface</string>
- </property>
- <property name="toolTip">
- <string>Measure mesh surface</string>
- </property>
- <property name="statusTip">
- <string>Measure mesh surface</string>
- </property>
- </action>
- <action name="actionCPS">
- <property name="text">
- <string>Closest Point Set</string>
- </property>
- <property name="toolTip">
- <string>Compute closest point set</string>
- </property>
- <property name="statusTip">
- <string>Compute closest point set</string>
- </property>
- </action>
- <action name="actionDeleteAllSF">
- <property name="text">
- <string>Delete all (!)</string>
- </property>
- <property name="toolTip">
- <string>Delete all scalar fields</string>
- </property>
- <property name="statusTip">
- <string>Delete all scalar fields</string>
- </property>
- </action>
- <action name="actionMultiplySF">
- <property name="text">
- <string>Multiply</string>
- </property>
- <property name="toolTip">
- <string>Multiply scalar field by a constant</string>
- </property>
- <property name="statusTip">
- <string>Multiply scalar field by a constant</string>
- </property>
- </action>
- <action name="actionKMeans">
- <property name="checkable">
- <bool>true</bool>
- </property>
- <property name="text">
- <string>K-Means</string>
- </property>
- <property name="toolTip">
- <string>classify point (K-Means applied on a scalar field)</string>
- </property>
- <property name="statusTip">
- <string>classify point (K-Means applied on a scalar field)</string>
- </property>
- </action>
- <action name="actionFrontPropagation">
- <property name="enabled">
- <bool>false</bool>
- </property>
- <property name="text">
- <string>Front propagation</string>
- </property>
- <property name="toolTip">
- <string>Classify points by propagating a front on a scalar field</string>
- </property>
- <property name="statusTip">
- <string>Classify points by propagating a front on a scalar field</string>
- </property>
- </action>
- <action name="actionApplyScale">
- <property name="text">
- <string>Multiply/Scale</string>
- </property>
- <property name="toolTip">
- <string>Multiply coordinates (separately)</string>
- </property>
- <property name="statusTip">
- <string>Multiply coordinates (separately)</string>
- </property>
- </action>
- <action name="actionMatchBBCenters">
- <property name="text">
- <string>Match bounding-box centers</string>
- </property>
- <property name="toolTip">
- <string>Synchronize selected entities bbox centers</string>
- </property>
- <property name="statusTip">
- <string>Synchronize selected entities bbox centers</string>
- </property>
- </action>
- <action name="actionUnroll">
- <property name="text">
- <string>Unroll</string>
- </property>
- <property name="toolTip">
- <string>Unroll entity on a cylinder or a cone</string>
- </property>
- <property name="statusTip">
- <string>Unroll entity on a cylinder or a cone</string>
- </property>
- </action>
- <action name="actionSFGradient">
- <property name="icon">
- <iconset resource="../icons.qrc">
- <normaloff>:/CC/images/ccGradient.png</normaloff>:/CC/images/ccGradient.png</iconset>
- </property>
- <property name="text">
- <string>Gradient</string>
- </property>
- </action>
- <action name="actionZoomAndCenter">
- <property name="icon">
- <iconset resource="../icons.qrc">
- <normaloff>:/CC/images/search.svg</normaloff>:/CC/images/search.svg</iconset>
- </property>
- <property name="text">
- <string>Zoom & Center</string>
- </property>
- <property name="iconText">
- <string>ZoomCenter</string>
- </property>
- <property name="toolTip">
- <string>Zoom and center on selected entities (Z)</string>
- </property>
- <property name="statusTip">
- <string>Zoom and center on selected entities (Z)</string>
- </property>
- <property name="shortcut">
- <string>Z</string>
- </property>
- </action>
- <action name="actionSetViewTop">
- <property name="icon">
- <iconset resource="../icons.qrc">
- <normaloff>:/CC/images/ccViewZpos.png</normaloff>:/CC/images/ccViewZpos.png</iconset>
- </property>
- <property name="text">
- <string>Top View</string>
- </property>
- <property name="toolTip">
- <string>Set top view</string>
- </property>
- <property name="statusTip">
- <string>Set top view</string>
- </property>
- <property name="shortcut">
- <string notr="true">8</string>
- </property>
- <property name="shortcutContext">
- <enum>Qt::ApplicationShortcut</enum>
- </property>
- </action>
- <action name="actionSetViewFront">
- <property name="icon">
- <iconset resource="../icons.qrc">
- <normaloff>:/CC/images/ccViewYpos.png</normaloff>:/CC/images/ccViewYpos.png</iconset>
- </property>
- <property name="text">
- <string>Front View</string>
- </property>
- <property name="toolTip">
- <string>Set front view</string>
- </property>
- <property name="statusTip">
- <string>Set front view</string>
- </property>
- <property name="shortcut">
- <string notr="true">5</string>
- </property>
- <property name="shortcutContext">
- <enum>Qt::ApplicationShortcut</enum>
- </property>
- </action>
- <action name="actionSetViewBack">
- <property name="icon">
- <iconset resource="../icons.qrc">
- <normaloff>:/CC/images/ccViewYneg.png</normaloff>:/CC/images/ccViewYneg.png</iconset>
- </property>
- <property name="text">
- <string>Back View</string>
- </property>
- <property name="toolTip">
- <string>Set back view</string>
- </property>
- <property name="statusTip">
- <string>Set back view</string>
- </property>
- <property name="shortcut">
- <string notr="true">0</string>
- </property>
- <property name="shortcutContext">
- <enum>Qt::ApplicationShortcut</enum>
- </property>
- </action>
- <action name="actionSetViewLeft">
- <property name="icon">
- <iconset resource="../icons.qrc">
- <normaloff>:/CC/images/ccViewXpos.png</normaloff>:/CC/images/ccViewXpos.png</iconset>
- </property>
- <property name="text">
- <string>Left Side View</string>
- </property>
- <property name="toolTip">
- <string>Set left side view</string>
- </property>
- <property name="statusTip">
- <string>Set left side view</string>
- </property>
- <property name="shortcut">
- <string notr="true">4</string>
- </property>
- <property name="shortcutContext">
- <enum>Qt::ApplicationShortcut</enum>
- </property>
- </action>
- <action name="actionSetViewRight">
- <property name="icon">
- <iconset resource="../icons.qrc">
- <normaloff>:/CC/images/ccViewXneg.png</normaloff>:/CC/images/ccViewXneg.png</iconset>
- </property>
- <property name="text">
- <string>Right Side View</string>
- </property>
- <property name="toolTip">
- <string>Set right side view</string>
- </property>
- <property name="statusTip">
- <string>Set right side view</string>
- </property>
- <property name="shortcut">
- <string notr="true">6</string>
- </property>
- <property name="shortcutContext">
- <enum>Qt::ApplicationShortcut</enum>
- </property>
- </action>
- <action name="actionSetViewBottom">
- <property name="icon">
- <iconset resource="../icons.qrc">
- <normaloff>:/CC/images/ccViewZneg.png</normaloff>:/CC/images/ccViewZneg.png</iconset>
- </property>
- <property name="text">
- <string>Bottom View</string>
- </property>
- <property name="toolTip">
- <string>Set bottom view</string>
- </property>
- <property name="statusTip">
- <string>Set bottom view</string>
- </property>
- <property name="shortcut">
- <string notr="true">2</string>
- </property>
- <property name="shortcutContext">
- <enum>Qt::ApplicationShortcut</enum>
- </property>
- </action>
- <action name="actionDisplayMainTools">
- <property name="checkable">
- <bool>true</bool>
- </property>
- <property name="checked">
- <bool>true</bool>
- </property>
- <property name="text">
- <string>Main</string>
- </property>
- <property name="toolTip">
- <string>Show/hide main toolbar</string>
- </property>
- <property name="statusTip">
- <string>Show/hide main toolbar</string>
- </property>
- </action>
- <action name="actionDisplayViewTools">
- <property name="checkable">
- <bool>true</bool>
- </property>
- <property name="checked">
- <bool>true</bool>
- </property>
- <property name="text">
- <string>View</string>
- </property>
- <property name="toolTip">
- <string>Show/hide view toolbar</string>
- </property>
- <property name="statusTip">
- <string>Show/hide view toolbar</string>
- </property>
- </action>
- <action name="actionDisplayScalarFieldsTools">
- <property name="checkable">
- <bool>true</bool>
- </property>
- <property name="checked">
- <bool>true</bool>
- </property>
- <property name="text">
- <string>Scalar fields</string>
- </property>
- <property name="toolTip">
- <string>Show/hide scalar fields toolbar</string>
- </property>
- <property name="statusTip">
- <string>Show/hide scalar fields toolbar</string>
- </property>
- </action>
- <action name="actionToggleSunLight">
- <property name="text">
- <string>Toggle Sun Light</string>
- </property>
- <property name="toolTip">
- <string>Toggle sun light (active window)</string>
- </property>
- <property name="statusTip">
- <string>Toggle sun light (active window)</string>
- </property>
- <property name="shortcut">
- <string>F6</string>
- </property>
- <property name="shortcutContext">
- <enum>Qt::ApplicationShortcut</enum>
- </property>
- </action>
- <action name="actionToggleCustomLight">
- <property name="text">
- <string>Toggle Custom Light</string>
- </property>
- <property name="toolTip">
- <string>Toggle custom light (active window)</string>
- </property>
- <property name="statusTip">
- <string>Toggle custom light (active window)</string>
- </property>
- <property name="shortcut">
- <string>F7</string>
- </property>
- <property name="shortcutContext">
- <enum>Qt::ApplicationShortcut</enum>
- </property>
- </action>
- <action name="actionGlobalZoom">
- <property name="icon">
- <iconset resource="../icons.qrc">
- <normaloff>:/CC/images/ccGlobalZoom.png</normaloff>:/CC/images/ccGlobalZoom.png</iconset>
- </property>
- <property name="text">
- <string>Global Zoom</string>
- </property>
- </action>
- <action name="actionToggleCenteredPerspective">
- <property name="icon">
- <iconset resource="../icons.qrc">
- <normaloff>:/CC/images/ccCenteredPerspective32.png</normaloff>:/CC/images/ccCenteredPerspective32.png</iconset>
- </property>
- <property name="text">
- <string>Toggle Centered Perspective</string>
- </property>
- <property name="toolTip">
- <string>Toggle perspective view (centered on objects) in current window</string>
- </property>
- <property name="statusTip">
- <string>Toggle perspective view (centered on objects) in current window</string>
- </property>
- <property name="shortcut">
- <string>F3</string>
- </property>
- <property name="shortcutContext">
- <enum>Qt::ApplicationShortcut</enum>
- </property>
- </action>
- <action name="actionToggleViewerBasedPerspective">
- <property name="icon">
- <iconset resource="../icons.qrc">
- <normaloff>:/CC/images/ccViewerBasedPerspective32.png</normaloff>:/CC/images/ccViewerBasedPerspective32.png</iconset>
- </property>
- <property name="text">
- <string>Toggle Viewer Based Perspective</string>
- </property>
- <property name="toolTip">
- <string>Toggle perspective view (centered on viewer) in current window</string>
- </property>
- <property name="statusTip">
- <string>Toggle perspective view (centered on viewer) in current window</string>
- </property>
- <property name="shortcut">
- <string>F4</string>
- </property>
- <property name="shortcutContext">
- <enum>Qt::ApplicationShortcut</enum>
- </property>
- </action>
- <action name="actionRefresh">
- <property name="icon">
- <iconset resource="../icons.qrc">
- <normaloff>:/CC/images/smallReset.png</normaloff>:/CC/images/smallReset.png</iconset>
- </property>
- <property name="text">
- <string>Refresh</string>
- </property>
- <property name="shortcut">
- <string>F5</string>
- </property>
- <property name="shortcutContext">
- <enum>Qt::ApplicationShortcut</enum>
- </property>
- </action>
- <action name="actionTestFrameRate">
- <property name="text">
- <string>Test Frame Rate</string>
- </property>
- </action>
- <action name="actionRenderToFile">
- <property name="text">
- <string>Render to File</string>
- </property>
- </action>
- <action name="actionAboutPlugins">
- <property name="text">
- <string>About Plugins...</string>
- </property>
- </action>
- <action name="actionConvertToRGB">
- <property name="icon">
- <iconset resource="../icons.qrc">
- <normaloff>:/CC/images/typeRgbCcolor.png</normaloff>:/CC/images/typeRgbCcolor.png</iconset>
- </property>
- <property name="text">
- <string>Convert to RGB</string>
- </property>
- <property name="toolTip">
- <string>Convert current scalar field to RGB colors</string>
- </property>
- </action>
- <action name="actionShowDepthBuffer">
- <property name="text">
- <string>Create/show depth buffer</string>
- </property>
- </action>
- <action name="actionExportDepthBuffer">
- <property name="text">
- <string>Export depth buffer</string>
- </property>
- </action>
- <action name="actionModifySensor">
- <property name="text">
- <string>Edit</string>
- </property>
- </action>
- <action name="actionRasterize">
- <property name="icon">
- <iconset resource="../icons.qrc">
- <normaloff>:/CC/images/ccGrid.png</normaloff>:/CC/images/ccGrid.png</iconset>
- </property>
- <property name="text">
- <string>Rasterize (and contour plot)</string>
- </property>
- <property name="toolTip">
- <string>Convert a cloud to 2D raster (and optionally generate the contour plot)</string>
- </property>
- </action>
- <action name="actionAlign">
- <property name="text">
- <string>Auto align clouds</string>
- </property>
- <property name="toolTip">
- <string>Tries to automatically register (roughly) two points clouds</string>
- </property>
- <property name="statusTip">
- <string>Tries to automatically register (roughly) two points clouds</string>
- </property>
- </action>
- <action name="actionSubsample">
- <property name="icon">
- <iconset resource="../icons.qrc">
- <normaloff>:/CC/images/ccSampleCloud.png</normaloff>:/CC/images/ccSampleCloud.png</iconset>
- </property>
- <property name="text">
- <string>Subsample</string>
- </property>
- <property name="toolTip">
- <string>Subsample a point cloud</string>
- </property>
- <property name="statusTip">
- <string>Subsample a point cloud</string>
- </property>
- </action>
- <action name="actionLoadShader">
- <property name="enabled">
- <bool>false</bool>
- </property>
- <property name="text">
- <string>Load shader</string>
- </property>
- </action>
- <action name="actionDeleteShader">
- <property name="enabled">
- <bool>false</bool>
- </property>
- <property name="text">
- <string>Delete shader</string>
- </property>
- </action>
- <action name="actionPointPicking">
- <property name="icon">
- <iconset resource="../icons.qrc">
- <normaloff>:/CC/images/ccPointPicking.png</normaloff>:/CC/images/ccPointPicking.png</iconset>
- </property>
- <property name="text">
- <string>Point picking</string>
- </property>
- <property name="toolTip">
- <string>Point picking (point information, distance between 2 points, angles between 3 points, etc.)</string>
- </property>
- <property name="statusTip">
- <string>Point picking (point information, distance between 2 points, angles between 3 points, etc.)</string>
- </property>
- </action>
- <action name="actionComputeBestFitBB">
- <property name="text">
- <string>Bounding box P.C.A. fit</string>
- </property>
- <property name="toolTip">
- <string>Makes BB fit principal components (rotates entity!)</string>
- </property>
- <property name="statusTip">
- <string>Makes BB fit principal components (rotates entity!)</string>
- </property>
- </action>
- <action name="actionEditCamera">
- <property name="icon">
- <iconset resource="../icons.qrc">
- <normaloff>:/CC/images/photo-camera.svg</normaloff>:/CC/images/photo-camera.svg</iconset>
- </property>
- <property name="text">
- <string>Camera settings</string>
- </property>
- </action>
- <action name="actionPointListPicking">
- <property name="icon">
- <iconset resource="../icons.qrc">
- <normaloff>:/CC/images/ccPointListPicking.png</normaloff>:/CC/images/ccPointListPicking.png</iconset>
- </property>
- <property name="text">
- <string>Point list picking</string>
- </property>
- <property name="statusTip">
- <string>Pick several points (and export them to ASCII file, a new cloud, etc.)</string>
- </property>
- </action>
- <action name="actionCurvature">
- <property name="text">
- <string>Curvature</string>
- </property>
- </action>
- <action name="actionRoughness">
- <property name="enabled">
- <bool>false</bool>
- </property>
- <property name="text">
- <string>Roughness</string>
- </property>
- </action>
- <action name="actionFitPlane">
- <property name="text">
- <string>Plane</string>
- </property>
- <property name="toolTip">
- <string>Fit a plane on a set of point</string>
- </property>
- </action>
- <action name="actionRenameSF">
- <property name="text">
- <string>Rename</string>
- </property>
- </action>
- <action name="actionFitQuadric">
- <property name="text">
- <string>2.5D quadric</string>
- </property>
- </action>
- <action name="actionSNETest">
- <property name="text">
- <string>SNE test</string>
- </property>
- <property name="toolTip">
- <string>Spherical Neighbourhood Extraction test</string>
- </property>
- <property name="statusTip">
- <string>Spherical Neighbourhood Extraction test</string>
- </property>
- </action>
- <action name="actionToggleVisibility">
- <property name="text">
- <string>Visibility</string>
- </property>
- <property name="toolTip">
- <string>Toggle selected entities visibility (recursive)</string>
- </property>
- <property name="shortcut">
- <string>V</string>
- </property>
- <property name="shortcutContext">
- <enum>Qt::ApplicationShortcut</enum>
- </property>
- </action>
- <action name="actionToggleNormals">
- <property name="text">
- <string>Normals</string>
- </property>
- <property name="toolTip">
- <string>Toggle selected entities normals (recursive)</string>
- </property>
- <property name="shortcut">
- <string>N</string>
- </property>
- <property name="shortcutContext">
- <enum>Qt::ApplicationShortcut</enum>
- </property>
- </action>
- <action name="actionToggleColors">
- <property name="text">
- <string>Colors</string>
- </property>
- <property name="toolTip">
- <string>Toggle selected entities colors (recursive)</string>
- </property>
- <property name="shortcut">
- <string>C</string>
- </property>
- <property name="shortcutContext">
- <enum>Qt::ApplicationShortcut</enum>
- </property>
- </action>
- <action name="actionToggleSF">
- <property name="text">
- <string>SF</string>
- </property>
- <property name="toolTip">
- <string>Toggle selected entities SF (recursive)</string>
- </property>
- <property name="shortcut">
- <string>S</string>
- </property>
- <property name="shortcutContext">
- <enum>Qt::ApplicationShortcut</enum>
- </property>
- </action>
- <action name="actionApplyTransformation">
- <property name="text">
- <string>Apply transformation</string>
- </property>
- <property name="toolTip">
- <string>Apply rotation and/or translation</string>
- </property>
- <property name="shortcut">
- <string>Ctrl+T</string>
- </property>
- </action>
- <action name="actionSmoothMeshLaplacian">
- <property name="text">
- <string>Smooth (Laplacian)</string>
- </property>
- </action>
- <action name="actionConvertNormalToHSV">
- <property name="text">
- <string>HSV colors</string>
- </property>
- </action>
- <action name="actionSaveViewportAsObject">
- <property name="icon">
- <iconset resource="../icons.qrc">
- <normaloff>:/CC/images/dbViewportSymbol.png</normaloff>:/CC/images/dbViewportSymbol.png</iconset>
- </property>
- <property name="text">
- <string>Save viewport as object</string>
- </property>
- <property name="shortcut">
- <string>Ctrl+V</string>
- </property>
- <property name="shortcutContext">
- <enum>Qt::ApplicationShortcut</enum>
- </property>
- </action>
- <action name="actionPickRotationCenter">
- <property name="icon">
- <iconset resource="../icons.qrc">
- <normaloff>:/CC/images/ccPickCenter.png</normaloff>:/CC/images/ccPickCenter.png</iconset>
- </property>
- <property name="text">
- <string>Pick rotation center</string>
- </property>
- <property name="shortcut">
- <string>P</string>
- </property>
- <property name="shortcutContext">
- <enum>Qt::ApplicationShortcut</enum>
- </property>
- </action>
- <action name="actionComputeDistancesFromSensor">
- <property name="text">
- <string>Compute Ranges</string>
- </property>
- <property name="toolTip">
- <string>Compute ranges from sensor</string>
- </property>
- </action>
- <action name="actionBilateralFilter">
- <property name="icon">
- <iconset resource="../icons.qrc">
- <normaloff>:/CC/images/ccBilateralFilter.png</normaloff>:/CC/images/ccBilateralFilter.png</iconset>
- </property>
- <property name="text">
- <string>Bilateral filter</string>
- </property>
- <property name="toolTip">
- <string>Compute bilateral filter</string>
- </property>
- </action>
- <action name="actionComputeScatteringAngles">
- <property name="text">
- <string>Compute Scattering Angles</string>
- </property>
- <property name="toolTip">
- <string>Compute laser beam scattering angle for a cloud with normals</string>
- </property>
- </action>
- <action name="actionToggleActiveSFColorScale">
- <property name="text">
- <string>Toggle color scale</string>
- </property>
- <property name="iconText">
- <string>Toggle active scalar field color scale</string>
- </property>
- <property name="toolTip">
- <string>Toggle active scalar field color scale</string>
- </property>
- <property name="shortcut">
- <string>Shift+C</string>
- </property>
- <property name="shortcutContext">
- <enum>Qt::ApplicationShortcut</enum>
- </property>
- </action>
- <action name="actionShowActiveSFPrevious">
- <property name="text">
- <string>Show previous SF</string>
- </property>
- <property name="iconText">
- <string>Show previous scalar field for active entity</string>
- </property>
- <property name="toolTip">
- <string>Show previous scalar field for active entity</string>
- </property>
- <property name="shortcut">
- <string>Shift+Up</string>
- </property>
- <property name="shortcutContext">
- <enum>Qt::ApplicationShortcut</enum>
- </property>
- </action>
- <action name="actionShowActiveSFNext">
- <property name="text">
- <string>Show next SF</string>
- </property>
- <property name="iconText">
- <string>Show next scalar field for active entity</string>
- </property>
- <property name="toolTip">
- <string>Show next scalar field for active entity</string>
- </property>
- <property name="shortcut">
- <string>Shift+Down</string>
- </property>
- </action>
- <action name="actionPointPairsAlign">
- <property name="icon">
- <iconset resource="../icons.qrc">
- <normaloff>:/CC/images/ccAlign.png</normaloff>:/CC/images/ccAlign.png</iconset>
- </property>
- <property name="text">
- <string>Align (point pairs picking)</string>
- </property>
- <property name="toolTip">
- <string>Aligns two clouds by picking (at least 4) equivalent point pairs</string>
- </property>
- <property name="statusTip">
- <string>Aligns two clouds by picking (at least 4) equivalent point pairs</string>
- </property>
- </action>
- <action name="actionAddConstantSF">
- <property name="icon">
- <iconset resource="../icons.qrc">
- <normaloff>:/CC/images/ccAddConstSF.png</normaloff>:/CC/images/ccAddConstSF.png</iconset>
- </property>
- <property name="text">
- <string>Add constant SF</string>
- </property>
- </action>
- <action name="actionExportCoordToSF">
- <property name="text">
- <string>Export coordinate(s) to SF(s)</string>
- </property>
- <property name="toolTip">
- <string>Export X, Y and/or Z coordinates to scalar field(s)</string>
- </property>
- </action>
- <action name="actionSubdivideMesh">
- <property name="text">
- <string>Subdivide</string>
- </property>
- </action>
- <action name="actionToggleShowName">
- <property name="text">
- <string>3D name</string>
- </property>
- <property name="toolTip">
- <string>Toggle selected entities 3D name display (recursive)</string>
- </property>
- <property name="shortcut">
- <string>D</string>
- </property>
- <property name="shortcutContext">
- <enum>Qt::ApplicationShortcut</enum>
- </property>
- </action>
- <action name="actionPrimitiveFactory">
- <property name="icon">
- <iconset resource="../icons.qrc">
- <normaloff>:/CC/images/dbMiscGeomSymbol.png</normaloff>:/CC/images/dbMiscGeomSymbol.png</iconset>
- </property>
- <property name="text">
- <string>Primitive factory</string>
- </property>
- </action>
- <action name="actionToggleMaterials">
- <property name="text">
- <string>Materials/textures</string>
- </property>
- <property name="toolTip">
- <string>Toggle selected entities materials/textures (recursive)</string>
- </property>
- <property name="shortcut">
- <string>M</string>
- </property>
- <property name="shortcutContext">
- <enum>Qt::ApplicationShortcut</enum>
- </property>
- </action>
- <action name="actionSetOrthoView">
- <property name="icon">
- <iconset resource="../icons.qrc">
- <normaloff>:/CC/images/ccOrthoMode32.png</normaloff>:/CC/images/ccOrthoMode32.png</iconset>
- </property>
- <property name="text">
- <string>Orthographic projection</string>
- </property>
- <property name="toolTip">
- <string>Set orthographic projection for current 3D View</string>
- </property>
- <property name="statusTip">
- <string>Set orthographic projection for current 3D View</string>
- </property>
- </action>
- <action name="actionSetCenteredPerspectiveView">
- <property name="icon">
- <iconset resource="../icons.qrc">
- <normaloff>:/CC/images/ccCenteredPerspective32.png</normaloff>:/CC/images/ccCenteredPerspective32.png</iconset>
- </property>
- <property name="text">
- <string>Object-centered perspective</string>
- </property>
- <property name="toolTip">
- <string>Set object-centered perspective for current 3D View</string>
- </property>
- <property name="statusTip">
- <string>Set object-centered perspective for current 3D View</string>
- </property>
- </action>
- <action name="actionSetViewerPerspectiveView">
- <property name="icon">
- <iconset resource="../icons.qrc">
- <normaloff>:/CC/images/ccViewerBasedPerspective32.png</normaloff>:/CC/images/ccViewerBasedPerspective32.png</iconset>
- </property>
- <property name="text">
- <string>Viewer-based perspective</string>
- </property>
- <property name="toolTip">
- <string>Set viewer-based perspective for current 3D View</string>
- </property>
- <property name="statusTip">
- <string>Set viewer-based perspective for current 3D View</string>
- </property>
- </action>
- <action name="actionSetPivotAlwaysOn">
- <property name="icon">
- <iconset resource="../icons.qrc">
- <normaloff>:/CC/images/ccPivotOn.png</normaloff>:/CC/images/ccPivotOn.png</iconset>
- </property>
- <property name="text">
- <string>Always visible</string>
- </property>
- <property name="toolTip">
- <string>Pivot always visible</string>
- </property>
- <property name="statusTip">
- <string>Pivot always visible</string>
- </property>
- </action>
- <action name="actionSetPivotRotationOnly">
- <property name="icon">
- <iconset resource="../icons.qrc">
- <normaloff>:/CC/images/ccPivotAuto.png</normaloff>:/CC/images/ccPivotAuto.png</iconset>
- </property>
- <property name="text">
- <string>Rotation only</string>
- </property>
- <property name="toolTip">
- <string>Pivot visible when rotating</string>
- </property>
- <property name="statusTip">
- <string>Pivot visible when rotating</string>
- </property>
- </action>
- <action name="actionSetPivotOff">
- <property name="icon">
- <iconset resource="../icons.qrc">
- <normaloff>:/CC/images/ccPivotOff.png</normaloff>:/CC/images/ccPivotOff.png</iconset>
- </property>
- <property name="text">
- <string>Never visible</string>
- </property>
- <property name="toolTip">
- <string>Pivot never visible</string>
- </property>
- <property name="statusTip">
- <string>Pivot never visible</string>
- </property>
- </action>
- <action name="actionSetViewIso1">
- <property name="icon">
- <iconset resource="../icons.qrc">
- <normaloff>:/CC/images/ccViewIso1.png</normaloff>:/CC/images/ccViewIso1.png</iconset>
- </property>
- <property name="text">
- <string>Iso 1</string>
- </property>
- <property name="toolTip">
- <string>Set view to 'front' isometric</string>
- </property>
- <property name="statusTip">
- <string>Set view to 'front' isometric</string>
- </property>
- <property name="shortcut">
- <string notr="true">7</string>
- </property>
- <property name="shortcutContext">
- <enum>Qt::ApplicationShortcut</enum>
- </property>
- </action>
- <action name="actionSetViewIso2">
- <property name="icon">
- <iconset resource="../icons.qrc">
- <normaloff>:/CC/images/ccViewIso2.png</normaloff>:/CC/images/ccViewIso2.png</iconset>
- </property>
- <property name="text">
- <string>Iso 2</string>
- </property>
- <property name="toolTip">
- <string>Set view to 'back' isometric</string>
- </property>
- <property name="statusTip">
- <string>Set view to 'back' isometric</string>
- </property>
- <property name="shortcut">
- <string notr="true">9</string>
- </property>
- <property name="shortcutContext">
- <enum>Qt::ApplicationShortcut</enum>
- </property>
- </action>
- <action name="actionConvertTextureToColor">
- <property name="icon">
- <iconset resource="../icons.qrc">
- <normaloff>:/CC/images/typeRgbCcolor.png</normaloff>:/CC/images/typeRgbCcolor.png</iconset>
- </property>
- <property name="text">
- <string>Convert texture/material to RGB</string>
- </property>
- </action>
- <action name="actionOpenColorScalesManager">
- <property name="icon">
- <iconset resource="../icons.qrc">
- <normaloff>:/CC/images/typeSF.png</normaloff>:/CC/images/typeSF.png</iconset>
- </property>
- <property name="text">
- <string>Color Scales Manager</string>
- </property>
- <property name="toolTip">
- <string>Open Color Scales Manager dialog</string>
- </property>
- <property name="shortcutContext">
- <enum>Qt::ApplicationShortcut</enum>
- </property>
- </action>
- <action name="actionCrossSection">
- <property name="icon">
- <iconset resource="../icons.qrc">
- <normaloff>:/CC/images/ccClippingBox.png</normaloff>:/CC/images/ccClippingBox.png</iconset>
- </property>
- <property name="text">
- <string>Cross Section</string>
- </property>
- <property name="statusTip">
- <string>Cross Section</string>
- </property>
- <property name="shortcut">
- <string>X</string>
- </property>
- </action>
- <action name="actionEditGlobalShiftAndScale">
- <property name="text">
- <string>Edit global shift and scale</string>
- </property>
- </action>
- <action name="actionScalarFieldFromColor">
- <property name="text">
- <string>Convert to Scalar field</string>
- </property>
- </action>
- <action name="actionColorFromScalarField">
- <property name="text">
- <string>From Scalar fields</string>
- </property>
- </action>
- <action name="actionComputeKdTree">
- <property name="text">
- <string>Compute Kd-tree</string>
- </property>
- </action>
- <action name="actionTest">
- <property name="text">
- <string>test</string>
- </property>
- </action>
- <action name="actionAddIdField">
- <property name="text">
- <string>Add point indexes as SF</string>
- </property>
- <property name="toolTip">
- <string>Adds a scalar field with ordered integers for each point in the cloud</string>
- </property>
- </action>
- <action name="actionFitFacet">
- <property name="text">
- <string>2D polygon (facet)</string>
- </property>
- </action>
- <action name="actionAdjustZoom">
- <property name="text">
- <string>Adjust zoom</string>
- </property>
- <property name="toolTip">
- <string>Adjusts zoom with a given pixel/unit ratio (orthographic projection only)</string>
- </property>
- </action>
- <action name="actionSetSFAsCoord">
- <property name="text">
- <string>Set SF as coordinate(s)</string>
- </property>
- <property name="toolTip">
- <string>Set SF as coordinate(s) (X, Y or Z)</string>
- </property>
- </action>
- <action name="actionCloseAll">
- <property name="text">
- <string>Close all</string>
- </property>
- <property name="toolTip">
- <string>Remove all entities currently loaded in the DB tree</string>
- </property>
- </action>
- <action name="actionEditGlobalScale">
- <property name="text">
- <string>Edit global scale</string>
- </property>
- </action>
- <action name="actionViewFromSensor">
- <property name="icon">
- <iconset resource="../icons.qrc">
- <normaloff>:/CC/images/dbViewportSymbol.png</normaloff>:/CC/images/dbViewportSymbol.png</iconset>
- </property>
- <property name="text">
- <string>View from sensor</string>
- </property>
- </action>
- <action name="actionFindBiggestInnerRectangle">
- <property name="text">
- <string>Find biggest inner rectangle (2D)</string>
- </property>
- </action>
- <action name="actionCreateGBLSensor">
- <property name="text">
- <string>Create</string>
- </property>
- </action>
- <action name="actionCreateCameraSensor">
- <property name="text">
- <string>Create</string>
- </property>
- </action>
- <action name="actionCheckPointsInsideFrustum">
- <property name="text">
- <string>Compute points visibility (with octree)</string>
- </property>
- </action>
- <action name="actionProjectUncertainty">
- <property name="text">
- <string>Project Uncertainty</string>
- </property>
- </action>
- <action name="actionOrientNormalsMST">
- <property name="text">
- <string>With Minimum Spanning Tree</string>
- </property>
- </action>
- <action name="actionOrientNormalsFM">
- <property name="text">
- <string>With Fast Marching</string>
- </property>
- </action>
- <action name="actionCNETest">
- <property name="text">
- <string>CNE test</string>
- </property>
- <property name="iconText">
- <string>Cylindrical Neighbourhood Extraction test</string>
- </property>
- <property name="toolTip">
- <string>Cylindrical Neighbourhood Extraction test</string>
- </property>
- </action>
- <action name="actionApproximateDensity">
- <property name="text">
- <string>Approximate (dist. to nearest neighbor)</string>
- </property>
- </action>
- <action name="actionComputeDensity">
- <property name="text">
- <string>Density</string>
- </property>
- <property name="toolTip">
- <string>Compute density</string>
- </property>
- </action>
- <action name="actionRemoveDuplicatePoints">
- <property name="text">
- <string>Remove duplicate points</string>
- </property>
- </action>
- <action name="actionCrop">
- <property name="text">
- <string>Crop</string>
- </property>
- </action>
- <action name="actionConvertNormalToDipDir">
- <property name="text">
- <string>Dip/Dip direction SFs</string>
- </property>
- </action>
- <action name="actionExportCloudInfo">
- <property name="text">
- <string>Export cloud info</string>
- </property>
- <property name="toolTip">
- <string>Export cloud info to a CSV file (name, size, barycenter, scalar fields info, etc.)</string>
- </property>
- <property name="shortcut">
- <string>E</string>
- </property>
- </action>
- <action name="actionInterpolateColors">
- <property name="text">
- <string>Interpolate from another entity</string>
- </property>
- <property name="toolTip">
- <string>Interpolate colors from another entity (cloud or mesh) - color is taken from the nearest neighbor</string>
- </property>
- </action>
- <action name="actionDistanceToBestFitQuadric3D">
- <property name="text">
- <string>Distance map to best-fit 3D quadric</string>
- </property>
- </action>
- <action name="actionChangeColorLevels">
- <property name="text">
- <string>Levels</string>
- </property>
- </action>
- <action name="actionResetGUIElementsPos">
- <property name="text">
- <string>Reset all GUI element positions</string>
- </property>
- <property name="toolTip">
- <string>Reset all GUI element positions (after restart)</string>
- </property>
- </action>
- <action name="actionConvertToRandomRGB">
- <property name="text">
- <string>Convert to random RGB</string>
- </property>
- </action>
- <action name="actionNoiseFilter">
- <property name="text">
- <string>Noise filter</string>
- </property>
- <property name="toolTip">
- <string>Noise filter (remove the points far from the - approximate - local surface)</string>
- </property>
- </action>
- <action name="actionComputeStatParams2">
- <property name="icon">
- <iconset resource="../icons.qrc">
- <normaloff>:/CC/images/ccComputeStat.png</normaloff>:/CC/images/ccComputeStat.png</iconset>
- </property>
- <property name="text">
- <string>Compute stat. params (active SF)</string>
- </property>
- <property name="toolTip">
- <string>Fits a statistical model on the active scalar field</string>
- </property>
- <property name="statusTip">
- <string>Fits a statistical model on the active scalar field</string>
- </property>
- </action>
- <action name="actionMeasureMeshVolume">
- <property name="text">
- <string>Measure volume</string>
- </property>
- </action>
- <action name="actionFlagMeshVertices">
- <property name="text">
- <string>Flag vertices by type</string>
- </property>
- <property name="toolTip">
- <string>Flag vertices by type: normal (0), border (1), non-manifold (2)</string>
- </property>
- </action>
- <action name="actionToggleActivation">
- <property name="text">
- <string>Activation (not recursive)</string>
- </property>
- <property name="toolTip">
- <string>Enable/disable selected entities (not recursive)</string>
- </property>
- <property name="shortcut">
- <string>A</string>
- </property>
- <property name="shortcutContext">
- <enum>Qt::ApplicationShortcut</enum>
- </property>
- </action>
- <action name="actionLockRotationAxis">
- <property name="checkable">
- <bool>true</bool>
- </property>
- <property name="text">
- <string>Lock rotation about an axis</string>
- </property>
- <property name="toolTip">
- <string>Lock 3D camera rotation about an axis</string>
- </property>
- <property name="shortcut">
- <string>L</string>
- </property>
- <property name="shortcutContext">
- <enum>Qt::ApplicationShortcut</enum>
- </property>
- </action>
- <action name="actionCreateCloudFromEntCenters">
- <property name="text">
- <string>Create cloud from selected entities centers</string>
- </property>
- </action>
- <action name="actionComputeBestICPRmsMatrix">
- <property name="text">
- <string>Compute best registration RMS matrix</string>
- </property>
- <property name="toolTip">
- <string>Computes the best registration between all couples among multiple entities and save the resulting RMS in a matrix (CSV) file</string>
- </property>
- </action>
- <action name="actionEnterBubbleViewMode">
- <property name="text">
- <string>Enter bubble-view mode</string>
- </property>
- <property name="shortcut">
- <string>B</string>
- </property>
- </action>
- <action name="actionExtractSections">
- <property name="icon">
- <iconset resource="../icons.qrc">
- <normaloff>:/CC/images/dbPolylineSymbol.png</normaloff>:/CC/images/dbPolylineSymbol.png</iconset>
- </property>
- <property name="text">
- <string>Extract sections / Unfold</string>
- </property>
- <property name="toolTip">
- <string>Extract cloud sections along polylines or unfold a cloud along a polyline</string>
- </property>
- </action>
- <action name="actionConvertPolylinesToMesh">
- <property name="text">
- <string>Contour plot (polylines) to mesh</string>
- </property>
- <property name="toolTip">
- <string>Contour plot (set of polylines) to a 2.5D mesh</string>
- </property>
- </action>
- <action name="actionLevel">
- <property name="icon">
- <iconset resource="../icons.qrc">
- <normaloff>:/CC/images/ccLevel.png</normaloff>:/CC/images/ccLevel.png</iconset>
- </property>
- <property name="text">
- <string>Level</string>
- </property>
- <property name="toolTip">
- <string>Pick three points to make a cloud or mesh 'level'</string>
- </property>
- </action>
- <action name="actionFitSphere">
- <property name="text">
- <string>Sphere</string>
- </property>
- <property name="toolTip">
- <string>Fits a sphere on the selected cloud</string>
- </property>
- </action>
- <action name="actionMatchScales">
- <property name="text">
- <string>Match scales</string>
- </property>
- </action>
- <action name="actionZoomIn">
- <property name="text">
- <string>Zoom in</string>
- </property>
- <property name="toolTip">
- <string>Zoom in (current 3D view)</string>
- </property>
- <property name="shortcut">
- <string extracomment="Zoom in shortcut">+</string>
- </property>
- </action>
- <action name="actionZoomOut">
- <property name="text">
- <string>Zoom out</string>
- </property>
- <property name="toolTip">
- <string>Zoom out (current 3D view)</string>
- </property>
- <property name="shortcut">
- <string extracomment="Zoom in shortcut">=</string>
- </property>
- </action>
- <action name="actionDistanceMap">
- <property name="text">
- <string>Distance map</string>
- </property>
- </action>
- <action name="actionSORFilter">
- <property name="icon">
- <iconset resource="../icons.qrc">
- <normaloff>:/CC/images/ccSORFilter.png</normaloff>:/CC/images/ccSORFilter.png</iconset>
- </property>
- <property name="text">
- <string>SOR filter</string>
- </property>
- <property name="toolTip">
- <string>Statistical Outlier Filter (remove the points far from their neighbors)</string>
- </property>
- </action>
- <action name="actionEnableStereo">
- <property name="checkable">
- <bool>true</bool>
- </property>
- <property name="icon">
- <iconset resource="../icons.qrc">
- <normaloff>:/CC/images/ccStereo.png</normaloff>:/CC/images/ccStereo.png</iconset>
- </property>
- <property name="text">
- <string>actionEnableStereo</string>
- </property>
- <property name="toolTip">
- <string>Enable stereo mode (with red-blue or red-cyan glasses)</string>
- </property>
- <property name="shortcut">
- <string>F10</string>
- </property>
- <property name="shortcutContext">
- <enum>Qt::ApplicationShortcut</enum>
- </property>
- </action>
- <action name="actionComputePointsVisibility">
- <property name="text">
- <string>Compute points visibility (with depth buffer)</string>
- </property>
- </action>
- <action name="actionCompute2HalfDimVolume">
- <property name="text">
- <string>Compute 2.5D volume</string>
- </property>
- </action>
- <action name="actionExclusiveFullScreen">
- <property name="checkable">
- <bool>true</bool>
- </property>
- <property name="icon">
- <iconset resource="../icons.qrc">
- <normaloff>:/CC/images/ccFullScreen.png</normaloff>:/CC/images/ccFullScreen.png</iconset>
- </property>
- <property name="text">
- <string>Full screen (3D view)</string>
- </property>
- <property name="toolTip">
- <string>Exclusive full screen (3D view)</string>
- </property>
- <property name="shortcut">
- <string>F11</string>
- </property>
- <property name="shortcutContext">
- <enum>Qt::ApplicationShortcut</enum>
- </property>
- </action>
- <action name="actionEnableVisualDebugTraces">
- <property name="text">
- <string>Enable Visual Debug Traces</string>
- </property>
- <property name="toolTip">
- <string>Enables visual debug traces (active 3D view)</string>
- </property>
- <property name="shortcut">
- <string>Ctrl+D</string>
- </property>
- </action>
- <action name="actionRGBToGreyScale">
- <property name="text">
- <string>Convert to grey scale</string>
- </property>
- <property name="toolTip">
- <string>Convert RGB colors to grey scale colors</string>
- </property>
- </action>
- <action name="actionTracePolyline">
- <property name="icon">
- <iconset resource="../icons.qrc">
- <normaloff>:/CC/images/ccTracePolyline.png</normaloff>:/CC/images/ccTracePolyline.png</iconset>
- </property>
- <property name="text">
- <string>Trace Polyline</string>
- </property>
- <property name="toolTip">
- <string>Trace a polyline by point picking</string>
- </property>
- <property name="shortcut">
- <string>Ctrl+P</string>
- </property>
- </action>
- <action name="actionEnableQtWarnings">
- <property name="checkable">
- <bool>true</bool>
- </property>
- <property name="text">
- <string>Enable Qt warnings in Console</string>
- </property>
- </action>
- <action name="actionGlobalShiftSettings">
- <property name="text">
- <string>Global Shift settings</string>
- </property>
- <property name="toolTip">
- <string>Set Global Shift & Scale mechanism parameters</string>
- </property>
- </action>
- <action name="actionEnableCameraLink">
- <property name="checkable">
- <bool>true</bool>
- </property>
- <property name="text">
- <string>Camera link</string>
- </property>
- <property name="toolTip">
- <string>Link the cameras of all 3D views
- (so that they all move in the same way and at the same time)</string>
- </property>
- </action>
- <action name="actionShowWaveDialog">
- <property name="text">
- <string>2D Waveform viewer</string>
- </property>
- </action>
- <action name="actionCreatePlane">
- <property name="text">
- <string>Create</string>
- </property>
- <property name="toolTip">
- <string>Create a plane</string>
- </property>
- </action>
- <action name="actionEditPlane">
- <property name="text">
- <string>Edit</string>
- </property>
- <property name="toolTip">
- <string>Edit the plane parameters</string>
- </property>
- </action>
- <action name="actionCreateSurfaceBetweenTwoPolylines">
- <property name="text">
- <string>Create surface between two polylines</string>
- </property>
- </action>
- <action name="actionMeshTwoPolylines">
- <property name="text">
- <string>Surface between 2 polylines</string>
- </property>
- </action>
- <action name="actionFitPlaneProxy">
- <property name="text">
- <string>Fit</string>
- </property>
- <property name="toolTip">
- <string>Fit a plane on a set of point</string>
- </property>
- </action>
- <action name="actionEnhanceRGBWithIntensities">
- <property name="text">
- <string>Enhance with intensities</string>
- </property>
- </action>
- <action name="actionMeshScanGrids">
- <property name="text">
- <string>Mesh scan grids</string>
- </property>
- <property name="toolTip">
- <string>Mesh scan grids (structured point clouds)</string>
- </property>
- </action>
- <action name="actionAutoPickRotationCenter">
- <property name="checkable">
- <bool>true</bool>
- </property>
- <property name="checked">
- <bool>true</bool>
- </property>
- <property name="icon">
- <iconset resource="../icons.qrc">
- <normaloff>:/CC/images/ccPickCenterAuto.png</normaloff>:/CC/images/ccPickCenterAuto.png</iconset>
- </property>
- <property name="text">
- <string>Auto-pick rotation center</string>
- </property>
- <property name="toolTip">
- <string>Auto-pick rotation center (rotation is always placed at the middle of the screen if possible)</string>
- </property>
- <property name="shortcut">
- <string>Shift+P</string>
- </property>
- <property name="shortcutContext">
- <enum>Qt::ApplicationShortcut</enum>
- </property>
- </action>
- <action name="actionShowCursor3DCoordinates">
- <property name="checkable">
- <bool>true</bool>
- </property>
- <property name="text">
- <string>Show cursor coordinates</string>
- </property>
- <property name="toolTip">
- <string>Show cursor coordinates (2D and 3D if possible)</string>
- </property>
- </action>
- <action name="actionDeleteScanGrid">
- <property name="text">
- <string>Delete scan grids</string>
- </property>
- <property name="toolTip">
- <string>Delete the underlying scan grids</string>
- </property>
- </action>
- <action name="actionCompressFWFData">
- <property name="text">
- <string>Compress FWF data</string>
- </property>
- <property name="toolTip">
- <string>Compress the associated FWF data (maybe interesting after interactive segmentation for instance)</string>
- </property>
- </action>
- <action name="actionInterpolateSFs">
- <property name="text">
- <string>Interpolate from another entity</string>
- </property>
- <property name="toolTip">
- <string>Interpolate scalar-field(s) from another cloud or mesh</string>
- </property>
- </action>
- <action name="actionExportPlaneInfo">
- <property name="text">
- <string>Export plane info</string>
- </property>
- <property name="toolTip">
- <string>Export plane info to a CSV file (name, width, height, center, normal, dip and dip direction, etc.)</string>
- </property>
- </action>
- <action name="actionLock_rotation_about_arbitrary_axis">
- <property name="text">
- <string>Lock rotation about arbitrary axis</string>
- </property>
- </action>
- <action name="actionSamplePointsOnPolyline">
- <property name="text">
- <string>Sample points</string>
- </property>
- </action>
- <action name="actionNoTranslation">
- <property name="text">
- <string>None (English)</string>
- </property>
- </action>
- <action name="actionComputeGeometricFeature">
- <property name="text">
- <string>Compute geometric features</string>
- </property>
- <property name="toolTip">
- <string>Compute geometric features (density, curvature, roughness, etc.)</string>
- </property>
- </action>
- <action name="actionBBMinCornerToOrigin">
- <property name="text">
- <string>Move bounding-box min corner to origin</string>
- </property>
- <property name="toolTip">
- <string>Move the bounding-box min corner to the origin</string>
- </property>
- </action>
- <action name="actionBBMaxCornerToOrigin">
- <property name="text">
- <string>Move bounding-box max corner to origin</string>
- </property>
- <property name="toolTip">
- <string>Move the bounding-box max corner to the origin</string>
- </property>
- </action>
- <action name="actionBBCenterToOrigin">
- <property name="text">
- <string>Move bounding-box center to origin</string>
- </property>
- <property name="toolTip">
- <string>Move the bounding-box center to the origin</string>
- </property>
- </action>
- <action name="actionFlipPlane">
- <property name="text">
- <string>Flip</string>
- </property>
- <property name="toolTip">
- <string>Flip the selected plane</string>
- </property>
- </action>
- <action name="actionComparePlanes">
- <property name="text">
- <string>Compare</string>
- </property>
- <property name="toolTip">
- <string>Compare two planes (angle + distance)</string>
- </property>
- </action>
- <action name="actionFlipMeshTriangles">
- <property name="text">
- <string>Flip triangles</string>
- </property>
- <property name="toolTip">
- <string>Flip triangles (if vertices are ordered in the non-direct order)</string>
- </property>
- </action>
- <action name="actionCloudPrimitiveDist">
- <property name="icon">
- <iconset resource="../icons.qrc">
- <normaloff>:/CC/images/ccCloudPrimitiveDistance.png</normaloff>:/CC/images/ccCloudPrimitiveDistance.png</iconset>
- </property>
- <property name="text">
- <string>Cloud/Primitive Dist</string>
- </property>
- <property name="toolTip">
- <string>Compute cloud/Primitive distance</string>
- </property>
- <property name="statusTip">
- <string>Compute cloud/Primitive distance</string>
- </property>
- </action>
- <action name="actionExportNormalToSF">
- <property name="text">
- <string>Export normals to SF(s)</string>
- </property>
- <property name="toolTip">
- <string>Export normals to one or several scalar fields</string>
- </property>
- </action>
- <action name="actionSmoothPolyline">
- <property name="text">
- <string>Smooth</string>
- </property>
- </action>
- <action name="actionResetAllVBOs">
- <property name="text">
- <string>Reset all VBOs</string>
- </property>
- <property name="toolTip">
- <string>Reset all VBOs (unload GPU memory)</string>
- </property>
- </action>
- <action name="actionCreateSinglePointCloud">
- <property name="text">
- <string>Create single point cloud</string>
- </property>
- <property name="toolTip">
- <string>Create a cloud with a single point</string>
- </property>
- <property name="statusTip">
- <string>Create a cloud with a single point</string>
- </property>
- <property name="whatsThis">
- <string/>
- </property>
- </action>
- <action name="actionPasteCloudFromClipboard">
- <property name="text">
- <string>Paste from clipboard</string>
- </property>
- <property name="toolTip">
- <string>Paste from ASCII/text data stored in the clipboard</string>
- </property>
- <property name="statusTip">
- <string>Paste from ASCII/text data stored in the clipboard</string>
- </property>
- <property name="shortcut">
- <string>Alt+P</string>
- </property>
- </action>
- <action name="actionSplitCloudUsingSF">
- <property name="text">
- <string>Split cloud (integer values)</string>
- </property>
- <property name="toolTip">
- <string>Split the selected cloud using the current scalar field.
- The active scalar field should have integer values.</string>
- </property>
- </action>
- <action name="actionAddClassificationSF">
- <property name="icon">
- <iconset resource="../icons.qrc">
- <normaloff>:/CC/images/ccAddConstSF.png</normaloff>:/CC/images/ccAddConstSF.png</iconset>
- </property>
- <property name="text">
- <string>Add classification SF</string>
- </property>
- <property name="toolTip">
- <string>Add classification SF (shorcut to 'Add constant SF')</string>
- </property>
- </action>
- <action name="actionRestoreWindowOnStartup">
- <property name="checkable">
- <bool>true</bool>
- </property>
- <property name="checked">
- <bool>true</bool>
- </property>
- <property name="text">
- <string>Restore window geometry on startup</string>
- </property>
- </action>
- <action name="actionShiftPointsAlongNormals">
- <property name="text">
- <string>Shift points along normals</string>
- </property>
- <property name="toolTip">
- <string>Shift the points of the selected cloud along their normals</string>
- </property>
- </action>
- <action name="actionFitCircle">
- <property name="text">
- <string>Circle</string>
- </property>
- <property name="toolTip">
- <string>Fits a circle on the selected cloud</string>
- </property>
- </action>
- <action name="actionSetSFsAsNormal">
- <property name="text">
- <string>Set SF(s) as normal</string>
- </property>
- </action>
- <action name="actionOpen_project">
- <property name="text">
- <string>Open project</string>
- </property>
- </action>
- <action name="actionSaveProject">
- <property name="icon">
- <iconset resource="../icons.qrc">
- <normaloff>:/CC/images/ccSaveProject.png</normaloff>:/CC/images/ccSaveProject.png</iconset>
- </property>
- <property name="text">
- <string>Save project</string>
- </property>
- <property name="iconText">
- <string>Save project (BIN)</string>
- </property>
- <property name="toolTip">
- <string>Save all entities in a BIN file</string>
- </property>
- <property name="statusTip">
- <string>Save all entities in a BIN file</string>
- </property>
- <property name="shortcut">
- <string>Ctrl+Shift+S</string>
- </property>
- </action>
- </widget>
- <customwidgets>
- <customwidget>
- <class>ccCustomQTreeView</class>
- <extends>QTreeView</extends>
- <header location="global">ccDBRoot.h</header>
- </customwidget>
- <customwidget>
- <class>ccCustomQListWidget</class>
- <extends>QListWidget</extends>
- <header location="global">ccConsole.h</header>
- </customwidget>
- </customwidgets>
- <resources>
- <include location="../icons.qrc"/>
- </resources>
- <connections>
- <connection>
- <sender>actionConsole</sender>
- <signal>triggered(bool)</signal>
- <receiver>DockableConsole</receiver>
- <slot>setVisible(bool)</slot>
- <hints>
- <hint type="sourcelabel">
- <x>-1</x>
- <y>-1</y>
- </hint>
- <hint type="destinationlabel">
- <x>554</x>
- <y>747</y>
- </hint>
- </hints>
- </connection>
- <connection>
- <sender>DockableConsole</sender>
- <signal>visibilityChanged(bool)</signal>
- <receiver>actionConsole</receiver>
- <slot>setChecked(bool)</slot>
- <hints>
- <hint type="sourcelabel">
- <x>554</x>
- <y>747</y>
- </hint>
- <hint type="destinationlabel">
- <x>-1</x>
- <y>-1</y>
- </hint>
- </hints>
- </connection>
- <connection>
- <sender>actionDisplayMainTools</sender>
- <signal>toggled(bool)</signal>
- <receiver>toolBarMainTools</receiver>
- <slot>setVisible(bool)</slot>
- <hints>
- <hint type="sourcelabel">
- <x>-1</x>
- <y>-1</y>
- </hint>
- <hint type="destinationlabel">
- <x>232</x>
- <y>35</y>
- </hint>
- </hints>
- </connection>
- <connection>
- <sender>actionDisplayScalarFieldsTools</sender>
- <signal>toggled(bool)</signal>
- <receiver>toolBarSFTools</receiver>
- <slot>setVisible(bool)</slot>
- <hints>
- <hint type="sourcelabel">
- <x>-1</x>
- <y>-1</y>
- </hint>
- <hint type="destinationlabel">
- <x>1023</x>
- <y>54</y>
- </hint>
- </hints>
- </connection>
- <connection>
- <sender>actionDisplayViewTools</sender>
- <signal>toggled(bool)</signal>
- <receiver>toolBarView</receiver>
- <slot>setVisible(bool)</slot>
- <hints>
- <hint type="sourcelabel">
- <x>-1</x>
- <y>-1</y>
- </hint>
- <hint type="destinationlabel">
- <x>34</x>
- <y>150</y>
- </hint>
- </hints>
- </connection>
- <connection>
- <sender>actionFitPlaneProxy</sender>
- <signal>triggered()</signal>
- <receiver>actionFitPlane</receiver>
- <slot>trigger()</slot>
- <hints>
- <hint type="sourcelabel">
- <x>-1</x>
- <y>-1</y>
- </hint>
- <hint type="destinationlabel">
- <x>-1</x>
- <y>-1</y>
- </hint>
- </hints>
- </connection>
- <connection>
- <sender>actionCreateSurfaceBetweenTwoPolylines</sender>
- <signal>triggered()</signal>
- <receiver>actionMeshTwoPolylines</receiver>
- <slot>trigger()</slot>
- <hints>
- <hint type="sourcelabel">
- <x>-1</x>
- <y>-1</y>
- </hint>
- <hint type="destinationlabel">
- <x>-1</x>
- <y>-1</y>
- </hint>
- </hints>
- </connection>
- </connections>
- </ui>
|