Difference between revisions of "User talk:BytePilot"

From London Hackspace Wiki
Jump to navigation Jump to search
(Created page with "well I've done that, but the output is not what we want. http://hack.rs/cgi-bin/threshold_bitwise.pl <pre> #!/usr/bin/perl -w use strict; use CGI; use CGI::Carp qw(fatalsToBro…")
 
Line 62: Line 62:
  
 
--[[User:AndyE|AndyE]] 14:16, 12 January 2011 (UTC)
 
--[[User:AndyE|AndyE]] 14:16, 12 January 2011 (UTC)
 +
 +
 +
These options do something like what we want:
 +
 +
<pre>
 +
 +
        my @ar = ("gm",
 +
                  "convert", "-type", "grayscale", "-colors", 8, "-threshold", 12.5*$i ."%",
 +
                  $tempfile,
 +
                  "/var/www/threshold_output/$filename".$i );
 +
 +
</pre>
 +
 +
--[[User:AndyE|AndyE]] 14:28, 12 January 2011 (UTC)

Revision as of 14:28, 12 January 2011

well I've done that, but the output is not what we want.

http://hack.rs/cgi-bin/threshold_bitwise.pl


#!/usr/bin/perl -w
use strict;
use CGI;
use CGI::Carp qw(fatalsToBrowser warningsToBrowser);

my $q = CGI->new();

print $q->header;
print $q->start_html;

print $q->p("this is a thing for doing threshholding");
print $q->p("<small>or possibly <i>thresholding</i>?</small>");

print $q->start_form( -enctype => "multipart/form-data" );

print $q->p("file");
print $q->filefield('uploaded_file');
print $q->submit();

print $q->end_form;

# do we have an upload?
my $filehandle = $q->upload('uploaded_file');
if (defined $filehandle) {

    # do shit
    print $q->p("I'm doing shit");

    # no, actually do shit
    my $filename = $q->param('uploaded_file');
    my $tempfile = $q->tmpFileName($filename);

    foreach my $i (0 .. 7) {

        my $n = 2 ** ($i + 8);

        my @ar = ("gm",
                  "convert", "-type", "grayscale", "-colors", 256, "-operator", "ALL AND $n", "-threshold", $n-1,
                  $tempfile,
                  "/var/www/threshold_output/$filename".$i );

        print $q->p("$i : $n : " . join " ", @ar);

        system(@ar) == 0 or carp "system call failed: $?"; #safer than passing a string to system()

        print $q->img({src => "/threshold_output/$filename".$i});
    }
}


print $q->end_html;

I tried doing just the "-operator ALL AND $n" part by itself, it didn't seem to do anything...

--AndyE 14:16, 12 January 2011 (UTC)


These options do something like what we want:


        my @ar = ("gm",
                  "convert", "-type", "grayscale", "-colors", 8, "-threshold", 12.5*$i ."%",
                  $tempfile,
                  "/var/www/threshold_output/$filename".$i );

--AndyE 14:28, 12 January 2011 (UTC)