I don't think we have made a list of what plugins we use so i will start.
I have a few plugins but i rearly use any other than resynthesizer. It is a texture synthesis, but it works good for making tilable textures.
I know there is one that folows GIMP, but i find this better.
You select what you want to make tilable, select horisontal and or vertical then start it.
It works inside the same window and i find the result more than ofter to be good.
project link: http://logarithmic.net/pfh/resynthesizer
GIMP registery page: http://registry.gimp.org/node/25219
GIMP -Plugins
Re: GIMP -Plugins
many thanks for hinting this out. i never heard of such a technique before!
Re: GIMP -Plugins
I just hope you will think of me when Rayne is done with me.
I'm not sure if he aprowes of plugins like this.
It works nice on much of the images from cgtextures but i can not get it working correctly with the onec i have taken forcing me to do it like in 27's tutos.
I'm not sure if he aprowes of plugins like this.
It works nice on much of the images from cgtextures but i can not get it working correctly with the onec i have taken forcing me to do it like in 27's tutos.
Re: GIMP -Plugins
It's in photoshop CS5 but it's called "content aware fill". basically you just make a selection, hit delete and pick "content aware" and photoshop replaces the selection with surrounding pattern. It's great when you want to remove a larger detail and retouching it would take hours. Or to fix seams.
Re: GIMP -Plugins
says it doesnt work on windows?
[12:25] <JohnnyEnglish> morning Nounou
[12:25] <JohnnyEnglish> wotcha doing?
[12:25] <Nounou> hello
[12:26] <Nounou> nothing much, i've nothing to do at work so
[12:26] <Nounou> modeling woman
[12:26] <JohnnyEnglish> woo
[12:26] <JohnnyEnglish> real women?
[12:26] <Nounou> realistic yes, on maya

[12:25] <JohnnyEnglish> wotcha doing?
[12:25] <Nounou> hello
[12:26] <Nounou> nothing much, i've nothing to do at work so
[12:26] <Nounou> modeling woman
[12:26] <JohnnyEnglish> woo
[12:26] <JohnnyEnglish> real women?
[12:26] <Nounou> realistic yes, on maya

Re: GIMP -Plugins
That one dosent work on windows.
I guess there will become a working one for windows soon.
But there are older versons of it just google it and for windows
I guess there will become a working one for windows soon.
But there are older versons of it just google it and for windows

- johnnyenglish
- Space cake
- Posts: 898
- Joined: Wed Aug 17, 2011 9:23 am
- Location: Nottingham, England
Re: GIMP -Plugins
This isn't a gimp plugin but I found this project from 2002
Semi Causal Nonparametric Markov Random Field Texture Synthesis on a Gaussian Pyramid with K Nearest Search
The site has a little C++ app that can be downloaded and built on windows, linux or mac and then run from the command line, the results are quite good.
I started with this teeny image of rust (64x64)
and it created me a nice 512x512 texture like this
Using a single blob
It can generate something like this
or with slightly different parameters
If you like command line tools, you might like this. The cool thing about using command line tools is that you can set up a directory of samples, run the tool overnight and wake up a 100 new textures.
Semi Causal Nonparametric Markov Random Field Texture Synthesis on a Gaussian Pyramid with K Nearest Search
The site has a little C++ app that can be downloaded and built on windows, linux or mac and then run from the command line, the results are quite good.
I started with this teeny image of rust (64x64)
and it created me a nice 512x512 texture like this
Using a single blob
It can generate something like this
or with slightly different parameters
If you like command line tools, you might like this. The cool thing about using command line tools is that you can set up a directory of samples, run the tool overnight and wake up a 100 new textures.
Re: GIMP -Plugins
Gonna try it!
[12:25] <JohnnyEnglish> morning Nounou
[12:25] <JohnnyEnglish> wotcha doing?
[12:25] <Nounou> hello
[12:26] <Nounou> nothing much, i've nothing to do at work so
[12:26] <Nounou> modeling woman
[12:26] <JohnnyEnglish> woo
[12:26] <JohnnyEnglish> real women?
[12:26] <Nounou> realistic yes, on maya

[12:25] <JohnnyEnglish> wotcha doing?
[12:25] <Nounou> hello
[12:26] <Nounou> nothing much, i've nothing to do at work so
[12:26] <Nounou> modeling woman
[12:26] <JohnnyEnglish> woo
[12:26] <JohnnyEnglish> real women?
[12:26] <Nounou> realistic yes, on maya

Re: GIMP -Plugins
the code breaks at linking -.-
somehow he doesnt find the shared libs installed on my system, though im using the Magick++-config-tool -.-
somehow he doesnt find the shared libs installed on my system, though im using the Magick++-config-tool -.-
- johnnyenglish
- Space cake
- Posts: 898
- Joined: Wed Aug 17, 2011 9:23 am
- Location: Nottingham, England
Re: GIMP -Plugins
Drezil wrote:the code breaks at linking -.-
somehow he doesnt find the shared libs installed on my system, though im using the Magick++-config-tool -.-
I had this problem also - try this inside the build folder.
g++ -O3 -fopenmp -I/usr/local/include/ImageMagick -I./src nonparaMRF_gaussian_k.cc lib/libImage.a lib/nr_lib.a Neighbourhood.o Option.o Pyramid.o Glib.o -L/usr/local/lib -lMagick++ -lMagickCore -L/usr/local/lib -lMagick++ -lMagickCore -o nonparaMRF_gaussian_k
I moved the -l libraries to the end of the line and it worked. You can edit the make file to fix this for all builds.
I perhaps should have mentioned that I had to mess around with it to get it to compile.