2008-02-11 23:38:31 +00:00
|
|
|
<?php
|
|
|
|
|
2008-07-15 21:43:45 +00:00
|
|
|
require_once("../inc/bossa.inc");
|
2008-02-11 23:38:31 +00:00
|
|
|
|
2008-07-15 21:43:45 +00:00
|
|
|
// Bossa example #2.
|
|
|
|
// Show the user an image and ask them to click on the ellipse
|
|
|
|
// This version does replication;
|
|
|
|
// a job is considered done if either
|
|
|
|
// - 2 instances are positive and match within +- 20 pixels
|
|
|
|
// - 2 instances are negative
|
|
|
|
// - there are 10 finished instances
|
|
|
|
// (in which case the job is marked as inconclusive)
|
2008-02-11 23:38:31 +00:00
|
|
|
|
2008-07-15 21:43:45 +00:00
|
|
|
function job_show($job, $inst, $user) {
|
|
|
|
$info = $job->get_info($job);
|
|
|
|
$path = $info->path;
|
|
|
|
echo "
|
|
|
|
<h2>Find the Ellipse!</h2>
|
|
|
|
<form method=get action=bossa_job_finished.php>
|
|
|
|
Click on the center of the ellipse.
|
|
|
|
If you don't see one, click here:
|
|
|
|
<input type=submit name=submit value=None>
|
|
|
|
<br><br>
|
|
|
|
<input type=hidden name=bji value=$inst->id>
|
|
|
|
<input type=image name=pic src=$path>
|
|
|
|
</form>
|
|
|
|
";
|
2008-02-11 23:38:31 +00:00
|
|
|
}
|
|
|
|
|
2008-07-15 21:43:45 +00:00
|
|
|
function job_issued($job, $inst, $user) {
|
|
|
|
$insts = $job->get_instances();
|
|
|
|
if (count($insts) > 1) {
|
|
|
|
$job->set_priority(0);
|
2008-07-14 19:13:19 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-07-15 21:43:45 +00:00
|
|
|
function job_finished($job, $inst) {
|
|
|
|
$response = null;
|
|
|
|
if (get_str('submit', true)) {
|
|
|
|
$response->have_ellipse = 0;
|
|
|
|
} else {
|
|
|
|
$response->have_ellipse = 1;
|
|
|
|
$response->cx = get_int('pic_x');
|
|
|
|
$response->cy = get_int('pic_y');
|
2008-07-14 19:13:19 +00:00
|
|
|
}
|
2008-07-15 21:43:45 +00:00
|
|
|
$inst->update_info($response);
|
2008-07-14 19:13:19 +00:00
|
|
|
|
2008-07-15 21:43:45 +00:00
|
|
|
// see if job is done
|
|
|
|
//
|
|
|
|
$insts = $job->get_finished_instances();
|
|
|
|
$n = count($insts);
|
2008-07-14 19:13:19 +00:00
|
|
|
|
2008-07-15 21:43:45 +00:00
|
|
|
$results = null;
|
|
|
|
foreach ($insts as $inst) {
|
2008-07-17 20:58:42 +00:00
|
|
|
$results[] = $inst->get_info();
|
2008-07-15 21:43:45 +00:00
|
|
|
}
|
|
|
|
for ($i=0; $i<$n-1; $i++) {
|
|
|
|
$r1 = $results[$i];
|
|
|
|
for ($j=$i+1; $j<$n; $j++) {
|
|
|
|
$r2 = $results[$j];
|
|
|
|
if (compatible($r1, $r2)) {
|
|
|
|
$job->update_state(BOSSA_JOB_DONE);
|
|
|
|
return;
|
|
|
|
}
|
2008-07-14 19:13:19 +00:00
|
|
|
}
|
|
|
|
}
|
2008-07-17 20:58:42 +00:00
|
|
|
if ($n >= 10) {
|
|
|
|
$job->update_state(BOSSA_JOB_INCONCLUSIVE);
|
|
|
|
return;
|
|
|
|
}
|
2008-07-14 19:13:19 +00:00
|
|
|
}
|
|
|
|
|
2008-07-15 21:43:45 +00:00
|
|
|
// two results are compatible if neither found an ellipse,
|
|
|
|
// or they both did and centers are within 20 pixels
|
2008-07-14 19:13:19 +00:00
|
|
|
//
|
2008-07-15 21:43:45 +00:00
|
|
|
function compatible($r1, $r2) {
|
|
|
|
if ($r1->have_ellipse) {
|
|
|
|
if ($r2->have_ellipse) {
|
|
|
|
$dx = ($r1->cx - $r2->cx);
|
|
|
|
$dy = ($r1->cy - $r2->cy);
|
|
|
|
$dsq = $dx*$dx + $dy*$dy;
|
|
|
|
return ($dsq < 400);
|
|
|
|
} else return false;
|
|
|
|
} else {
|
|
|
|
return !$r2->have_ellipse;
|
2008-07-14 19:13:19 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-07-15 21:43:45 +00:00
|
|
|
function job_timed_out($job, $inst, $user) {
|
|
|
|
$job->set_priority(1);
|
2008-07-14 19:13:19 +00:00
|
|
|
}
|
|
|
|
|
2008-07-15 21:43:45 +00:00
|
|
|
function show_job_summary($job) {
|
|
|
|
$info = $job->get_info();
|
2008-07-21 16:25:03 +00:00
|
|
|
return "<a href=".URL_BASE."$info->path>View image</a>";
|
2008-07-15 21:43:45 +00:00
|
|
|
}
|
2008-07-14 19:13:19 +00:00
|
|
|
|
2008-07-15 21:43:45 +00:00
|
|
|
function show_instance_summary($inst) {
|
|
|
|
$info = $inst->get_info();
|
|
|
|
if ($info->have_ellipse) {
|
2008-07-21 16:25:03 +00:00
|
|
|
return "ellipse ($info->cx, $info->cy)";
|
2008-07-14 19:13:19 +00:00
|
|
|
} else {
|
2008-07-21 16:25:03 +00:00
|
|
|
return "no ellipse";
|
2008-07-14 19:13:19 +00:00
|
|
|
}
|
2008-07-15 21:43:45 +00:00
|
|
|
}
|
2008-07-14 19:13:19 +00:00
|
|
|
|
2008-07-15 21:43:45 +00:00
|
|
|
function show_user_summary($user) {
|
2008-07-14 19:13:19 +00:00
|
|
|
}
|