X
PrevPrev Go to previous topic
NextNext Go to next topic
Last Post 14 Aug 2007 04:46 PM by  anon
Morphological Operations
 1 Replies
Sort:
You are not authorized to post a reply.
Author Messages

anon



New Member


Posts:
New Member


--
14 Aug 2007 04:46 PM
    I want to locate a minimum area which value less a specific value in a image. which operation could realize this goal.

    Deleted User



    New Member


    Posts:
    New Member


    --
    14 Aug 2007 04:46 PM
    IDL's WHERE function is the function that can locate the subscripts of subsets in an array that contain specific values or a specific range of values. Thus, code like the following: targetValue = 3.1 subscriptsWithValueBelowTarget = where(myArray lt targetValue, count) if count gt 0 then begin ,,, would be typical for the functionality you are looking for. James Jones
    You are not authorized to post a reply.