You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/workflows/issue-triage.yml
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -12,8 +12,8 @@ jobs:
12
12
- uses: pierotofy/issuewhiz@v1
13
13
with:
14
14
ghToken: ${{ secrets.GITHUB_TOKEN }}
15
-
openAI: ${{ secrets.OPENAI_TOKEN }}
16
-
model: gpt-4o-2024-08-06
15
+
gemini: ${{ secrets.GEMINI_TOKEN }}
16
+
model: gemini-2.5-flash
17
17
filter: |
18
18
- "#"
19
19
variables: |
@@ -24,10 +24,10 @@ jobs:
24
24
- E: "Contains a suggestion for an improvement or a feature request?"
25
25
- SC: "Describes an issue related to compiling or building source code?"
26
26
logic: |
27
-
- 'Q and (not B) and (not P) and (not E) and (not SC) and not (title_lowercase ~= ".*bug: .+")': [comment: "Could we move this conversation over to the forum at https://community.opendronemap.org? The forum is the right place to ask questions (we try to keep the GitHub issue tracker for feature requests and bugs only). Thank you!", close: true, stop: true]
27
+
- 'Q and (not B) and (not P) and (not E) and (not SC) and not (title_lowercase ~= ".*bug: .+")': [comment: "Could we move this conversation over to a community https://webodm.org/community ? The forum is the right place to ask questions (we try to keep the GitHub issue tracker for feature requests and bugs only). Thank you!", close: true, stop: true]
28
28
- "B and (not P) and (not E) and (not SC)": [label: "software fault", stop: true]
29
29
- "P and D": [label: "possible software fault", stop: true]
30
-
- "P and (not D) and (not SC) and (not E)": [comment: "Thanks for the report, but it looks like you didn't include a copy of your dataset for us to reproduce this issue? Please make sure to follow our [issue guidelines](https://github.com/OpenDroneMap/ODM/blob/master/docs/issue_template.md) :pray: ", close: true, stop: true]
30
+
- "P and (not D) and (not SC) and (not E)": [comment: "Thanks for the report, but it looks like you didn't include a copy of your dataset for us to reproduce this issue? Please make sure to follow our [issue guidelines](https://github.com/WebODM/ODM/blob/master/docs/issue_template.md) :pray: ", close: true, stop: true]
Copy file name to clipboardExpand all lines: README.md
+32-23Lines changed: 32 additions & 23 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,37 +9,43 @@ An open source command line toolkit for processing aerial drone imagery. ODM tur
9
9
10
10
The application is available for Windows, Mac and Linux and it works from the command line, making it ideal for power users, scripts and for integration with other software.
11
11
12
-
If you would rather not type commands in a shell and are looking for a friendly user interface, check out [WebODM](https://github.com/OpenDroneMap/WebODM).
12
+
If you would rather not type commands in a shell and are looking for a friendly user interface, check out [WebODM](https://github.com/WebODM/WebODM).
13
13
14
14
## Quickstart
15
15
16
16
The easiest way to run ODM is via docker. To install docker, see [docs.docker.com](https://docs.docker.com). Once you have docker installed and [working](https://docs.docker.com/get-started/#test-docker-installation), you can get ODM by running from a Command Prompt / Terminal:
17
17
18
18
```bash
19
-
docker pull opendronemap/odm
19
+
docker pull webodm/odm
20
20
```
21
21
22
22
Run ODM by placing some images (JPEGs, TIFFs or DNGs) in a folder named “images” (for example `C:\Users\youruser\datasets\project\images` or `/home/youruser/datasets/project/images`) and simply run from a Command Prompt / Terminal:
23
23
24
24
```bash
25
25
# Windows
26
-
docker run -ti --rm -v c:/Users/youruser/datasets:/datasets opendronemap/odm --project-path /datasets project
26
+
docker run -ti --rm -v c:/Users/youruser/datasets:/datasets webodm/odm --project-path /datasets project
27
27
```
28
28
```bash
29
29
# Mac/Linux
30
-
docker run -ti --rm -v /home/youruser/datasets:/datasets opendronemap/odm --project-path /datasets project
30
+
docker run -ti --rm -v /home/youruser/datasets:/datasets webodm/odm --project-path /datasets project
31
31
```
32
32
33
-
You can pass [additional parameters](https://docs.opendronemap.org/arguments/) by appending them to the command:
33
+
You can pass additional parameters by appending them to the command:
docker run -ti --rm -v /datasets:/datasets webodm/odm --help
43
49
```
44
50
45
51
## Viewing Results
@@ -70,30 +76,30 @@ You can use the following free and open source software to open the files genera
70
76
71
77
## API
72
78
73
-
ODM can be made accessible from a network via [NodeODM](https://github.com/OpenDroneMap/NodeODM).
79
+
ODM can be made accessible from a network via [NodeODM](https://github.com/WebODM/NodeODM).
74
80
75
81
## Documentation
76
82
77
-
See http://docs.opendronemap.org for tutorials and more guides.
83
+
See http://docs.webodm.org for tutorials and more guides.
78
84
79
-
## Forum
85
+
## Community
80
86
81
-
We have a vibrant [community forum](https://community.opendronemap.org/). You can [search it](https://community.opendronemap.org/search?expanded=true) for issues you might be having with ODM and you can post questions there. We encourage users of ODM to participate in the forum and to engage with fellow drone mapping users.
87
+
See https://webodm.org/communityto find a community near you.
82
88
83
89
## Windows Setup
84
90
85
-
ODM can be installed natively on Windows. Just download the latest setup from the [releases](https://github.com/OpenDroneMap/ODM/releases) page. After opening the ODM Console you can process datasets by typing:
91
+
ODM can be installed natively on Windows. Just download the latest setup from the [releases](https://github.com/WebODM/ODM/releases) page. After opening the ODM Console you can process datasets by typing:
86
92
87
93
```bash
88
94
run C:\Users\youruser\datasets\project [--additional --parameters --here]
89
95
```
90
96
91
97
## GPU Acceleration
92
98
93
-
ODM has support for doing SIFT feature extraction on a GPU, which is about 2x faster than the CPU on a typical consumer laptop. To use this feature, you need to use the `opendronemap/odm:gpu` docker image instead of `opendronemap/odm` and you need to pass the `--gpus all` flag:
99
+
ODM has support for doing SIFT feature extraction on a GPU, which is about 2x faster than the CPU on a typical consumer laptop. To use this feature, you need to use the `webodm/odm:gpu` docker image instead of `webodm/odm:gpu` and you need to pass the `--gpus all` flag:
94
100
95
101
```
96
-
docker run -ti --rm -v c:/Users/youruser/datasets:/datasets --gpus all opendronemap/odm:gpu --project-path /datasets project --feature-type sift
102
+
docker run -ti --rm -v c:/Users/youruser/datasets:/datasets --gpus all webodm/odm:gpu --project-path /datasets project --feature-type sift
97
103
```
98
104
99
105
When you run ODM, if the GPU is recognized, in the first few lines of output you should see:
@@ -133,7 +139,7 @@ See https://github.com/NVIDIA/nvidia-docker and https://docs.nvidia.com/datacent
133
139
You can run ODM natively on Ubuntu 24.04 (although we don't recommend it):
134
140
135
141
```bash
136
-
git clone https://github.com/OpenDroneMap/ODM
142
+
git clone https://github.com/WebODM/ODM
137
143
cd ODM
138
144
bash configure.sh install
139
145
```
@@ -154,14 +160,14 @@ First install:
154
160
Then Run:
155
161
156
162
```bash
157
-
git clone https://github.com/OpenDroneMap/ODM
163
+
git clone https://github.com/WebODM/ODM
158
164
cd ODM
159
165
bash configure_macos.sh install
160
166
```
161
167
162
168
You can then process datasets with `./run.sh /datasets/odm_data_aukerman`
163
169
164
-
This could be improved in the future. [Helps us create a Homebrew formula](https://github.com/OpenDroneMap/ODM/issues/1531).
170
+
This could be improved in the future. [Helps us create a Homebrew formula](https://github.com/WebODM/ODM/issues/1531).
165
171
166
172
### Updating a native installation
167
173
@@ -202,7 +208,7 @@ Starting from version 3.0.4, ODM can automatically extract images from video fil
202
208
203
209
## Developers
204
210
205
-
Help improve our software! We welcome contributions from everyone, whether to add new features, improve speed, fix existing bugs or add support for more cameras. Check our [code of conduct](https://github.com/OpenDroneMap/documents/blob/master/CONDUCT.md), the [contributing guidelines](https://github.com/OpenDroneMap/documents/blob/master/CONTRIBUTING.md) and [how decisions are made](https://github.com/OpenDroneMap/documents/blob/master/GOVERNANCE.md#how-decisions-are-made).
211
+
Help improve our software! We welcome contributions from everyone, whether to add new features, improve speed, fix existing bugs or add support for more cameras. Check [contributing guidelines](https://github.com/WebODM/WebODM/blob/master/CONTRIBUTING.md).
206
212
207
213
208
214
### Installation and first run
@@ -229,29 +235,32 @@ You can now make changes to the ODM source. When you are ready to test the chang
229
235
docker stop odmdev
230
236
```
231
237
### To come back to dev environement
232
-
change your_username to your username
238
+
239
+
(change `your_username` to your username)
240
+
233
241
```bash
234
242
docker start odmdev
235
243
docker exec -ti odmdev bash
236
244
su your_username
237
245
```
238
246
239
247
240
-
If you have questions, join the developer's chat at https://community.opendronemap.org/c/developers-chat/21
248
+
If you have questions, join the #devtalk's channel on discord: https://webodm.org/community
241
249
242
250
1. Try to keep commits clean and simple
243
251
2. Submit a pull request with detailed changes and test results
244
252
3. Have fun!
245
253
246
254
### Troubleshooting
247
-
The dev environment makes use of `opendronemap/nodeodm` by default. You may want to run
248
-
`docker pull opendronemap/nodeodm` before running `./start-dev-env.sh` to avoid using an old cached version.
255
+
256
+
The dev environment makes use of `webodm/nodeodm` by default. You may want to run
257
+
`docker pull webodm/nodeodm` before running `./start-dev-env.sh` to avoid using an old cached version.
249
258
250
259
In order to make a clean build, remove `~/.odm-dev-home` and `ODM/.setupdevenv`.
251
260
252
261
## Credits
253
262
254
-
ODM makes use of [several libraries](https://github.com/OpenDroneMap/ODM/blob/master/snap/snapcraft.yaml#L36) and other awesome open source projects to perform its tasks. Among them we'd like to highlight:
263
+
ODM makes use of other awesome open source projects to perform its tasks. Among them we'd like to highlight:
Copy file name to clipboardExpand all lines: contrib/mask-duplicator/README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,4 +6,4 @@ This snippet takes the file path of a single image mask and duplicates it for al
6
6
7
7
Before using this code snippet, open one of your 360 images in an image editor and mask out the helmet or tripod, etc at the bottom of your image. Save this image as a png and then use it as the mask image that will be duplicated for all images in the dataset.
8
8
9
-
See https://docs.opendronemap.org/masks/ for more details on mask creation.
9
+
See https://docs.webodm.org/tutorials/using-image-masks/ for more details on mask creation.
0 commit comments