Hot Search : Source embeded web remote control p2p game More...
Location : Home Search - tif
Search - tif - List
以前就想写,但是因为envi可以就一直没弄。今天正好有个机会,就做了这个事情。ENVI中在主窗口中pixel locator可以实现,但是当我们需要读入很多的数据的时候,也就是批量处理的时候,显然编程来的更快。这里只是写了单独输入参数的pro,批处理的是偶可以再写一个pro,读入坐标到数组,利用for循环调用就行了。(; :Author:Zhigang ; :Copyright:Niglas ; Email:zhigang_niglas@163.com ;- PRO locateDN_HJ,latitude,longtude ; ;LOAD FUNCTIONS' MODULES OF ENVI COMPILE_OPT IDL2 ENVI,/RESTORE_BASE_SAVE_FILES ENVI_BATCH_INIT ;define the path imagePath = 'E:\temp\HJ1B-CCD1-451-76-20130926-L20001058628-1.TIF' ;open HJ image)
Update : 2024-05-17 Size : 20530176 Publisher : 孤芳不自赏

DL : 0
.通过图像与 sobel 算子的二维卷积,获得 lenna.tif 和 car.jpg 水平和垂直方向边缘。 2.通过图像与 Prewitt 算子的二维卷积,获得 lenna.tif 和 car.jpg 水平和垂直方向边缘。 3.进一步处理图像,定位出车牌位置。 二(License plate recognition after two-dimensional convolution removal)
Update : 2024-05-17 Size : 1024 Publisher : 愣Q鱼

DL : 0
将tif栅格数据上特定值设置为nodata(Set a particular value on the TIF raster data to NoData)
Update : 2024-05-17 Size : 40960 Publisher : summerfxn

Main.m: the file to run the software Instructions how to use the GUI_interface Step 1: click the 'open test' button to input the test noisy image and click the 'open averaged'button to input the averaged image Step 2: setting the parameters for MSBTD method. (the default parameters are used in our method, but you can tune it yourse) Step 3: click the 'MSBTD method'to run MSBTD and click the 'Tikhonov method'to run the Tikhonov for comparison (visually denoised results will be automatically shown in the top left and the PSNR results will also be shown in bottom left) Step 4: click the 'save' button to save the results as the .tif or .mat format Step 5: compute the MSR by select a region from the test image Step 6: compute the CNR by first select a background region from the test image(Multiscale Sparsity Based Tomographic Denoising (MSBTD))
Update : 2024-05-17 Size : 472064 Publisher : Kingsley丶何

DL : 0
用MATLAB模拟彩色光栅条纹图,,,,,,,,,,(Color grating fringe pattern simulation by MATLAB)
Update : 2024-05-17 Size : 11236352 Publisher : 大神xy

clc; clear all; close all; [filename, pathname, filterindex] = uigetfile({'*.jpg;*.tif;*.png;*.gif','All Image Files';... '*.*','All Files' }, '选择待处理图像', ... 'images\01.jpg'); file = fullfile(pathname, filename);%文件路径和文件名创建合成完整文件名 id = Get_Id(file);%得到file中的所有对象 Img = imread(file);%根据路径和文件名读取图片到Img [Plate, bw, Loc] = Pre_Process(Img); % 车牌区域预处理 result = Plate_Process(Plate, id); % 车牌区域二值化处理 % 寻找连续有文字的块,若长度大于某阈值,则认为该块有两个字符组成,需要分割 bw = Segmation(result); words = Main_Process(bw); % 主流程处理 Write_Mask(words, id); % 写出到模板库 str = Pattern_Recognition(words); % 识别(Mike is a student. He is my good friend. He is busy at the weekend. He is going to read a magazine this Saturday morning. He is going to go to the zoo this Saturday afternoon. He is going to buy a book this Sunday morning. He is going to learn Kungfu this Sunday afternoon. He is going to watch TV this Sunday evening.)
Update : 2024-05-17 Size : 89088 Publisher : 为谁甜

DL : 0
带通滤波器(Butterworth、椭圆、窗函数),采样率fs=2000Hz, 通带范围为300 -600Hz,阶数自选, 画出频率响应并分析比较, 对cameraman.tif图像分别添加椒盐噪声(密度为0.03)和高斯白噪声(均值为0,方差为0.02)的图像,利用三种方法进行去噪,显示原始图像、加噪图像和去噪图像并对实验结果进行分析(Band pass filter (Butterworth, ellipse, window function), sampling rate FS = 2000Hz, passband range of 300 -600Hz, order optional, draw frequency response, and analysis and comparison, Respectively, add salt and pepper noise of the cameraman.tif image (density of 0.03) and Gauss white noise (mean 0 and variance 0.02) image denoising using three methods, shows the original image, noise image and image denoising and analysis of experimental results)
Update : 2024-05-17 Size : 1024 Publisher : 潇潇暮雨

可以切割tif大图片并 分布式分析,并将 分析后的小图片 逐一展示在页面上,实现渲染效果。(TIF large pictures can be cut and distributed analysis, and the analysis of small pictures displayed on the page one by one, to achieve the rendering effect.)
Update : 2024-05-17 Size : 71226368 Publisher : 逍遥神

DL : 0
利用TIF文件,自己用算法计算NDVI,并将计算结果存储为TIF文件(Using TIF file to computing NDVI by using IDL)
Update : 2024-05-17 Size : 661504 Publisher : Kat1

DL : 0
save variables as TIF format
Update : 2024-05-17 Size : 4096 Publisher : windson8789

PB DataWindow 38个技巧.txt 1. 使DataWindow列只能追加不能修改 如何使DataWindow中的数据只能追加新记录而不能修改,利用 Column 的 Protect 属性可以很方便的做到这一点,方法如下: 将每一列的 Protect 属性设置为: If( IsRowNew(), 0, 1) ) 在 PowerScript 中可以动态修改 Protect 属性: dw_1.Modify("column_name_here.Protect='1~tIf(IsRowNew(),0,1)'") 这样,DataWindow 中只有新追加的记录可修改,而其他记录是只读的。(PB DataWindow 38 skills.Txt 1. make DataWindow columns append only and cannot be modified How to make the data in DataWindow only append new records and can not be modified, the use of the Column attribute of Protect can be very convenient to do this, the method is as follows: Set the Protect property of each column to: If (IsRowNew (), 0, 1) You can dynamically modify the Protect attribute in PowerScript: Dw_1.Modify ("column_name_here.Protect='1~tIf (IsRowNew (), 0,1) '") In this way, only additional records can be modified in DataWindow, while other records are read-only.)
Update : 2024-05-17 Size : 8192 Publisher : ztzheng

DL : 0
本文件为txt文件,为MATLAB读取nc数据的代码,以及将其转换为tif格式的数据。(This code is for read nc data and transfer it into tiff data.)
Update : 2024-05-17 Size : 1024 Publisher : Upward Snail

DL : 0
批量提取jdf文件中的ndvi值,转出为tif格式(Batch extraction of NDVI values in JDF files)
Update : 2024-05-17 Size : 18830336 Publisher : 石头大人粥

简单的LSB算法嵌入,包括图像的正常显示,gdal读写tif图像(Simple LSB algorithm embedded, including the normal image display, GDAL read and write TIF images)
Update : 2024-05-17 Size : 95594496 Publisher : liuziyi

利用gdal将hdf转换成tif,啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊(Converting HDF to TIF using GDAL)
Update : 2024-05-17 Size : 10356736 Publisher : 123234124234

DL : 0
tif识别转换英文或数字 字库训练工具,支持多文字转换(TIF identifies and converts English or digital font training tools to support multi word conversion)
Update : 2024-05-17 Size : 54371328 Publisher : risingLee

DL : 0
批处理裁剪影像,tif、img、dat等(Batch cropping images, such as TIF, IMG, DAT, etc.)
Update : 2024-05-17 Size : 1024 Publisher : 石头云

The value of NumConnectedPixels needs to be passed back as a pointer, so the subroutine call for ConnectedSet might look like. ConnectedSet(s,T,img,width,height,ClassLabel,seg,&NumConPixels);. 3. Down load the image img22gd2.tif. Apply the subroutine ConnectedPixels to extract the connected set ...
Update : 2024-05-17 Size : 680960 Publisher : sadfalksdjf

matlab插件,GIMMS NDVI3g数据格式转换,存储格式为tif(Matlab plug-in, GIMMS NDVI3g data format conversion, storage format of TIF)
Update : 2024-05-17 Size : 36864 Publisher : 吴世怀

DL : 0
HDF读取,另存为tif,以MOD13A3 product为例子(HDF reads, and is stored as TIF, with MOD13A3 product as an example)
Update : 2024-05-17 Size : 6144 Publisher : 吴世怀
« 1 2 ... 23 24 25 26 27 2829 »
DSSZ is the largest source code store in internet!
Contact us :
1999-2046 DSSZ All Rights Reserved.