|
|
|
|
|
0 Replies and 1381 Views
iIIR filtering 1381 0
Started by Deleted User
Hello,
I am doing a recursive filter with IDL and i succed in, but i've now to translate my IDL code in C code, and i think i've got a problem with it. This is the code on the recursive filter i've to translate :
Y&910&93 = B&91nb&93*U&910&93 / A&91na&93
for K = 1 , number_of_dyn -1 do begin
Y(K) = ( TOTAL( B&91nb-K>0:nb &93*U&91K-nb>0:K &93 ) $
- TOTAL( A&91na-K>0:na-1&93*Y&91K-na>0:K-1&93 ) ) /A&91na&93
endfor
I do...
|
|
|
|
0 |
1381 |
21 Jun 2005 07:48 AM |
|
0 Replies and 1755 Views
SQL Access questions 1755 0
Started by Deleted User
I am new to IDL and I am trying to create a database interface module using the dataminer functionality. The documentation and online tech notes appear to be very sparse on this topic, so I am hoping I will find a user who has worked through some of my issues.
Immediately I am trying to get a recordset working that is based on a ExecuteSQL statement so I can limit the retrieval from the database to specific records. My query appears to work (no error reported), but the first record retreived ...
|
|
|
|
0 |
1755 |
21 Jun 2005 07:40 AM |
|
0 Replies and 1607 Views
Image/Signal Processig/Electro Optics Career Opportunities 1607 0
Started by Deleted User
I have been retained by two Lockheed Martin facilities to help them fill several image processing, signal processing and electro optics positions at a variety of levels. All require U.S. Citizenship. If you have an interest in exploring these opportunities, please contact me by e-mail at hillassociatesoptonline.net or call me on 203-374-6838. Thank you.
|
|
|
|
0 |
1607 |
20 Jun 2005 02:02 PM |
|
0 Replies and 1665 Views
IDL6.1 on OSX 10.4 Tiger Server 1665 0
Started by Deleted User
I installed IDL6.1 on OSX 10.3 (Panther) and on OSX 10.3 Server, and everything worked fine. Then I did an upgrade to 10.4 (Tiger) on my PowerBook G4 - again, this worked fine. However, when I upgraded to OSX 10.4 Server on my desktop G5 and G5 server, I get a segmentation violation as soon as I try to fire up idl or idlde.I suspect that there is a library conflict somewhere, but it seems strange to me that it works on 10.4 but not on the server version of 10.4. Any suggestions
I'm going to tr...
|
|
|
|
0 |
1665 |
16 Jun 2005 09:54 PM |
|
1 Replies and 1625 Views
How do I save a BINARY_TEMPLATE? 1625 1
Started by Deleted User
I'd like to use BINARY_TEMPLATE to extract header information from a binary file in IDT XVision's Multipage Raw (MRF) format. I want to save the template so I can use it repeatedly in the future without going through the template gui again ... the help file says I 'can' save a template, but I can't figure out how.
Any help would be appreciated!
Eric Coppock
Ball Aerospace
|
|
|
|
1 |
1625 |
16 Jun 2005 11:32 AM |
|
1 Replies and 1524 Views
Exporting images to ArcGIS format 1524 1
Started by Deleted User
Hello,
I am a new IDL user and I can't figure out how to export images in a form that can be read by ESRI's ArcGIS. I have tried using write_tiff with the geotiff command, but I don't understand what the format of the geotiff statement needs to be. I'm also wondering if using a geotiff is the best way to transfer the data or whether there is a better alternative I would really appreciate any advice!
Cheers,
Jessica
|
|
|
|
1 |
1524 |
12 Jun 2005 07:28 AM |
|
0 Replies and 1297 Views
Creating an array of structures of arbitrary dimensions 1297 0
Started by Deleted User
Hello:
After going through the IDL help files I still haven't found a way to create a matrix of matrices in which the main matrix can be initialized to some arbitrary dimensions (n,m). I was also wondering how the indices within the sub-matrices could then be called. Any ideas
Thanks in advance
-Josh
|
|
|
|
0 |
1297 |
11 Jun 2005 10:31 AM |
|
0 Replies and 1572 Views
rotate with IDL 1572 0
Started by Deleted User
Hello,
I currently treat images ASAR and I would have to like to know how I could make to turn them of a some angle (36° example). The problem which I meeting is as follows, there is a function well ' rotate_doit' which makes it possible to turn the image but with preset angles and the function ' rotate' of IDL does not function (IDL don't can open an image ASAR). If somebody can help me that too will not be.
Thank you in advance.
|
|
|
|
0 |
1572 |
10 Jun 2005 02:29 AM |
|
0 Replies and 1595 Views
IDL performance 1595 0
Started by Deleted User
Has anyone noticed that their IDL code runs about 20 slower on linux (using fft for example) than win32 Is this due to the lack of vectorization in the gcc compiler Can i speed up my fft by calling the LAPACK routines If so do these use the optimized Linux LAPACK library
|
|
|
|
0 |
1595 |
08 Jun 2005 03:40 PM |
|
0 Replies and 1655 Views
Catching events while GUI is blocked by amoeba 1655 0
Started by Deleted User
I've got a gui which starts a lengthy minimization process using the function amoeba. I would like to be able to stop amoeba by clicking on a stop button in my gui. How can i capture gui events while amoeba is running. I've inserted code into amoeba while loop to catch events, but i'm unable to generate events while IDL is preoccupied with amoeba even with the no_block option passed to xmanager. Any suggestions
|
|
|
|
0 |
1655 |
08 Jun 2005 03:36 PM |
|
0 Replies and 1854 Views
BBEdit/Codeless Language Modules 1854 0
Started by Deleted User
Dear All,
I notice that in the latest release of BBEdit 8 for Mac OSX there is a provision for Codeless Language Modules that are written as plists. This provides a (relatively) straightforward hook to color coding IDL syntax in BBEdit. As a profoundly lazy programmer who does not really want to understand the XML formatting of plists I was curious as to whether anyone knew of a Codeless Language Module that had been created to color code IDL syntax in BBEDIT.
Thanks,
Brian
|
|
|
|
0 |
1854 |
06 Jun 2005 11:10 AM |
|
0 Replies and 1567 Views
Array of arrays 1567 0
Started by Deleted User
I want to use (or simulate an array of arrays).
I got a set of images, represented by 2D arrays, that I want to put in an array such that it can be used in a loop.
I try to simulate this with a 3D array, but I not sure about syntax (in fact, what a wrote did not work...) :
imgArray=FINDGEN(nbImages,width,height)
;in a loop (where img is a 2D array)
DRVtab&91i&93=img
;later, in another loop
img=DRVtab(i,*,*)
When I try to acces to an element of img, I get an 'out of range'...
|
|
|
|
0 |
1567 |
06 Jun 2005 11:00 AM |
|
0 Replies and 1567 Views
error in iimage command! 1567 0
Started by Deleted User
I have two data sets to draw using Iimage.
Each data set has different Max and Min data values and I want to draw these two data with same scaling factor. When I draw each data set using Iimage, Iimage automatically scales Min and Max value to 0 and 255 respectively. Because Max and Min values are different from each data set, the scaling factor is also different.
To fix this, I did the following to one of data sets to match the scale.
Operations -> Transform -> Bite scale
Change Automatic...
|
|
|
|
0 |
1567 |
06 Jun 2005 10:52 AM |
|
0 Replies and 1754 Views
3D reconstruction 1754 0
Started by Deleted User
Hi,
I would like to perform a 3D reconstruction function which would create a 3D image from 64 planar images of a small animal which rotated above my camera. How must I proceed I expect I have to create a 3D array where the third one is the number of the image, but didn't manage to do that.
Is there someone to help me
Thanks
|
|
|
|
0 |
1754 |
27 May 2005 04:23 AM |
|
0 Replies and 1621 Views
Color? 1621 0
Started by Deleted User
Sorry, I'm italian and my English is very bad!
I have idl, the 6.0 version, and I have some problems with colors and with the command close.
1) In a programm I use these commands
loadct,12
...
set_plot, 'x'
device,deco=0
WINDOW,0,color=0,XSIZE=600, YSIZE=450, TITLE='...',xpos=0,ypos=1,ret=2
...
plot,xV,yV,psym=4,symsize=1.5,$
xtitle='V-I',ytitle='V',xcharsize=1.2,ycharsize=1.2, $
title='Diagramma V,V-I',charsize=1.5,YRANGE=&9125,-25&93
oplo...
|
|
|
|
0 |
1621 |
21 May 2005 02:44 AM |
|
0 Replies and 1839 Views
Color? 1839 0
Started by Deleted User
Sorry, I'm italian and my English is very bad.
I have two problems:
1) I use the command 'loadct,12', but the color in my window are always in grey tones and not blue or green,...
2) I use the command 'close,/all' at the top of my programme, but I always must exit from idl and open it again to start the programm. Close,/all doesn't work.
Can you help me
Thanks
|
|
|
|
0 |
1839 |
21 May 2005 02:44 AM |
|
0 Replies and 1659 Views
aray of array 1659 0
Started by Deleted User
I want to use (or simulate an array of arrays).
I got a set of images, represented by 2D arrays, that I want to put in an array such that it can be used in a loop.
I try to simulate this with a 3D array, but I not sure about syntax (in fact, what a wrote did not work...) :
imgArray=FINDGEN(nbImages,width,height)
;in a loop (where img is a 2D array)
DRVtab&91i&93=img
;later, in another loop
img=DRVtab(i,*,*)
When I try to acces to an element of img, I get an 'out of range' error...
|
|
|
|
0 |
1659 |
20 May 2005 02:12 AM |
|
0 Replies and 1659 Views
aray of array 1659 0
Started by Deleted User
I want to use (or simulate an array of arrays).
I got a set of images, represented by 2D arrays, that I want to put in an array such that it can be used in a loop.
I try to simulate this with a 3D array, but I not sure about syntax (in fact, what a wrote did not work...) :
imgArray=FINDGEN(nbImages,width,height)
;in a loop (where img is a 2D array)
DRVtab&91i&93=img
;later, in another loop
img=DRVtab(i,*,*)
When I try to acces to an element of img, I get an 'out of range' error...
|
|
|
|
0 |
1659 |
20 May 2005 02:12 AM |
|
0 Replies and 1524 Views
volume rendering 1524 0
Started by Deleted User
Hi:
how to implement the 3d reconstruction algorithms (marching cubes, ray_casting etc) using IDL, and the reconstruction aiming to the medical images. Please give help.
Thank you!
|
|
|
|
0 |
1524 |
19 May 2005 05:24 AM |
|
0 Replies and 1713 Views
Volume Rendering 1713 0
Started by Deleted User
Hi:
how to implement the 3d reconstruction algorithms (marching cubes, ray_casting etc) using IDL, and the reconstruction aiming to the medical images. Please give help.
Thank you!
T Yun
tyun0619163.com
|
|
|
|
0 |
1713 |
19 May 2005 05:24 AM |
|