changeset 0:755213860c0d draft

Uploaded
author greg
date Fri, 13 Oct 2017 10:34:23 -0400
parents
children db56be98e137
files yolo.xml
diffstat 1 files changed, 47 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/yolo.xml	Fri Oct 13 10:34:23 2017 -0400
@@ -0,0 +1,47 @@
+<tool id="yolo" name="YOLO" version="1.0">
+    <description>real-time object detection</description>
+    <requirements>
+        <requirement type="package" version="1.0">darknet</requirement>
+    </requirements>
+    <command detect_errors="exit_code"><![CDATA[
+darknet detect cfg/yolo.cfg yolo.weights '$input' 2> output.log
+&& mv ./predictions.png $output
+    ]]></command>
+    <inputs>
+        <param name="input" type="data" format="jpg" label="Select input image" />
+    </inputs>
+    <outputs>
+        <data name="output_log" format="txt" label="${tool.name} darknet output log) on ${on_string}" />
+        <data name="output" format="png"/>
+    </outputs>
+    <tests>
+        <test>
+        </test>
+    </tests>
+    <help>
+**What it does**
+
+You only look once (YOLO) is a state-of-the-art, real-time object detection system.
+
+-----
+
+**Options**
+
+    </help>
+    <citations>
+        <citation type="bibtex">
+            @misc{darknet13,
+            author = {Joseph Redmon},
+            title = {Darknet: Open Source Neural Networks in C},
+            url = {http://pjreddie.com/darknet/},
+            year = {2013--2016}}
+        </citation>
+        <citation type="bibtex">
+            @article{redmon2016yolo9000,
+            title={YOLO9000: Better, Faster, Stronger},
+            author={Redmon, Joseph and Farhadi, Ali},
+            journal={arXiv preprint arXiv:1612.08242},
+            year={2016}}
+        </citation>
+    </citations>
+</tool>