-
Notifications
You must be signed in to change notification settings - Fork 140
Expand file tree
/
Copy pathdeblur.py
More file actions
231 lines (198 loc) · 8.07 KB
/
deblur.py
File metadata and controls
231 lines (198 loc) · 8.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
#!/usr/bin/env python3
# coding: utf-8
"""
.d8888b. 8888888 888b d888 8888888b. 888b d888 888
d88P Y88b 888 8888b d8888 888 Y88b 8888b d8888 888
888 888 888 88888b.d88888 888 888 88888b.d88888 888
888 888 888Y88888P888 888 d88P 888Y88888P888 888
888 88888 888 888 Y888P 888 8888888P" 888 Y888P 888 888
888 888 888 888 Y8P 888 888 888 Y8P 888 888
Y88b d88P 888 888 " 888 888 888 " 888 888
"Y8888P88 8888888 888 888 888 888 888 88888888
Deblur the current layer.
"""
import gi
gi.require_version("Gimp", "3.0")
gi.require_version("GimpUi", "3.0")
gi.require_version("Gtk", "3.0")
from gi.repository import Gimp, GimpUi, GObject, GLib, Gio, Gtk
import gettext
import subprocess
import pickle
import os
import sys
sys.path.extend([os.path.join(os.path.dirname(os.path.realpath(__file__)), "..")])
from plugin_utils import *
_ = gettext.gettext
image_paths = {
"colorpalette": os.path.join(
os.path.dirname(os.path.realpath(__file__)),
"..",
"colorpalette",
"color_palette.png",
),
"logo": os.path.join(
os.path.dirname(os.path.realpath(__file__)), "..", "images", "plugin_logo.png"
),
"error": os.path.join(
os.path.dirname(os.path.realpath(__file__)), "..", "images", "error_icon.png"
),
}
def deblur(procedure, image, drawable, force_cpu, progress_bar, config_path_output):
# Save inference parameters and layers
weight_path = config_path_output["weight_path"]
python_path = config_path_output["python_path"]
plugin_path = config_path_output["plugin_path"]
Gimp.context_push()
image.undo_group_start()
save_image(image, drawable, os.path.join(weight_path, "..", "cache.png"))
with open(os.path.join(weight_path, "..", "gimp_ml_run.pkl"), "wb") as file:
pickle.dump({"force_cpu": bool(force_cpu), "inference_status": "started"}, file)
# Run inference and load as layer
subprocess.call([python_path, plugin_path])
with open(os.path.join(weight_path, "..", "gimp_ml_run.pkl"), "rb") as file:
data_output = pickle.load(file)
image.undo_group_end()
Gimp.context_pop()
if data_output["inference_status"] == "success":
result = Gimp.file_load(
Gimp.RunMode.NONINTERACTIVE,
Gio.file_new_for_path(os.path.join(weight_path, "..", "cache.png")),
)
result_layer = result.list_layers()[0]
copy = Gimp.Layer.new_from_drawable(result_layer, image)
copy.set_name("Deblur")
copy.set_mode(Gimp.LayerMode.NORMAL_LEGACY) # DIFFERENCE_LEGACY
image.insert_layer(copy, None, -1)
# Remove temporary layers that were saved
my_dir = os.path.join(weight_path, "..")
for f_name in os.listdir(my_dir):
if f_name.startswith("cache"):
os.remove(os.path.join(my_dir, f_name))
return procedure.new_return_values(Gimp.PDBStatusType.SUCCESS, GLib.Error())
else:
show_dialog(
"Inference not successful. See error_log.txt in GIMP-ML folder.",
"Error !",
"error",
image_paths
)
return procedure.new_return_values(Gimp.PDBStatusType.SUCCESS, GLib.Error())
def run(procedure, run_mode, image, n_drawables, layer, args, data):
force_cpu = args.index(0)
if run_mode == Gimp.RunMode.INTERACTIVE:
# Get all paths
config_path = os.path.join(
os.path.dirname(os.path.realpath(__file__)), "..", "..", "tools"
)
with open(os.path.join(config_path, "gimp_ml_config.pkl"), "rb") as file:
config_path_output = pickle.load(file)
python_path = config_path_output["python_path"]
config_path_output["plugin_path"] = os.path.join(config_path, "deblur.py")
config = procedure.create_config()
config.set_property("force_cpu", force_cpu)
config.begin_run(image, run_mode, args)
GimpUi.init("deblur.py")
use_header_bar = Gtk.Settings.get_default().get_property(
"gtk-dialogs-use-header"
)
dialog = GimpUi.Dialog(use_header_bar=use_header_bar, title=_("Deblur..."))
dialog.add_button("_Cancel", Gtk.ResponseType.CANCEL)
dialog.add_button("_Help", Gtk.ResponseType.APPLY)
dialog.add_button("_Run Inference", Gtk.ResponseType.OK)
vbox = Gtk.Box(
orientation=Gtk.Orientation.VERTICAL, homogeneous=False, spacing=10
)
dialog.get_content_area().add(vbox)
vbox.show()
# Create grid to set all the properties inside.
grid = Gtk.Grid()
grid.set_column_homogeneous(False)
grid.set_border_width(10)
grid.set_column_spacing(10)
grid.set_row_spacing(10)
vbox.add(grid)
grid.show()
# Force CPU parameter
spin = GimpUi.prop_check_button_new(config, "force_cpu", _("Force _CPU"))
spin.set_tooltip_text(
_(
"If checked, CPU is used for model inference."
" Otherwise, GPU will be used if available."
)
)
grid.attach(spin, 1, 2, 1, 1)
spin.show()
# Show Logo
logo = Gtk.Image.new_from_file(image_paths["logo"])
# grid.attach(logo, 0, 0, 1, 1)
vbox.pack_start(logo, False, False, 1)
logo.show()
# Show License
license_text = _("PLUGIN LICENSE : MIT")
label = Gtk.Label(label=license_text)
# grid.attach(label, 1, 1, 1, 1)
vbox.pack_start(label, False, False, 1)
label.show()
progress_bar = Gtk.ProgressBar()
vbox.add(progress_bar)
progress_bar.show()
# Wait for user to click
dialog.show()
while True:
response = dialog.run()
if response == Gtk.ResponseType.OK:
force_cpu = config.get_property("force_cpu")
result = deblur(
procedure, image, layer, force_cpu, progress_bar, config_path_output
)
# super_resolution(procedure, image, n_drawables, layer, force_cpu, progress_bar, config_path_output)
# If the execution was successful, save parameters so they will be restored next time we show dialog.
if result.index(0) == Gimp.PDBStatusType.SUCCESS and config is not None:
config.end_run(Gimp.PDBStatusType.SUCCESS)
return result
elif response == Gtk.ResponseType.APPLY:
url = "https://kritiksoman.github.io/GIMP-ML-Docs/docs-page.html#item-7-3"
Gio.app_info_launch_default_for_uri(url, None)
continue
else:
dialog.destroy()
return procedure.new_return_values(
Gimp.PDBStatusType.CANCEL, GLib.Error()
)
class Deblur(Gimp.PlugIn):
## Parameters ##
__gproperties__ = {
"force_cpu": (
bool,
_("Force _CPU"),
"Force CPU",
False,
GObject.ParamFlags.READWRITE,
),
}
## GimpPlugIn virtual methods ##
def do_query_procedures(self):
return ["deblur"]
def do_set_i18n(self, procname):
return True, "gimp30-python", None
def do_create_procedure(self, name):
procedure = None
if name == "deblur":
procedure = Gimp.ImageProcedure.new(
self, name, Gimp.PDBProcType.PLUGIN, run, None
)
procedure.set_image_types("*")
procedure.set_documentation(
N_("Deblur the current layer."),
globals()[
"__doc__"
], # This includes the docstring, on the top of the file
name,
)
procedure.set_menu_label(N_("Deblur..."))
procedure.set_attribution("Kritik Soman", "GIMP-ML", "2021")
procedure.add_menu_path("<Image>/Layer/GIMP-ML/")
procedure.add_argument_from_property(self, "force_cpu")
return procedure
Gimp.main(Deblur.__gtype__, sys.argv)