IDL Image

The image from the infrared camera can be read directly from the control PC using the IDLPC routines that connect directly to the TCP/IP socket. a IDL procedure similar to the following:

;procedure to take an image with the ir camera on fast 
;it really should be made more general by reading the ccd_status command
pro image,a
;reply=call_external('idlfast.so','debug',255)
reply=call_external('idlfast.so','xmit','ccd_status seq=Frame',/S_VALUE)
;print,reply
reply=call_external('idlfast.so','xmit','ccd time=1 nbytes=131072 ',/S_VALUE)
print,reply
a=fltarr(256,256)
b=call_external('idlfast.so','array',a,size(a))
tvscl,a
end

The procedure does the following:


[ IRCamera Index | Leuschner Index ]

Last updated on 1999 August 10.