0
|
1 <tool id="yolo" name="YOLO" version="1.0">
|
|
2 <description>real-time object detection</description>
|
|
3 <requirements>
|
|
4 <requirement type="package" version="1.0">darknet</requirement>
|
|
5 </requirements>
|
|
6 <command detect_errors="exit_code"><![CDATA[
|
3
|
7 cp -R /home/greg/_conda/envs/__darknet@1.0/bin/* . &&
|
2
|
8 darknet detect cfg/yolo.cfg yolo.weights '$input' 2> output.log
|
0
|
9 && mv ./predictions.png $output
|
|
10 ]]></command>
|
|
11 <inputs>
|
|
12 <param name="input" type="data" format="jpg" label="Select input image" />
|
|
13 </inputs>
|
|
14 <outputs>
|
|
15 <data name="output_log" format="txt" label="${tool.name} darknet output log) on ${on_string}" />
|
|
16 <data name="output" format="png"/>
|
|
17 </outputs>
|
|
18 <tests>
|
|
19 <test>
|
|
20 </test>
|
|
21 </tests>
|
|
22 <help>
|
|
23 **What it does**
|
|
24
|
|
25 You only look once (YOLO) is a state-of-the-art, real-time object detection system.
|
|
26
|
|
27 -----
|
|
28
|
|
29 **Options**
|
|
30
|
|
31 </help>
|
|
32 <citations>
|
|
33 <citation type="bibtex">
|
|
34 @misc{darknet13,
|
|
35 author = {Joseph Redmon},
|
|
36 title = {Darknet: Open Source Neural Networks in C},
|
|
37 url = {http://pjreddie.com/darknet/},
|
|
38 year = {2013--2016}}
|
|
39 </citation>
|
|
40 <citation type="bibtex">
|
|
41 @article{redmon2016yolo9000,
|
|
42 title={YOLO9000: Better, Faster, Stronger},
|
|
43 author={Redmon, Joseph and Farhadi, Ali},
|
|
44 journal={arXiv preprint arXiv:1612.08242},
|
|
45 year={2016}}
|
|
46 </citation>
|
|
47 </citations>
|
|
48 </tool>
|