Skip to content

Commit

Permalink
Merge pull request #12 from TissueEngineeringLab/11-obvious-nuclei-no…
Browse files Browse the repository at this point in the history
…t-being-detected

11 obvious nuclei not being detected
  • Loading branch information
WeisLeDocto authored Sep 29, 2023
2 parents b27251f + c20544b commit 0c54c52
Show file tree
Hide file tree
Showing 6 changed files with 4 additions and 8 deletions.
Binary file modified bin/myofinder.msi
Binary file not shown.
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
of them, visualizing the output, and manually correcting it if needed. It
relies on the DeepCell library for performing the image segmentation.
""",
long_description_content_type='text/plain',
keywords='segmentation,fusion index,automation,muscle culture',
license='GPL V3',
classifiers=['Development Status :: 5 - Production/Stable ',
Expand Down
2 changes: 1 addition & 1 deletion src/myofinder/__version__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# coding: utf-8

__version__ = '1.0.3'
__version__ = '1.0.4'
5 changes: 0 additions & 5 deletions src/myofinder/image_segmentation.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,11 +62,6 @@ def __call__(self,
raise IOError("Could not load the image for segmentation, "
"aborting !")

# Removing the scale bar
image[(image[:, :, 0] > 50) &
(image[:, :, 1] > 50) &
(image[:, :, 2] > 50)] = (0, 0, 0)

nuclei_channel = image[:, :, colors[0]]
fiber_channel = image[:, :, colors[1]]

Expand Down
2 changes: 1 addition & 1 deletion src/windows_installer/config.aip
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<ROW Property="ProductCode" Value="1033:{BFA51019-B48F-475B-B8BB-E2F14499079C} " Type="16"/>
<ROW Property="ProductLanguage" Value="1033"/>
<ROW Property="ProductName" Value="MyoFInDer"/>
<ROW Property="ProductVersion" Value="1.0.3" Options="32"/>
<ROW Property="ProductVersion" Value="1.0.4" Options="32"/>
<ROW Property="SecureCustomProperties" Value="OLDPRODUCTS;AI_NEWERPRODUCTFOUND"/>
<ROW Property="UpgradeCode" Value="{CE95562D-8E91-4ED9-B26E-5638FFE5C0B0}"/>
<ROW Property="WindowsType9X" MultiBuildValue="DefaultBuild:Windows 9x/ME" ValueLocId="-"/>
Expand Down
2 changes: 1 addition & 1 deletion src/windows_installer/start_myofinder.bat
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ echo Checking if the dependencies are installed
echo The dependencies are installed
) || (
echo The dependencies are not installed, installing them
%base_path%\venv\Scripts\python -m pip install myofinder
%base_path%\venv\Scripts\python -m pip install myofinder==1.0.4
)

echo.
Expand Down

0 comments on commit 0c54c52

Please sign in to comment.