Welcome, Guest |
You have to register before you can post on our site.
|
|
|
Can't cut or copy selected area |
Posted by: T-buch - 11-14-2018, 08:34 AM - Forum: Gimp 2.10
- Replies (4)
|
 |
I have update to 2.10
I am using Free select tool
Before (the last 6 - 8 year) i could use the Free select tool to make a selection and either copy, cut it etc - Now i am just copying or cutting the whole layer - What do I oversee?
|
|
|
Paths tool/Move tool not working. 2.10.8 |
Posted by: Rohugh - 11-12-2018, 08:49 PM - Forum: Gimp 2.10
- Replies (7)
|
 |
The move tool stopped working for me, I clicked it and when I moved my mouse to the work area it would only show the Paths tool, which worked fine. Clicking the Paths tool also worked, I just didn't have the move tool.
I played around trying clicking with combinations of Ctrl/Alt/Shift and got the Move tool working but the Paths tool now refuses to work. All other tools work fine.
Tried reloading 2.10.8, tried going back to 2.10.6 all with no success. I can live without the Paths tool as there are other (kind of) alternatives, but the Move tool is essential.
Any thoughts, ideas, suggestions?
|
|
|
Gimp 2.10 |
Posted by: b60 - 11-12-2018, 05:09 PM - Forum: General questions
- Replies (1)
|
 |
Is it possible to download the latest update (Windows 8.1) keeping the 2.8 version on my computer?
Thanks.
|
|
|
Gimp Python-fu 2.7 to launch Python 3 for editing images |
Posted by: audovoice - 11-12-2018, 09:03 AM - Forum: Extending the GIMP
- Replies (7)
|
 |
On windows 10 you can open up python-fu console in gimp and launch a python 3 terminal.
Code:
from subprocess import call
call(["C:/Users/audov/AppData/Local/Programs/Python/Python36/python.exe"])
If you have python 3.6 that will launch it and when you close that console it gets an exit code back. If you close python 3 by typing exit() the exit code is 0. If you just close the terminal you get -1073741510.
But if I try to pass in additional arguments about what python file to run then I get problems. For example if I run this.
Code:
from subprocess import call
call(["C:/Users/audov/AppData/Local/Programs/Python/Python36/python.exe", "D:/Projects/neural-style-master/neural_style.py"])
I get an exit code of 1 and the terminal opens but immediately closes.
If I were to run the same thing by running python 2.7 and then run this.
Code:
from subprocess import call
call(["C:/Users/audov/AppData/Local/Programs/Python/Python36/python.exe", "D:/Projects/neural-style-master/neural_style.py"])
Then from python 2.7 it launches the specified script using python 3.6. By then typing exit() I end up back in python 2.7.
----------------------------------------------------------------
But Why
----------------------------------------------------------------
The reason I want to do all this is so that I can write a plugin that sends a specified image or set of images to a command line program written for python 3.6. I would then either directly pass back the modified images or save them to a temp file, and then pass back the path.
The reason I need it to be python 3 is because of the use of Tensorflow and similar deep learning image processing libraries. Tensorflow both has useful projects written for it and approaches being easy to install on Windows, Mac, and Linux but it needs python 3.6.
The reason Tensorflow would be useful is there are projects like these Github projects.
https://github.com/anishathalye/neural-style
takes about 5 minutes to process an image with a gpu.
https://github.com/Eyyub/tensorflow-pix2pix
takes about 20 seconds to initialize and then about 2 seconds to process each image.
https://github.com/lengstrom/fast-style-transfer
takes 2 seconds to under a second to process an image.
All of which can make a wide range of innovative changes to images.
Integrating them into a program like gimp would greatly aid their integration into a broader creative process. As it stands now using something like neural-style requires a command line argument like...
D:/Projects/neural-style-master/neural_style.py --network D:/Projects/neural-style-master/imagenet-vgg-verydeep-19.mat --checkpoint-output "D:/Projects/neural-style-master/temp/temp.png" --iterations 600 --style-scales 1.0 --content-weight-blend 1.0 --content-weight 5.0 --style-weight 500.0 --tv-weight 100.0 --pooling avg --width 512 --content "D:/tile/nature256/nature_00312.png" --styles "D:/tile/nature256/nature_01111.png" --output "D:/tile/temp/nature_00312.png_nature_01111.png.png"
There are efforts to integrate projects like these into a gui but it would be far preferable to make it into a plugin for something like gimp.
---------------------------------------
If what I am trying to do is not possible I am open to trying to do it another way.
The most extreme solution I can think of would be adding a python 3 version of python-fu.
I read somewhere that it was very important to keep python-fu as 2.7 because of plugin comparability. That seems very reasonable.
The same poster however said that there was nothing to stop adding python-fu 3 as a separate plugin. According to them the only reason it was not done already was because there was no great interest from the community to work on adding that feature.
|
|
|
MS Paint replacement? |
Posted by: PaulNaude01 - 11-10-2018, 09:39 AM - Forum: General questions
- Replies (2)
|
 |
I am a long time Gimp user (can't remember how long - I was even a few versions behind I found out ) and use it almost daily too, but what I also use even more often, to quickly annotate a screen grab when supporting customers with a "click 'this' button" image, I open MS Paint. The reason? It opens in a flash (probably because it have almost no functionality) and I can quickly add an arrow or encircle a button.
For serious stuff, I obviously open GIMP and don't care to wait for it to open, but for these stupid little things, GIMP simply takes too long to open and I can't quickly draw a circle, rectangle or arrow pointer. Granted, I could do this in Outlook or Word too, but then you are almost guaranteed that the arrow or circle will end up somewhere else. So I simply screen grab, open MS Paint (it opens faster than I can type this), add my arrow or whatever, copy and paste into my email and send.
BUT, Microsoft has revealed that they will stop providing MS Paint some time soon with a next version of Windows or something, and left me wondering if this would not be the ideal opportunity for the GIMP community to produce a GIMP light, that opens in a flash, with the bare minimum tools (but with added annotation options like arrows, lines, circles etc. and basic colour, thickness etc. options like MS Paint), and then, should you need more, you simply click a button to open the full power of GIMP.
This may be a nice way to grow the community and get even more people familiar with GIMP and drawn into the deep side.
The best response would obviously be for someone to tell me there is such a version that I just did not know about!
Regards
|
|
|
|