Search Results

4
votes
6answers
1k views

Generate a random date between two other dates.

How would I generate a random date that has to be between two other given dates? The functions signature should something like this- randomDate("1/1/2008 1:30 PM", "1/1/2009 4:50 A …
2
votes
2answers
127 views

Calling an external program from python

So I have this shell script: echo "Enter text to be classified, hit return to run classification." read text if [ `echo "$text" | sed -r 's/ +/ /g' | bin/stupidfilter data/c_rbf` = …
1
vote
3answers
321 views

Generating an image thumbnail that is <10KB and did not lose proportions

Notice how for every image that google indexes it has a small thumbnail. These thumbnails are: Less than 10K …
1
vote
3answers
125 views

Cleaning an image to only black

I have an image. I would like to go over that image, pixel by pixel, and any pixel that is not black should be turned to white. How do I do this? (Python). Thanks! …
0
votes
3answers
159 views

Decompile .swf file to get images in python

I would like to decompile a .swf file and get all the images from it, in python. Are there any libraries that do this? …