Discussion:
problem with file.max and file.min
Mohan Kumar
2013-09-29 16:49:51 UTC
Permalink
I am a begginer in pyhton and even image processing when i was trying to
follow the tutorial i have notice this when i executed the code can anyone
please explain me what it is and thanks in advance

<built-in method max of numpy.ndarray object at 0xa554c80>
<built-in method min of numpy.ndarray object at 0xa554c80>
--
You received this message because you are subscribed to the Google Groups "pythonvision" group.
To unsubscribe from this group and stop receiving emails from it, send an email to pythonvision+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/***@public.gmane.org
For more options, visit https://groups.google.com/groups/opt_out.
Sprindzuk Matvey
2013-09-29 17:40:33 UTC
Permalink
I advice to read a good book by Erik Solem "Computer Vision with Python"
and post your question on StackOverflow forum. To answer your question
directly, I need too many details

http://it-ebooks-search.info/search?q=computer%20vision
Post by Mohan Kumar
I am a begginer in pyhton and even image processing when i was trying to
follow the tutorial i have notice this when i executed the code can anyone
please explain me what it is and thanks in advance
<built-in method max of numpy.ndarray object at 0xa554c80>
<built-in method min of numpy.ndarray object at 0xa554c80>
--
You received this message because you are subscribed to the Google Groups
"pythonvision" group.
To unsubscribe from this group and stop receiving emails from it, send an
For more options, visit https://groups.google.com/groups/opt_out.
--
You received this message because you are subscribed to the Google Groups "pythonvision" group.
To unsubscribe from this group and stop receiving emails from it, send an email to pythonvision+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/***@public.gmane.org
For more options, visit https://groups.google.com/groups/opt_out.
Luis Pedro Coelho
2013-09-30 07:59:12 UTC
Permalink
Hi Mohan,

In general, the sort of query is not helpful as you did not give much
detail in what you were doing.
Post by Mohan Kumar
<built-in method max of numpy.ndarray object at 0xa554c80>
<built-in method min of numpy.ndarray object at 0xa554c80>
You did something like

image.max

which does nothing: you are just naming the max method.

You probably wanted:

image.max()

HTH
--
Luis Pedro Coelho | EMBL | http://luispedro.org

Recent stuff:
http://dx.doi.org/10.5334/jors.ac
http://bit.ly/coelho2013-video
http://bit.ly/general-subcellular-determination
--
You received this message because you are subscribed to the Google Groups "pythonvision" group.
To unsubscribe from this group and stop receiving emails from it, send an email to pythonvision+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/***@public.gmane.org
For more options, visit https://groups.google.com/groups/opt_out.
Loading...