Skip to content

Commit

Permalink
1.2.10
Browse files Browse the repository at this point in the history
  • Loading branch information
erdogant committed Jun 16, 2023
1 parent e2126ce commit f2dff21
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
4 changes: 1 addition & 3 deletions undouble/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,13 @@

__author__ = 'Erdogan Tasksen'
__email__ = 'erdogant@gmail.com'
__version__ = '1.2.9'
__version__ = '1.2.10'

# module level doc-string
__doc__ = """
undouble
=====================================================================
Description
-----------
Python package undouble is to detect (near-)identical images.
The aim of ``undouble`` is to detect (near-)identical images. It works using a multi-step proces of pre-processing the
Expand Down
2 changes: 1 addition & 1 deletion undouble/undouble.py
Original file line number Diff line number Diff line change
Expand Up @@ -487,7 +487,7 @@ def plot(self, cmap=None, figsize=(15, 10)):
self._check_status()
ncols=None
cmap = cl._set_cmap(cmap, self.params['grayscale'])
colorscale = 0 if self.params['grayscale'] else 1
colorscale = 0 if self.params['grayscale'] else 2

# Plot the clustered images
if (self.results.get('select_pathnames', None) is not None):
Expand Down

0 comments on commit f2dff21

Please sign in to comment.