|
|
|
|
|
0 Replies and 2088 Views
Different behavior IDL Runtime versus Development environment 2088 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 |
2088 |
29 Mar 2004 06:33 AM |
|
0 Replies and 2606 Views
Ask for the example of ROI in Data Analysis of IDL Demo 2606 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 |
2606 |
26 Mar 2004 05:01 PM |
|
0 Replies and 1808 Views
envi 1808 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 |
1808 |
24 Mar 2004 07:54 PM |
|
2 Replies and 1725 Views
Image Segmentation / Object measurements 1725 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 |
1725 |
19 Mar 2004 03:17 PM |
|
0 Replies and 1924 Views
IDL 6.0, Object Graphics - Aspect Ratio Problem 1924 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 |
1924 |
16 Mar 2004 05:19 PM |
|
1 Replies and 1725 Views
PCOMP explanation 1725 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 |
1725 |
04 Mar 2004 07:36 AM |
|
0 Replies and 1908 Views
4D with IDL 1908 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 |
1908 |
02 Mar 2004 07:28 AM |
|
1 Replies and 2019 Views
batch export function 2019 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 |
2019 |
17 Feb 2004 07:26 PM |
|
0 Replies and 1860 Views
idl and hdf5 (opening dataset) 1860 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 |
1860 |
17 Feb 2004 05:07 PM |
|
1 Replies and 2627 Views
Flipping Image 2627 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 |
2627 |
13 Feb 2004 03:52 AM |
|
1 Replies and 2054 Views
Using iTools for batch processing 2054 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 |
2054 |
11 Feb 2004 10:47 AM |
|
1 Replies and 2046 Views
reading DICOM headers 2046 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 |
2046 |
06 Feb 2004 05:55 AM |
|
1 Replies and 2256 Views
Extended ASCII 2256 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 |
2256 |
30 Jan 2004 12:40 PM |
|
0 Replies and 1851 Views
call_external doesn't pass idl_string properly 1851 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 |
1851 |
23 Jan 2004 02:54 PM |
|
0 Replies and 1914 Views
Spawn procedure on Solaris 8 1914 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 |
1914 |
21 Jan 2004 03:59 AM |
|
0 Replies and 2029 Views
Sorting Time Series Data based on characterisitcs 2029 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 |
2029 |
16 Jan 2004 04:41 AM |
|
0 Replies and 1798 Views
Sorting Time Series Data based on characterisitcs 1798 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 |
1798 |
16 Jan 2004 04:41 AM |
|
0 Replies and 2003 Views
partial derivaties in IDL 2003 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 |
2003 |
14 Jan 2004 06:34 AM |
|
0 Replies and 1921 Views
tcsh shell in Mac OSX 10.3 - Panther 1921 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 |
1921 |
07 Jan 2004 07:11 AM |
|
0 Replies and 2026 Views
non-linear unmixing 2026 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 |
2026 |
30 Dec 2003 07:18 AM |