zhongrj
2025-11-24 276323dce9613867abb3f58a4cc2abbfb2fd0dea
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
import { _ } from './gettext';
 
export default {
    get: function(){
        return [{
                action: "dataset",
                label: _("Load Dataset"),
                icon: "fa fa-database"
            },
            {
                action: "opensfm",
                label: _("Structure From Motion"),
                icon: "fa fa-camera"
            },
            {
                action: "openmvs",
                label: _("Multi View Stereo"),
                icon: "fa fa-braille"
            },
            {
                action: "odm_filterpoints",
                label: _("Point Filtering"),
                icon: "fa fa-filter"
            },
            {
                action: "odm_meshing",
                label: _("Meshing"),
                icon: "fa fa-cube"
            },
            {
                action: "mvs_texturing",
                label: _("Texturing"),
                icon: "fab fa-connectdevelop"
            },
            {
                action: "odm_georeferencing",
                label: _("Georeferencing"),
                icon: "fa fa-globe"
            },
            {
                action: "odm_dem",
                label: _("DEM"),
                icon: "fa fa-chart-area"
            },
            {
                action: "odm_orthophoto",
                label: _("Orthophoto"),
                icon: "far fa-image"
            },
            {
                action: "odm_report",
                label: _("Report"),
                icon: "far fa-file-alt"
            },
            {
                action: "odm_postprocess",
                label: _("Postprocess"),
                icon: "fa fa-cog"
            }
        ];
    }
};