Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
foobar167 committed Dec 1, 2024
1 parent 67b3060 commit c52d82f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
**Under construction...**
-->

01. [Coral TPU](#coral_tpu)
01. [PyTorch Tutorial](#pytorch_tutorial)
01. [Object tracking](#feature_extractor)
01. [Python notes and links to interesting places](#python_notes)
Expand Down
2 changes: 1 addition & 1 deletion manual_image_annotation2/rectangle/gui_canvas.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ def __init__(self, placeholder, path):
""" Initialize the ImageFrame """
self.imscale = 1.0 # scale for the canvas image zoom, public for outer classes
self.__delta = 1.3 # zoom magnitude
self.__filter = Image.ANTIALIAS # could be: NEAREST, BILINEAR, BICUBIC and ANTIALIAS
self.__filter = Image.BICUBIC # could be: NEAREST, BOX, BILINEAR, HAMMING, BICUBIC, LANCZOS
self.__previous_state = 0 # previous state of the keyboard
self.path = path # path to the image, should be public for outer classes
# Create ImageFrame in placeholder widget
Expand Down
2 changes: 1 addition & 1 deletion zoom_advanced3.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ def __init__(self, placeholder, path):
""" Initialize the ImageFrame """
self.imscale = 1.0 # scale for the canvas image zoom, public for outer classes
self.__delta = 1.3 # zoom magnitude
self.__filter = Image.ANTIALIAS # could be: NEAREST, BILINEAR, BICUBIC and ANTIALIAS
self.__filter = Image.BICUBIC # could be: NEAREST, BOX, BILINEAR, HAMMING, BICUBIC, LANCZOS
self.__previous_state = 0 # previous state of the keyboard
self.path = path # path to the image, should be public for outer classes
# Create ImageFrame in placeholder widget
Expand Down

0 comments on commit c52d82f

Please sign in to comment.