X
Search this forum:
Search
You are not authorized to create a new topic
Page 38 of 126 << < 3637383940 > >>
Topics
 Replies
 Views
 Last Post
8 Replies and 4261 Views IDL cannot read TIFF file?  4261  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 4261
22 Jan 2014 10:26 PM
1 Replies and 1275 Views Possible bug in MAP_PROJECTION of an image  1275  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 1275
22 Jan 2014 05:40 AM
1 Replies and 1197 Views library compatibility  1197  1 Started by  Deleted User Is it possible to use IDL8.0 library with IDL6.4
1 1197
21 Jan 2014 10:59 AM
1 Replies and 1901 Views How to convert a .tif movie file to a .pma file  1901  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 1901
20 Jan 2014 05:13 PM
1 Replies and 1590 Views L1 norm optimization for compressive sensing  1590  1 Started by  Deleted User Hi i'd like to know if there is any function that solve L1 norm minimization for compressive sensing thank you
1 1590
17 Jan 2014 01:01 PM
2 Replies and 1349 Views geometry_doit not working  1349  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 1349
17 Jan 2014 08:18 AM
4 Replies and 1132 Views New IDL crushes randomly, without worming and trace on Mac  1132  4 Started by  Deleted User Nearly installed IDL 8.3 editor crushes every min on my new Mac mini. The same program runs smoothly on my PC. Please help.
4 1132
16 Jan 2014 06:33 PM
3 Replies and 1414 Views Plotting a symbol on a logged scale  1414  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 1414
15 Jan 2014 12:48 PM
1 Replies and 1322 Views idl crashes without any warnings  1322  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 1322
15 Jan 2014 06:17 AM
2 Replies and 1190 Views Local Minima/Maxima  1190  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 1190
09 Jan 2014 05:28 PM
1 Replies and 1294 Views Errorplot errorbar thickness  1294  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 1294
08 Jan 2014 04:04 PM
1 Replies and 1467 Views Does IDL 8.3 support OPeNDAP in windows?  1467  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 1467
05 Jan 2014 02:32 AM
2 Replies and 1276 Views COLORBAR  1276  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 1276
03 Jan 2014 02:02 PM
13 Replies and 2962 Views Problem with IDL interaction with ImageMagick  2962  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 2962
29 Dec 2013 03:15 PM
3 Replies and 1581 Views sift algorithm in IDL  1581  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 1581
28 Dec 2013 08:21 AM
1 Replies and 1225 Views load ROI and obtain ROI ids?  1225  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 1225
19 Dec 2013 12:54 PM
2 Replies and 1638 Views (join) .csv files  1638  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 1638
19 Dec 2013 02:15 AM
3 Replies and 1310 Views New Graphics routines compatibility with Direct Graphics windows ?  1310  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 1310
17 Dec 2013 02:49 AM
7 Replies and 2196 Views Multi-temporal MODIS NDVI Stacking....  2196  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 2196
13 Dec 2013 07:12 PM
1 Replies and 1426 Views scatter plot between two images  1426  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 1426
10 Dec 2013 03:04 AM
You are not authorized to create a new topic
Page 38 of 126 << < 3637383940 > >>