Skip to content

Commit 8298649

Browse files
committed
Adding two icons
1 parent 26a780a commit 8298649

File tree

6 files changed

+7
-6
lines changed

6 files changed

+7
-6
lines changed

App/ImageAlchemyBackend.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,9 +47,8 @@ def __init__(self, file_path):
4747

4848
self.output_img = None # The output image of the last appied effect
4949

50-
self.applied_effects = (
51-
{}
52-
) # Dictionary to store the applied effects and its parameters.
50+
self.applied_effects = {}
51+
# Dictionary to store the applied effects and its parameters.
5352
# They will be shown in the tree.
5453
Image.all_images.append(self)
5554
# To facilitate the access to the images, we will store them in a list

App/ImageAlchemyUI.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,14 @@
99

1010
# in CMD: pip install qdarkstyle -> pip install pyqtdarktheme
1111
import qdarktheme
12-
from Classes.ExtendedWidgets.CustomTabWidget import CustomTabWidget
13-
from ImageAlchemyBackend import Backend
1412
from matplotlib.backends.backend_qt5agg import FigureCanvasQTAgg as FigureCanvas
1513
from PyQt5 import QtCore, QtGui, QtWidgets
1614
from PyQt5.QtCore import QSize, Qt
1715
from PyQt5.QtGui import QCursor, QIcon
1816

17+
from Classes.ExtendedWidgets.CustomTabWidget import CustomTabWidget
18+
from ImageAlchemyBackend import Backend
19+
1920

2021
class Ui_ImgProcessor(object):
2122
def setupUi(self, ImgAlchemy):
10.7 KB
Loading
26.2 KB
Loading

App/tempCodeRunnerFile.py

Lines changed: 0 additions & 1 deletion
This file was deleted.

requirements.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,5 @@ PyQt5==5.15.10
55
pyqtdarktheme==2.1.0
66
qdarkstyle==3.2.3
77
scikit-image==0.22.0
8+
scipy==1.11.3
9+
Pillow==10.1.0

0 commit comments

Comments
 (0)