I've not find a script for make bugs like in graphical problems. Like in a computer or numeric tv.
For make abstract geometrical texture pixelised, complex and random.
I've tested with enhance filters and few others, but it's not practical for choose a color or specific bug.
This artist use it with very skill:
http://burritochan.net/
Others exemples :
http://img529.imageshack.us/img529/1945/img0278k.jpg
http://s57.radikal.ru/i157/0809/74/c33f0f576496.jpg
http://img177.imageshack.us/img177/6579/snapshot20080228174057bio4.jpg
http://windowsboothelp.com/wp-content/uploads/2011/05/computer_boot_prob...
http://i53.tinypic.com/2dgue7a.jpg
http://img76.imageshack.us/img76/1853/untitled3bf.jpg
http://cloud.steampowered.com/ugc/540639219225892362/EDE24E415E26B9DCD74...
http://img.photobucket.com/albums/v325/YeOldeMann/shot0000.jpg
A script like this exists ?
Or if it's no, somebody can create this script please ?
any example of what you mean?
any example of what you mean?
This artist use it with very
This artist use it with very skill:
http://burritochan.net/
Others exemples :
http://img529.imageshack.us/img529/1945/img0278k.jpg
http://s57.radikal.ru/i157/0809/74/c33f0f576496.jpg
http://img177.imageshack.us/img177/6579/snapshot20080228174057bio4.jpg
http://windowsboothelp.com/wp-content/uploads/2011/05/computer_boot_prob...
http://i53.tinypic.com/2dgue7a.jpg
http://img76.imageshack.us/img76/1853/untitled3bf.jpg
http://cloud.steampowered.com/ugc/540639219225892362/EDE24E415E26B9DCD74...
http://img.photobucket.com/albums/v325/YeOldeMann/shot0000.jpg
Hm, of course, I have no ide
Hm, of course, I have no ide if plugin for this exists in gimp. And I would say there is not a big demand for a plugin like this.
Moreover, I would say that various algorithms were used in those images you provided. I can think of few approaches how to achieve such results.
What tool those authors are using - some photoshop plugins?
For some algorithms a gimp plugin would not be good solution, but all depends on an algorithm you want to implement...
Thanks for your test. But I
Thanks for your test. But I don't know write a script.
And I found the videos of the author :
http://www.livestream.com/uponsartstream/folder
For put it in the nuts, in start he paints in grey scale, after he includes abstract zbrush shapes and he corrects the shapes.
For the color he does it like my tests. With default scripts in Colors.
For the 2 first videos i've seen.
But for write a script it's maybe complex, it's maybe more fast like him ?
And I've no ideas for script options, maybe because he has many possibilty and hard to make it all in one script.
Or maybe he has scripts like this for video softwares ? I've seen this already in film or series, but i don't use video softwares.
As I said there might be
As I said there might be various aproaches with various results.
As for my script, it is really primitive script, it has about 60 lines including blank lines, comments and checks. All you would need is to play with its "core" part. Of course it would need bit of imagination and logical thinking...
So if you change your mind, I can give you the script. Or to anyone else who might be interesting in it.... :)
Yes you can post your script
Yes you can post your script for i test him.
I find exemple that I want :










In big size :
http://www.imagebam.com/image/ce13fa143473575
http://www.imagebam.com/image/8b256d143473599
http://www.imagebam.com/image/dc715d143473617
http://www.imagebam.com/image/69fc89143473652
http://www.imagebam.com/image/71e6ff143473683
http://www.imagebam.com/image/21297e143473728
http://www.imagebam.com/image/1a6a91143473771
http://www.imagebam.com/image/78a9e5143473845
http://www.imagebam.com/image/c93e8f143473913
http://www.imagebam.com/image/9fea90143473958
It's complex mix and/or repetitions. Repetion is easy but mix is very long. And I want juste use it like a pattern. Like hood, stone or others classic patterns.
Here is another example that
Here is another example that I created:
http://postimage.org/image/l1nvrgw4/
And the script is here, read few lines on the top of file for more info:
http://www.filehosting.org/file/details/253965/videobug.py.tgz
another
another example (two variants of the same technique)
http://postimage.org/image/2g193k7j8/
http://postimage.org/image/2g2zxzeas/
and one more example, bit modified technique:
http://postimage.org/image/2g6b0odus/
Your three last tests are too
Your three last tests are too simple. Just one, two or three tricks for make this. And the result is not abstract pattern.
Your previous test is cool with horizontal and verticale lines. Maybe test this and remove original pic for have just lines. And add more tricks.
But I can't download your script. I put my email and accept the terms of service and the privacy terms but the download link is not sent to me. I've test with 2 emails. Can you upload in mediafire or megaupload for example ?
And there the terms of service and the privacy terms are very abusive.
I'm sorry for your troubles
I'm sorry for your troubles with downloading, I will post it somewhere else, but cant do it now, please wait 2-3 days.
I launch the .py like this
I launch the .py like this "python videobug.py" or "python videobug.py image.jpg" in current directory, but I've this : "I expect input.jpg in current directory. Not such file. Quitting..."
What is the problem ?
The problem is exactly what
The problem is exactly what the error message says. The script expects file input.jpg in current directory.
Note that the script is very simple and raw, so it does not check for JPGs in current directory, nor parses command line arguments, just flatly expects file input.jpg in current directory.
It is a bit of complication - to rename source image to input.jpg, but my script just presents "core functionality". If you will like it (or its potential) it will be easy to add functionality/polish.
I tried megaupload and
I tried megaupload and mediafire and both returned errors during upload...
I hope this will work:
http://uploading.com/files/4313e3a4/videobug.py/
and without any stupid terms...
I was curious how to do
I was curious how to do something like this, I made a primitive python script, and here is an example:
http://postimage.org/image/u9snbu04/full/
posibilities are endles. It is really up to you. F.e. core of the script for this effect looks like this:
(For every single pixel X,Y, change R,G,B values as follows:)
if X>100 and X%40 >=0 and X%40 <=15 and Y%40 >=0 and Y%40 <=30:
R,G,B=sourceImg_loaded[X-90,Y] #get values form pixel X-90,Y
B=255-B
if Y%30 == 0 and Y%30 <= 10 and X%30 >= 0 and Y%30 <= 10 :
R=R-10
G=G-150
B=0
if R<80 :
R=255-R
So you can really do what you wish. " Y%30" is modulo, google for it if you dont know what it is.