|
|
|
|
|
8 Replies and 4055 Views
IDL cannot read TIFF file? 4055 8
Started by Deleted User
Hi,
I want to read a tiff file, but get the fellowing error:
IDL> ok = read_tiff('D:\15.tiff')
READ_TIFF: AdobeDeflate compression support is not configured
Execution halted at: $MAIN$
So, how can I resolve this with IDL 8.2.3.
|
|
|
|
8 |
4055 |
22 Jan 2014 10:26 PM |
|
1 Replies and 1188 Views
Possible bug in MAP_PROJECTION of an image 1188 1
Started by Deleted User
Hello,
When using IMAGE() with the MAP_PROJECTION and GRID_UNITS properties set, the first row and column of my image are ignored. Is this a bug, or some subtlety of map projection that I'm missing
Cheers,
A
e.g.
;; Define an image
im=BINDGEN(3,5,4)*21b
;; And plot it normally
i0 = IMAGE(im,AXIS_STYLE=2,IMAGE_DIMENSIONS=&91100,80&93,IMAGE_LOCATION=&91-50,-40&93,LAYOUT=&912,2,1&93)
;; Now add GRID_UNITS=2 to define lat/lon and MAP_PROJECTION keywords
i...
|
|
|
|
1 |
1188 |
22 Jan 2014 05:40 AM |
|
1 Replies and 1120 Views
library compatibility 1120 1
Started by Deleted User
Is it possible to use IDL8.0 library with IDL6.4
|
|
|
|
1 |
1120 |
21 Jan 2014 10:59 AM |
|
1 Replies and 1803 Views
How to convert a .tif movie file to a .pma file 1803 1
Started by Deleted User
Hello,
I have a .tif movie file, which contains 100 .tif image (512x512) files. Now I have a IDL based script for .PMA file (512x512) analysis:
--------------------------------------------------------------------------
openr, 1, Name ".PMA"
; figure out size allocate appropriately
result = FSTAT(1)
readu, 1, film_x
readu, 1, film_y
film_l = long(long(result.SIZE-4)/(long(film_x)*long(film_y)))
print, "film x,y,l : ", film_x,film_y,film_l
-----------...
|
|
|
|
1 |
1803 |
20 Jan 2014 05:13 PM |
|
1 |
1367 |
17 Jan 2014 01:01 PM |
|
2 Replies and 1255 Views
geometry_doit not working 1255 2
Started by Deleted User
Hi, I am trying to develop a script which will obtain AVHRR sensor viewing angle. In ENVI this would be the AVHRR Geometry tool. Unfortunately I run into error messages when I try to automate this in IDL using the envi_avhrr_geometry_doit command. Specifically the error states: 'Variable is undefined: WL' however the 'WL variable is not explained within the tool documentation.
I am fairly new to IDL scripting so I am sure I am making a simple mistake somewhere but any advice you can offer would...
|
|
|
|
2 |
1255 |
17 Jan 2014 08:18 AM |
|
4 |
1052 |
16 Jan 2014 06:33 PM |
|
3 Replies and 1319 Views
Plotting a symbol on a logged scale 1319 3
Started by Deleted User
Hello,
I am having problems overplotting a symbol on a plot that has a logged axis. For example, when I use the commands below, the symbols are not placed in the appropriate position (I tried uploading my example plot, but I received a permissions error). I would like to put a symbol at the &912,2&93 position, but that particular symbol is outside of the graphics domain. It is also unclear why the 0.1, 0.2 & 0.5 symbols are on the plot when they are not within the X and Y range of the plot....
|
|
|
|
3 |
1319 |
15 Jan 2014 12:48 PM |
|
1 Replies and 1246 Views
idl crashes without any warnings 1246 1
Started by Deleted User
Hi
I am using IDL 8.1. Since the begining of january 2014, my idl environment crashed without any reasons (It just close my workbench and i have to open my project again). I am working with IDL all the day and i have this trouble about 10 times per days.
I never had this trouble in 2013....
Is there an update to do to avoid this trouble
Thanks a lot
Aurélien Boulben Xeosimaging
|
|
|
|
1 |
1246 |
15 Jan 2014 06:17 AM |
|
2 Replies and 1062 Views
Local Minima/Maxima 1062 2
Started by Deleted User
Is there an IDL method for finding local minima/maxima within an image Or something akin to morphological reconstruction (greyscale) whereby local minima and maxima can be derived
The watershed function mentions local minima, but for better results use markers, which comes back to a method of automatically finding those markers ie the local minima.
Cheers
Josh
|
|
|
|
2 |
1062 |
09 Jan 2014 05:28 PM |
|
1 Replies and 1214 Views
Errorplot errorbar thickness 1214 1
Started by Deleted User
Hi
I am using function graphics
p1=ERRORPLOT(xrangetotal_rad, rad_mean,rad_eom ....).
How do I control the thickness of the error bar.
GlanPlon
|
|
|
|
1 |
1214 |
08 Jan 2014 04:04 PM |
|
1 Replies and 1390 Views
Does IDL 8.3 support OPeNDAP in windows? 1390 1
Started by Deleted User
Hi, guys:
Does IDL 8.3 support OPeNDAP in windows If not,
is there another way to access OPeNDAP with IDL in windows
Very thanks!
Dave
|
|
|
|
1 |
1390 |
05 Jan 2014 02:32 AM |
|
2 Replies and 1171 Views
COLORBAR 1171 2
Started by Deleted User
Hi,
I'm having some problems with COLORBAR. The code segment below worked fine in v8.2 in generating a colorbar with a discrete number of tick labels. In 8.3, however, the number of tick labels is the same as n_levels in the contour command. This is problematic when there are a large number of levels. The MAJOR=n command in colorbar doesn't seem to work. Any help would be much appreciated.
z1=contour(data,x,y, $
n_levels=128,/fill,rgb_table=27,$
titl...
|
|
|
|
2 |
1171 |
03 Jan 2014 02:02 PM |
|
13 Replies and 2803 Views
Problem with IDL interaction with ImageMagick 2803 13
Started by Deleted User
I am trying to use the ImageMagick convert command from within IDL to convert a Postscript image (.ps) to a PNG image (.png). I'm using IDL8.2.3 on a Mac under OSX 10.8.5. Working from the shell, I can issue the convert command successfully:
bash-3.2$ convert test1.ps test1.png
From within IDL however,
IDL> spawn, 'ls *.ps' spawn, 'which convert' spawn, 'convert test1.ps test1.png'
Error messages:
convert: bad parameters to zlib `/var/tmp/magick-30135vlJiOsIjJHD...
|
|
|
|
13 |
2803 |
29 Dec 2013 03:15 PM |
|
3 Replies and 1484 Views
sift algorithm in IDL 1484 3
Started by Deleted User
I want to match between images by sift in IDL. Whether is the sift in IDL or should I write it by myself
|
|
|
|
3 |
1484 |
28 Dec 2013 08:21 AM |
|
1 Replies and 1105 Views
load ROI and obtain ROI ids? 1105 1
Started by Deleted User
Is there a way to load an ROI file and obtain the ROI ids that were loaded Currently, I delete all ROIs in memory, load the ROI file, and then get all ROI ids in memory:
; Close all ROIs
roi_ids = envi_get_roi_ids()
foreach roi, roi_ids do begin
ENVI_DELETE_ROIS, roi
endforeach
; Open ROIs and get ROI IDs
envi_restore_rois,roiFilename
roiIds = ENVI_GET_ROI_IDS(roi_names=roiNames, /short_name)
The side effect of removing all ROIs except for the one that is loaded is...
|
|
|
|
1 |
1105 |
19 Dec 2013 12:54 PM |
|
2 Replies and 1542 Views
(join) .csv files 1542 2
Started by Deleted User
Hi all,
I have a problem due to the procedure called "write_csv.pro" (http://www.exelisvis.com/docs/WRITE_CSV.html) does not allow me to include more than 8 data.
First of all I would like to know if I can change the limitation of data that can be read (honestly, I do not how to do it)
In my main procedure what I want to do is join the outputs of this procedure which are .csv files (csv_file1, csv_file2, csv_file3). Is there anyway to join this three .csv files obtaining just o...
|
|
|
|
2 |
1542 |
19 Dec 2013 02:15 AM |
|
3 Replies and 1230 Views
New Graphics routines compatibility with Direct Graphics windows ? 1230 3
Started by Deleted User
Hello,
Is there a way to use a *new graphics* (NG) function (such as BARPLOT) within a *direct graphics* (DG) window
For example, BARPLOT (NG) has some useful new features such as N_BARS parameter which doesn’t have BAR_PLOT (DG), but NG are too bandwidth consuming to use IDL from a remote computer (through sshX11).
Thanks,
Guillaume
|
|
|
|
3 |
1230 |
17 Dec 2013 02:49 AM |
|
7 Replies and 2099 Views
Multi-temporal MODIS NDVI Stacking.... 2099 7
Started by Deleted User
I want to use MODIS multi-temporal NDVI images for a prolonged period of time. How can I stack all the images into one single file using IDL The estimated output will be a plot (of each single pixel) showing the change in NDVI over time.
|
|
|
|
7 |
2099 |
13 Dec 2013 07:12 PM |
|
1 Replies and 1352 Views
scatter plot between two images 1352 1
Started by Deleted User
I have two images of size 2000x2000 pixels with 16-bit data range (values in the image going upto 65534).
I have a logic for scatterplot which requires a 2 dimensional array of size (65534,65534) which doesn't seem to work.
What is the way out
|
|
|
|
1 |
1352 |
10 Dec 2013 03:04 AM |