|
|
|
|
|
0 Replies and 2255 Views
Different behavior IDL Runtime versus Development environment 2255 0
Started by Deleted User
Hello everyone,
I encountered a problem regarding different behavior of the IDL runtime versus the IDL development environment. This problem can be best explained using the following example code:
pro test_iplot
iplot, indgen(10)
res = dialog_message( 'Back from iPlot', /INFORMATION )
end
When I create an executable (.sav file) from this routine and run it within idlde, iplot is started and after this has been initialized, the dialog_message statement is executed. When I start the ...
|
|
|
|
0 |
2255 |
29 Mar 2004 06:33 AM |
|
0 Replies and 2785 Views
Ask for the example of ROI in Data Analysis of IDL Demo 2785 0
Started by Deleted User
Hello IDL employees,
The example of ROI in Data Analysis of IDL Demo is appealing. This is a wonderful example that I hope to use in my work. Did this code come with the whole IDL package Can you please tell me where it can be found Thanks. -- Yongsheng
|
|
|
|
0 |
2785 |
26 Mar 2004 05:01 PM |
|
0 Replies and 1962 Views
envi 1962 0
Started by Deleted User
hello every one:
I want to ask how to get the IDL source program
about the algorithms library of the ENVI
for example:I want to know the IDL program of emissivities normalization in ENVI4.0,how can I get itcan I open it in IDL which directory is the program incan I get all of the IDL source program of the ENVI
thank you !
hqh20000263.net
|
|
|
|
0 |
1962 |
24 Mar 2004 07:54 PM |
|
2 Replies and 1905 Views
Image Segmentation / Object measurements 1905 2
Started by Deleted User
I am looking for IDL code which allows a user to segment imagery and derive measurements based on these segmented objects (ie centroid/perimeter/area etc...). Does anyone know of a program or free code which is available
|
|
|
|
2 |
1905 |
19 Mar 2004 03:17 PM |
|
0 Replies and 2102 Views
IDL 6.0, Object Graphics - Aspect Ratio Problem 2102 0
Started by Deleted User
I'm creating a hemispherical model using object graphics that is capable of being rotated, translated, zoomed, etc. When the window dimensions are square, the hemisphere is spherically shaped. I want the final aspect ratio to be 4:3 - when I implement this, the hemisphere becomes squashed. I tried to scale the model in the x-direction to look square again, but then the problem is that the trackball rotation from bottom left to top right makes changes the model from spherical to footballish. ...
|
|
|
|
0 |
2102 |
16 Mar 2004 05:19 PM |
|
1 Replies and 1897 Views
PCOMP explanation 1897 1
Started by Deleted User
Hi
I am doing some Principal Component Analysis with PCOMP. I haven't found the on-line help of much use.
Probably because they seem to use a strange nomenclature than that I am used to in PCA.
Does anybody have any links to tutorials or similar where PCOMP has been used and explained in more detail than the online help
Thanks
Russ
|
|
|
|
1 |
1897 |
04 Mar 2004 07:36 AM |
|
0 Replies and 2109 Views
4D with IDL 2109 0
Started by Deleted User
Hello
I've got a 4D file with locations (x,y,z) and temperature. I'd like to represent an isosurface of temperature in 3D (ie 4D). I didn't find information about that in IDL's help so I send you this message
F.Couturier
|
|
|
|
0 |
2109 |
02 Mar 2004 07:28 AM |
|
1 Replies and 2163 Views
batch export function 2163 1
Started by Deleted User
Greetings
Does anyone have a batch procedure for exporting the contents of a folder (envi image data) to an external format i.e. using ENVI_OUTPUT_TO_EXTERNAL_FORMAT. Your assistance is greatly appreciated.
Si
|
|
|
|
1 |
2163 |
17 Feb 2004 07:26 PM |
|
0 Replies and 2030 Views
idl and hdf5 (opening dataset) 2030 0
Started by Deleted User
Hi there
I'm having trouble opening a dataset in IDL5.6 and IDL6.0. IDL recognizes the file as HDF5 (H5F_IS_HDF5), successfully opens the file (H5F_OPEN), and even gives me the correct information about the datasets in the root group (H5G_GET_NMEMBERS, H5G_GET_MEMBER_NAME). However, opening a dataset in this file (H5D_OPEN) fails, with this error message:
H5D_OPEN: dataset not found: (67108864, 'Density')
I suspect the problem is due to incompatible versions of HDF5. IDL's library (i...
|
|
|
|
0 |
2030 |
17 Feb 2004 05:07 PM |
|
1 Replies and 2775 Views
Flipping Image 2775 1
Started by Deleted User
We are working on a tool to view images.
But the problem is the images are upside down
Does anyone know IDL-code to flip an image
tnx.
|
|
|
|
1 |
2775 |
13 Feb 2004 03:52 AM |
|
1 Replies and 2224 Views
Using iTools for batch processing 2224 1
Started by Deleted User
I am looking for a way for using the iTools for non-interactive (batch) proccesing. The idea is to use for example iPlot in batch mode to produce a plot, save it both as an image (e.g. jpeg)as well as in *.isv format. If needed a user can later costumize the plot by running iPlot in the interactive mode and openening the *.isv file.
Another application is to use iPlot to create an iPlot in a specific layout and save it to *.isv file. Later the batch mode may be used to add or modify the data, r...
|
|
|
|
1 |
2224 |
11 Feb 2004 10:47 AM |
|
1 Replies and 2402 Views
reading DICOM headers 2402 1
Started by Deleted User
Hello, I'm starting to learn IDL and I'd like to know how can I read the information of a dicom header. Are there in IDL anything similar to the
'dicominfo' function of matlab , which return a structure with the header information.
Thanks.
|
|
|
|
1 |
2402 |
06 Feb 2004 05:55 AM |
|
1 Replies and 2410 Views
Extended ASCII 2410 1
Started by Deleted User
Hi,
is there someone who knows how I can import ascii files containing symbols of the extended ascii data set (such as ä or ü) into IDL The body looks like this:
pro data
openr,lun,filename, /get_lun
....
end
Thanks a lot,
Wolfram
|
|
|
|
1 |
2410 |
30 Jan 2004 12:40 PM |
|
0 Replies and 2009 Views
call_external doesn't pass idl_string properly 2009 0
Started by Deleted User
I'm trying to pass a string to a C library through call_external, like this:
result = CALL_EXTERNAL(libname, 'myfunc', 'stringparam')
According to the IDL documentation, the C code should receive an IDL_STRING struct, so I typecast the argument like this:
int myfunc(int argc, char *argv&91&93)
{
IDL_STRING * istr = (IDL_STRING *)argv&910&93;
// This line is okay:
printf('passed string length = d\n', istr->slen);
// ********* This line crashes the program!
printf('pa...
|
|
|
|
0 |
2009 |
23 Jan 2004 02:54 PM |
|
0 Replies and 2081 Views
Spawn procedure on Solaris 8 2081 0
Started by Deleted User
Simply entering 'spawn' at the command line, instead of starting an interactive shell, my idl
stops responding (I have to kill it).
I'm running IDL 5.6 on a Solaris 9 SunBlade workstation.
Could anybody give me a hint about how to solve the problem
Thanks
Luigi
|
|
|
|
0 |
2081 |
21 Jan 2004 03:59 AM |
|
0 Replies and 2175 Views
Sorting Time Series Data based on characterisitcs 2175 0
Started by Deleted User
http://www.soton.ac.uk/~johnb/CVREFS/IS2002-Ljubic-Traffic.pdf
I would like to repeat this exercise ( shown in PDF above) using IDLs functionality on another dataset...
Does anyone in this forum have a 'point and shoot' app. for IDL for me to be able to 'send it away' to group a CSV data set of 500 sequences of 100-300 time/value readings to sort them into groups based on common characterisitics of the curves that the time series plot out as (decreasing decelleration with time)
A typica...
|
|
|
|
0 |
2175 |
16 Jan 2004 04:41 AM |
|
0 Replies and 1950 Views
Sorting Time Series Data based on characterisitcs 1950 0
Started by Deleted User
I would like to repeat this exercise ( shown
here) using IDLs functionality on another dataset...
Does anyone in this forum have a 'point and shoot' app. for IDL for me to be able to 'send it away' to group a CSV data set of 500 sequences of 100-300 time/value readings to sort them into groups based on common characterisitics of the curves that the time series plot out as (decreasing decelleration with time)
A typical plot is shown on page 5 of
this document
Regards
John C Bull...
|
|
|
|
0 |
1950 |
16 Jan 2004 04:41 AM |
|
0 Replies and 2166 Views
partial derivaties in IDL 2166 0
Started by Deleted User
Suppose we have an array {X,Y,Z} where X and Y are random distributed. How to get partial derivaties dZ/dx, dz/dy and dz/dx/dy in IDL
|
|
|
|
0 |
2166 |
14 Jan 2004 06:34 AM |
|
0 Replies and 2075 Views
tcsh shell in Mac OSX 10.3 - Panther 2075 0
Started by Deleted User
Just found out that the default shell for Mac OSX 10.3 is bash, not tcsh as previously (and as cited in IDL documentation - instlic.pdf). A way to permanently select tcsh on startup is given at
http://www.macosxhints.com/article.phpstory=20031027071301977
|
|
|
|
0 |
2075 |
07 Jan 2004 07:11 AM |
|
0 Replies and 2206 Views
non-linear unmixing 2206 0
Started by Deleted User
hi guys,
i'm looking for programs, or algorithms for non-linear spectral unmixing. do you know of any
cheers,
Tal
|
|
|
|
0 |
2206 |
30 Dec 2003 07:18 AM |