Skip to content

Commit

Permalink
Adding two icons
Browse files Browse the repository at this point in the history
  • Loading branch information
cln-Kafka committed Sep 8, 2024
1 parent 26a780a commit 8298649
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 6 deletions.
5 changes: 2 additions & 3 deletions App/ImageAlchemyBackend.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,8 @@ def __init__(self, file_path):

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

self.applied_effects = (
{}
) # Dictionary to store the applied effects and its parameters.
self.applied_effects = {}
# Dictionary to store the applied effects and its parameters.
# They will be shown in the tree.
Image.all_images.append(self)
# To facilitate the access to the images, we will store them in a list
Expand Down
5 changes: 3 additions & 2 deletions App/ImageAlchemyUI.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,14 @@

# in CMD: pip install qdarkstyle -> pip install pyqtdarktheme
import qdarktheme
from Classes.ExtendedWidgets.CustomTabWidget import CustomTabWidget
from ImageAlchemyBackend import Backend
from matplotlib.backends.backend_qt5agg import FigureCanvasQTAgg as FigureCanvas
from PyQt5 import QtCore, QtGui, QtWidgets
from PyQt5.QtCore import QSize, Qt
from PyQt5.QtGui import QCursor, QIcon

from Classes.ExtendedWidgets.CustomTabWidget import CustomTabWidget
from ImageAlchemyBackend import Backend


class Ui_ImgProcessor(object):
def setupUi(self, ImgAlchemy):
Expand Down
Binary file added App/Resources/Icons/Effects/corner-detection.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added App/Resources/Icons/Effects/segmentation.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 0 additions & 1 deletion App/tempCodeRunnerFile.py

This file was deleted.

2 changes: 2 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,5 @@ PyQt5==5.15.10
pyqtdarktheme==2.1.0
qdarkstyle==3.2.3
scikit-image==0.22.0
scipy==1.11.3
Pillow==10.1.0

0 comments on commit 8298649

Please sign in to comment.