Code Monkey home page Code Monkey logo

Comments (11)

luispedro avatar luispedro commented on May 20, 2024

You are right. There is no reason for this function to not work with
float arrays.

from mahotas.

anntzer avatar anntzer commented on May 20, 2024

I think the same issue affects cwatershed (my goal right now is to simplify the "distance and watershed" example to avoid having to use stretch, which has issues when some distances are much larger than the relevant ones and thus cause the actually relevant distances to be squeezed into a single value -- yes, this can obviously be fixed by clipping the distances to a maximal relevant value, but if everything handled floats this would be a non-issue from the beginning).

from mahotas.

luispedro avatar luispedro commented on May 20, 2024

Yes, you are right on watershed again. The implementation currently has
integer hardcoded, but there is no reason to do it like that.

Adapting the code is actually fairly trivial. Are you available for
testing it?

from mahotas.

anntzer avatar anntzer commented on May 20, 2024

Not until the end of the month, but after that, yes.

from mahotas.

anntzer avatar anntzer commented on May 20, 2024

Hi, any news on that topic? I can help with testing now.

from mahotas.

luispedro avatar luispedro commented on May 20, 2024

Thanks for the ping. regmax/min now should work for FP images. Watershed is work-in-progress.

from mahotas.

luispedro avatar luispedro commented on May 20, 2024

I now added support for watershed too. I did some minimal (smoke) testing [included in unit tests], but I'd appreciate it if you gave it a thorough testing run.

from mahotas.

anntzer avatar anntzer commented on May 20, 2024

I looked at the current tests and the best I can think of is to change test_watershed and test_mix_types to also try float entries. Anything else you would suggest?
I also tried it on one of my actual programs and it seems to work fine, but that can hardly be turned into a unit test.

from mahotas.

luispedro avatar luispedro commented on May 20, 2024

If it seems to be working for your data, that's OK. If you do find any issue, just open a report. Thanks.

from mahotas.

anntzer avatar anntzer commented on May 20, 2024

Actually, the following seemingly reasonable patch to test_watershed leads to some failing tests. I haven't investigated further, though.

@@ -24,7 +24,7 @@ def test_watershed():
         [0,0,0,0],
         ])
     def cast_test(M,S,dtype):
-        M = M.astype(dtype)
+        M = M.astype(dtype if issubclass(dtype, (np.integer, int)) else int)
         S = S.astype(dtype)
         W = mahotas.cwatershed(2-S,M)
         assert sys.getrefcount(W) == 2
@@ -35,7 +35,8 @@ def test_watershed():
                [2, 2, 2, 2],
                [2, 2, 2, 2],
                [2, 2, 2, 2]]))
-    for d in [np.uint8, np.int8, np.uint16, np.int16, np.int32, np.uint32,int]:
+    for d in [np.uint8, np.int8, np.uint16, np.int16, np.int32, np.uint32, int,
+              np.float16, np.float32, np.float64, np.float128, float]:
         yield cast_test, M, S, d

from mahotas.

luispedro avatar luispedro commented on May 20, 2024

The markers argument should always be integer, but the other test is good and I can reproduce it.

from mahotas.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.