X
PrevPrev Go to previous topic
NextNext Go to next topic
Last Post 02 Jun 2014 11:03 AM by  anon
Keyword Parameters not allowed in call
 1 Replies
Sort:
You are not authorized to post a reply.
Author Messages

anon



New Member


Posts:
New Member


--
02 Jun 2014 11:03 AM
    Hi, I am very new to IDL so forgive me if this question seems stupid. I am trying simply to read a .tif file and let IDL show the image. My commands were: IDL> a=read_image('frame_1.tif') IDL> help, a then I receive A BYTE = Array[3, 560, 420] IDL> plotimage ,bytscl(a) But after I execute the last command, I receive "Keyword parameters not allowed in call."I don't understand what I did wrong. Any ideas? Thank you in advance.

    Deleted User



    New Member


    Posts:
    New Member


    --
    04 Jun 2014 10:46 AM
    Are you just trying to display the image? If this is the case, you can do this using the IMAGE function. For example: IDL> a=read_image('frame_1.tif') IDL> i = image(bytscl(a)) You can find more information about the IMAGE function using the following help page: http://www.exelisvis.com/docs/IMAGE.html I hope that this helps!
    You are not authorized to post a reply.