Remove min-num-features suggestion

pull/688/head
Piero Toffanin 2019-06-25 14:54:29 -04:00
rodzic c32404916a
commit 972e47934b
1 zmienionych plików z 4 dodań i 6 usunięć

Wyświetl plik

@ -245,11 +245,12 @@ class TaskListItem extends React.Component {
this.setState({memoryError: true});
}else if (line.indexOf("SVD did not converge") !== -1 ||
line.indexOf("0 partial reconstructions in total") !== -1){
this.setState({friendlyTaskError: `It looks like the images might have one of the following problems:
this.setState({friendlyTaskError: `It looks like there might be one of the following problems:
<ul>
<li>Not enough images</li>
<li>Not enough overlap between images</li>
<li>Images might be too blurry (common with phone cameras)</li>
<li>The min-num-features task option is set too low, try increasing it by 25%</li>
</ul>
You can read more about best practices for capturing good images <a href='https://support.dronedeploy.com/v1.0/docs/making-successful-maps' target='_blank'>here</a>.`});
}else if (line.indexOf("Illegal instruction") !== -1 ||
@ -518,11 +519,8 @@ class TaskListItem extends React.Component {
{showExitedWithCodeOneHints ?
<div className="task-warning"><i className="fa fa-info-circle"></i> <div className="inline">
"Process exited with code 1" means that part of the processing failed. Try tweaking the <a href="javascript:void(0);" onClick={this.startEditing}>Task Options</a> as follows:
<ul>
<li>Increase the <b>min-num-features</b> option, especially if your images have lots of vegetation</li>
</ul>
Still not working? Upload your images somewhere like <a href="https://www.dropbox.com/" target="_blank">Dropbox</a> or <a href="https://drive.google.com/drive/u/0/" target="_blank">Google Drive</a> and <a href="http://community.opendronemap.org/c/webodm" target="_blank">open a topic</a> on our community forum, making
"Process exited with code 1" means that part of the processing failed. Sometimes it's a problem with the dataset, sometimes it can be solved by tweaking the <a href="javascript:void(0);" onClick={this.startEditing}>Task Options</a> and sometimes it might be a bug!
If you need help, upload your images somewhere like <a href="https://www.dropbox.com/" target="_blank">Dropbox</a> or <a href="https://drive.google.com/drive/u/0/" target="_blank">Google Drive</a> and <a href="http://community.opendronemap.org/c/webodm" target="_blank">open a topic</a> on our community forum, making
sure to include a <a href="javascript:void(0);" onClick={this.setView("console")}>copy of your task's output</a>. Our awesome contributors will try to help you! <i className="fa fa-smile-o"></i>
</div>
</div>