期刊文献+
共找到642篇文章
< 1 2 33 >
每页显示 20 50 100
An Implementation of Multiscale Line Detection and Mathematical Morphology for Efficient and Precise Blood Vessel Segmentation in Fundus Images
1
作者 Syed Ayaz Ali Shah Aamir Shahzad +4 位作者 Musaed Alhussein Chuan Meng Goh Khursheed Aurangzeb Tong Boon Tang Muhammad Awais 《Computers, Materials & Continua》 SCIE EI 2024年第5期2565-2583,共19页
Diagnosing various diseases such as glaucoma,age-related macular degeneration,cardiovascular conditions,and diabetic retinopathy involves segmenting retinal blood vessels.The task is particularly challenging when deal... Diagnosing various diseases such as glaucoma,age-related macular degeneration,cardiovascular conditions,and diabetic retinopathy involves segmenting retinal blood vessels.The task is particularly challenging when dealing with color fundus images due to issues like non-uniformillumination,low contrast,and variations in vessel appearance,especially in the presence of different pathologies.Furthermore,the speed of the retinal vessel segmentation system is of utmost importance.With the surge of now available big data,the speed of the algorithm becomes increasingly important,carrying almost equivalent weightage to the accuracy of the algorithm.To address these challenges,we present a novel approach for retinal vessel segmentation,leveraging efficient and robust techniques based on multiscale line detection and mathematical morphology.Our algorithm’s performance is evaluated on two publicly available datasets,namely the Digital Retinal Images for Vessel Extraction dataset(DRIVE)and the Structure Analysis of Retina(STARE)dataset.The experimental results demonstrate the effectiveness of our method,withmean accuracy values of 0.9467 forDRIVE and 0.9535 for STARE datasets,aswell as sensitivity values of 0.6952 forDRIVE and 0.6809 for STARE datasets.Notably,our algorithmexhibits competitive performance with state-of-the-art methods.Importantly,it operates at an average speed of 3.73 s per image for DRIVE and 3.75 s for STARE datasets.It is worth noting that these results were achieved using Matlab scripts containing multiple loops.This suggests that the processing time can be further reduced by replacing loops with vectorization.Thus the proposed algorithm can be deployed in real time applications.In summary,our proposed system strikes a fine balance between swift computation and accuracy that is on par with the best available methods in the field. 展开更多
关键词 Line detector vessel detection LOCALIZATION mathematical morphology image processing
下载PDF
EDGE DETECTION METHOD OF REMOTE SENSING IMAGES BASED ON MATHEMATICAL MORPHOLOGY OF MULTI-STRUCTURE ELEMENTS 被引量:2
2
作者 LINHui DUPei-jun +1 位作者 ZHAOChang-sheng SHUNing 《Chinese Geographical Science》 SCIE CSCD 2004年第3期263-268,共6页
This paper puts forward an effective, specific algorithm for edge detection. Based on multi-structure elements of gray mathematics morphology, in the light of difference between noise and edge shape of RS images, the ... This paper puts forward an effective, specific algorithm for edge detection. Based on multi-structure elements of gray mathematics morphology, in the light of difference between noise and edge shape of RS images, the paper establishes multi-structure elements to detect edge by utilizing the grey form transformation principle. Compared with some classical edge detection operators,such as Sobel Edge Detection Operator, LOG Edge Detection Operator, and Canny Edge Detection Operator, the experiment indicates that this new algorithm possesses very good edge detection ability, which can detect edges more effectively, but its noise-resisting ability is relatively low. Because of the bigger noise of remote sensing image, the authors probe into putting forward other edge detection method based on combination of wavelet directivity checkout technology and small-scale Mathematical Morphology finally. So, position at the edge can be accurately located, the noise can be inhibited to a certain extent and the effect of edge detection is obvious. 展开更多
关键词 电子数据采集设备 遥感 边缘方向 灰色数学
下载PDF
Image mathematical morphology and image restoration application in detecting underground bin level
3
作者 孙继平 吴冰 《Journal of Coal Science & Engineering(China)》 2004年第2期105-110,共6页
By using image recognition technology, the underground bin level can be detdcted. The bin image is noised by vibration, atomy, backgroun and so on. The image restoration and image mathematical morphology were used bas... By using image recognition technology, the underground bin level can be detdcted. The bin image is noised by vibration, atomy, backgroun and so on. The image restoration and image mathematical morphology were used based on neural network. A modified Hopfield network was presented for image restoration. The greed algorithm with n-simultaneous updates and apartially asynchronous algorithm were combined, im- proving convergence and avoiding synchronization penalties. Mathematical morphology was widely applicated in digital image processing. The basic idea of mathematical mor- phology is to use construction element measure image morphology for solving under- stand problem. Presented advanced Cellular neural network that forms MMCNN equa- tion to be suit for mathematical morphology filter. It gave the theory of MMCNN dynamic extent and stable state. It was evidenced that arrived mathematical morphology filter through steady of dynamic precess in definite condition. The results of implementation were applied in detecting undergroug bin level. 展开更多
关键词 数学形态学 图像恢复 神经网络 滤波器
下载PDF
影院票务辅助系统中座位信息的自动提取
4
作者 刘思樊 杨洋 +1 位作者 童恒建 唐杰辰 《计算机技术与发展》 2024年第4期193-197,共5页
在电影院的票务系统中,一般分为线上售票和线下售票两种方式。目前线上售票有成熟的软件工具,用户可以通过手机或电脑在线上自动选择各种类型的座位信息。但在线下售票中,操作人员只能通过人工观察票务系统软件的屏幕界面,人工获取某个... 在电影院的票务系统中,一般分为线上售票和线下售票两种方式。目前线上售票有成熟的软件工具,用户可以通过手机或电脑在线上自动选择各种类型的座位信息。但在线下售票中,操作人员只能通过人工观察票务系统软件的屏幕界面,人工获取某个场次的不同类型的空余座位信息,然后再手工输入空余的座位信息到出票系统,打印纸质电影票后,然后进行售票。针对线下售票需要人工操作这种不方便不快捷的情况,作者利用C++语言,基于OpenCV图像处理库,首先快速读取票务系统软件的界面图片的彩色图像,将三通道的彩色图像转化为单通道的灰度图像。利用findContours()函数获取图像的轮廓集,处理掉缺失和过小的轮廓后,通过外接矩形来获取轮廓的位置,将轮廓和外接矩形作为属性初始化对应的每个座位的实例化对象。通过读取各个对象的矩形内的像素点信息,可以确定对象的颜色以及位置。实现了对屏幕中各种不同类型的座位信息的自动识别与定位,准确率为100%;然后,自动输入到出票系统,自动打印出纸质电影票,达到了自动线下售票的目的。开发此系统使用的技术方法,对于需要识别第三方软件界面的屏幕信息及其变化的场景,如:监控系统屏幕的变化,有一定的借鉴意义。 展开更多
关键词 OPENCV 轮廓提取 图像处理 二值化 数学形态学
下载PDF
Processing of Laser Scanner Data and Extraction of Structure Lines Using Methods of the Image Processing 被引量:21
5
作者 SUILi-chun 《测绘学报》 EI CSCD 北大核心 2004年第1期63-70,共8页
激光扫描数据提供了一种新的手段用于获取高精度的数字地形表面模型。原始的航空激光扫描数据表达的是一些非规则分布的“点云” ,这些非规则分布的点需要进行有效的事后处理。这种事后处理有 2个目的 :一是将那些分布在地表面上的点 (... 激光扫描数据提供了一种新的手段用于获取高精度的数字地形表面模型。原始的航空激光扫描数据表达的是一些非规则分布的“点云” ,这些非规则分布的点需要进行有效的事后处理。这种事后处理有 2个目的 :一是将那些分布在地表面上的点 (即地面点 )与分布在非地表面上的点 (譬如树木、房屋或汽车上的点 ,即非地面点 )进行有效的分离 ;二是从分离后的地面点中提取结构线 ,用于建立高精度的数字地面模型。作者发展了一系列的基于数字形态学理论和稳健参数估计理论的方法用于分离和探测地面点。这里所介绍和开发的提取结构线的算法建立在数字图像处理和表面曲率理论的基础上。这些算法同样可以扩展地用于其他领域。所介绍的基于数字图像处理理论处理原始的航空激光扫瞄数据和提取结构线的方法取得了很好的结果。 展开更多
关键词 激光扫描 数学形态学 稳健估计 数字图像处理 结构线提取
下载PDF
A Method of Cracks Image Segmentation Based on the Means of Multiple Thresholds 被引量:3
6
作者 Youquan He Hanxing Qiu 《通讯和计算机(中英文版)》 2012年第10期1147-1151,共5页
关键词 图像分割方法 路面裂缝 多阈值 数学形态学 分割阈值 最小误差法 分割算法 最大熵法
下载PDF
A Novel Adaptive Approach to Process Binary Fingerprint Images Using Directional Morphological Operations 被引量:2
7
作者 Jin Qi 《Journal of Electronic Science and Technology of China》 2009年第2期129-131,共3页
An adaptive algorithm for removing false ridges, bridges and filling gaps in binary fingerprint images based on morphological operations is presented. A novel procedure for structuring elements design based on the spe... An adaptive algorithm for removing false ridges, bridges and filling gaps in binary fingerprint images based on morphological operations is presented. A novel procedure for structuring elements design based on the specific fingerprint characteristic is described. Using the images from FVC2000 database, we have compared our method proposed here with the approach proposed by other ones. The Experimental results have demonstrated the efficiency of our method. 展开更多
关键词 Index Terms-Binary fingerprint image interruptedridges morphological operation structure element.
下载PDF
Hepatic vessel segmentation on contrast enhanced CT image sequence for liver transplantation planning
8
作者 Do-Yeon Kim 《Journal of Biomedical Science and Engineering》 2013年第4期498-503,共6页
The structure and morphology of the hepatic vessels and their relationship between tumors and liver segments are major interests to surgeons for liver surgical planning. In case of living donor liver transplantation (... The structure and morphology of the hepatic vessels and their relationship between tumors and liver segments are major interests to surgeons for liver surgical planning. In case of living donor liver transplantation (LDLT), the most important step in determining donor suitability is an accurate assessment of the liver volume available for transplantation. In addition, the mutual principles of the procedures include dissection in the appropriate anatomic plane without portal occlusion, minimization of blood loss, and avoidance of injury to the remaining liver. It is essential first step to identify and evaluate the major hepatic vascular structure for liver surgical planning. In this paper, the threshold was determined to segment the liver region automatically based on the distribution ratio of intensity value;and the hepatic vessels were extracted with mathematical morphology transformation, which called hit operation, that is slightly modified version of hit-and-miss operation on contrast enhanced CT image sequence. We identified the vein using the preserved voxel connectivity between two consecutive transverse image sequences, followed by resection into right lobe including right hepatic vein, middle hepatic vein branches andleft lobe including left hepatic vein. An automated hepatic vessel segmentation scheme is recommended for liver surgical planning such as tumor resection and transplantation. These vessel extraction method combined with liver region segmentation technique could be applicable to extract tree-like organ structures such as carotid, renal, coronary artery, and airway path from various medical imaging modalities. 展开更多
关键词 LIVING DONOR Liver TRANSPLANTATION HEPATIC VASCULAR Structure mathematical morphology image Segmentation
下载PDF
基于自适应结构元素的改进分水岭图像分割方法 被引量:1
9
作者 房超 王小鹏 +1 位作者 李宝民 樊炜玮 《哈尔滨工业大学学报》 EI CAS CSCD 北大核心 2023年第5期59-70,共12页
图像分割是按照一定的规则,将图像中具有特殊意义的区域划分为若干个互不相交的子区域,是从图像处理到图像分析的关键环节,传统分水岭图像分割方法是一种应用较为广泛的技术,具有快速、简单的优点,但该方法易受噪声干扰,分割结果易丢失... 图像分割是按照一定的规则,将图像中具有特殊意义的区域划分为若干个互不相交的子区域,是从图像处理到图像分析的关键环节,传统分水岭图像分割方法是一种应用较为广泛的技术,具有快速、简单的优点,但该方法易受噪声干扰,分割结果易丢失边缘重要信息,出现过分割现象。为改善传统分水岭图像分割方法存在的过分割问题,提出了一种基于自适应结构元素的改进分水岭图像分割方法。首先,利用图像像素点邻域的局部密度、对称度及边缘特征构造形状可变的自适应结构元素,确保其与图像目标几何结构具有较强的一致性;其次,利用该结构元素获取图像形态学梯度,提高目标边缘的定位精度;将L_(0)范数梯度最小化和形态学开闭混合重建相结合修正梯度图像,减少梯度图像中的局部无效最小值点,抑制过分割现象的产生;最后对修正后的梯度图像进行分水岭分割,实现图像目标区域的精确分割。实验结果表明,该方法能够有效抑制过分割现象,提高目标边缘定位的准确性,具有较高的分割精度。 展开更多
关键词 结构元素 形态学 分水岭 图像分割
下载PDF
连通区域拓扑结构约束的甲骨拓片图像分割
10
作者 宋传鸣 周雨晴 +1 位作者 张晋豪 洪飏 《闽南师范大学学报(自然科学版)》 2023年第4期35-50,共16页
甲骨拓片图像往往遭受点状噪声、人工纹理和固有纹理等的严重影响,导致典型的图像分割方法尚无法得到令人满意的文字分割结果.为此,提出一种连通区域拓扑结构约束的甲骨拓片图像分割方法.该方法采用逐步求精的层次分割策略,首先,利用超... 甲骨拓片图像往往遭受点状噪声、人工纹理和固有纹理等的严重影响,导致典型的图像分割方法尚无法得到令人满意的文字分割结果.为此,提出一种连通区域拓扑结构约束的甲骨拓片图像分割方法.该方法采用逐步求精的层次分割策略,首先,利用超像素分割和最大类间方差法进行初始分割;其次,采用最小凸包算法分离断裂的甲骨文字与粘连的拓片背景,得到粗分割结果;最后,利用形态学运算、欧拉数、方向投影变换对连通区域的拓扑结构和形状特征进行分析,得到精细分割结果.实验结果表明,在多种典型的图像分割方法中,该方法在正确分割率、敏感度、特异度3个指标上较最优方法分别提升了2.03%、0.23%、1.54%.并且,建立连通区域的形态学先验是克服背景粘连、大面积片状斑纹和盾纹的影响及改善甲骨拓片图像分割效率的有效手段. 展开更多
关键词 甲骨拓片 图像分割 数字图像处理 连通区域 拓扑结构 形态学
下载PDF
数学形态学在数字图像处理中的应用
11
作者 肖引昌 《集成电路应用》 2023年第2期297-299,共3页
阐述数学形态学的特点,数字图像的表达方式,数学形态学在数字图像处理中的应用,包括二值数学形态学、数字图像处理中的消除噪声、边缘检测、提取形态骨架、图像分割。
关键词 数学形态学 数字图像处理 消除噪声 边缘检测 提取形态骨架 图像分割
下载PDF
基于形态学和改进管道滤波的红外小目标检测 被引量:1
12
作者 赵明晶 李伟 +2 位作者 陶然 马鹏阁 揭斐然 《北京理工大学学报》 EI CAS CSCD 北大核心 2023年第7期755-763,共9页
红外小目标的正确检测是图像处理领域中的一个重要课题,现有方法没有充分挖掘小目标的特征导致目标容易淹没在复杂的背景中.此外,目标的运动轨迹信息没有完全利用也使得目标和孤立噪声不易区分.为了解决该问题,设计了一种基于多属性形... 红外小目标的正确检测是图像处理领域中的一个重要课题,现有方法没有充分挖掘小目标的特征导致目标容易淹没在复杂的背景中.此外,目标的运动轨迹信息没有完全利用也使得目标和孤立噪声不易区分.为了解决该问题,设计了一种基于多属性形态学和改进管道滤波相结合的算法.对红外图像构建最大树,并通过面积、高度和对角线属性综合提取小目标的多种特征达到目标增强背景抑制的目的,融合多属性形态学得到的结果确定候选目标,通过改进的管道滤波利用目标运动轨迹的规律性进一步去除类目标噪声.将所提出的方法在4个数据集与4种方法进行比较,实验结果证明所提出的方法能在最大程度上抑制背景杂波的同时增强目标,对多种复杂场景下的不同类型、尺寸不一和亮度差异大的目标检测效果鲁棒. 展开更多
关键词 图像处理 红外图像 小目标检测 数学形态学 改进管道滤波
下载PDF
A Signal Based “W” Structural Elements for Multi-scale Mathematical Morphology Analysis and Application to Fault Diagnosis of Rolling Bearings of Wind Turbines 被引量:1
13
作者 Qiang Li Yong-Sheng Qi +2 位作者 Xue-Jin Gao Yong-Ting Li Li-Qiang Liu 《International Journal of Automation and computing》 EI CSCD 2021年第6期993-1006,共14页
Working conditions of rolling bearings of wind turbine generators are complicated, and their vibration signals often show non-linear and non-stationary characteristics. In order to improve the efficiency of feature ex... Working conditions of rolling bearings of wind turbine generators are complicated, and their vibration signals often show non-linear and non-stationary characteristics. In order to improve the efficiency of feature extraction of wind turbine rolling bearings and to strengthen the feature information, a new structural element and an adaptive algorithm based on the peak energy are proposed,which are combined with spectral correlation analysis to form a fault diagnosis algorithm for wind turbine rolling bearings. The proposed method firstly addresses the problem of impulsive signal omissions that are prone to occur in the process of fault feature extraction of traditional structural elements and proposes a "W" structural element to capture more characteristic information. Then, the proposed method selects the scale of multi-scale mathematical morphology, aiming at the problem of multi-scale mathematical morphology scale selection and structural element expansion law. An adaptive algorithm based on peak energy is proposed to carry out morphological scale selection and structural element expansion by improving the computing efficiency and enhancing the feature extraction effect.Finally, the proposed method performs spectral correlation analysis in the frequency domain for an unknown signal of the extracted feature and identifies the fault based on the correlation coefficient. The method is verified by numerical examples using experimental rig bearing data and actual wind field acquisition data and compared with traditional triangular and flat structural elements. The experimental results show that the new structural elements can more effectively extract the pulses in the signal and reduce noise interference,and the fault-diagnosis algorithm can accurately identify the fault category and improve the reliability of the results. 展开更多
关键词 Fault diagnosis structural element multi-scale mathematical morphology rolling bearing correlation analysis
原文传递
基于数学形态学的路面裂纹图像分割方法
14
作者 刘训星 张海民 《辽东学院学报(自然科学版)》 CAS 2023年第2期130-135,共6页
已有裂纹图像分割方法无法对较小裂纹特征进行具体描述,导致路面图像中的裂纹提取结果不全面等问题,为此提出基于数学形态学的路面裂纹图像分割方法。采用空间域处理方法对原始图像像素进行增强处理,通过正变换及逆变换得到新的路面裂... 已有裂纹图像分割方法无法对较小裂纹特征进行具体描述,导致路面图像中的裂纹提取结果不全面等问题,为此提出基于数学形态学的路面裂纹图像分割方法。采用空间域处理方法对原始图像像素进行增强处理,通过正变换及逆变换得到新的路面裂纹图像,并划分出图像中的噪声类型;使用灰度值表示噪声,使用均值滤波法中的3×3模板表示离散图像的裂纹元素与噪声元素,并对路面裂纹图像进行去噪处理;利用经典数学形态学理论,对路面裂纹图像结构元素进行表达,在膨胀和腐蚀处理过程中判断裂纹的形式变化,实现裂纹分割。单一裂纹图像和复杂裂纹图像的实验结果表明:所提方法可以有效提取裂纹特征值,特征提取率为99.5%,并在不同噪声条件下具有较高的分割效率,可以满足路面裂纹检测需求。 展开更多
关键词 数学形态学 路面裂纹 图像处理 分割方法
下载PDF
A novel mathematical morphology based algorithm for shoreline extraction from satellite images
15
作者 C.A.Rishikeshan H.Ramesh 《Geo-Spatial Information Science》 CSCD 2017年第4期345-352,共8页
Shoreline extraction is fundamental and inevitable for several studies.Ascertaining the precise spatial location of the shoreline is crucial.Recently,the need for using remote sensing data to accomplish the complex ta... Shoreline extraction is fundamental and inevitable for several studies.Ascertaining the precise spatial location of the shoreline is crucial.Recently,the need for using remote sensing data to accomplish the complex task of automatic extraction of features,such as shoreline,has considerably increased.Automated feature extraction can drastically minimize the time and cost of data acquisition and database updating.Effective and fast approaches are essential to monitor coastline retreat and update shoreline maps.Here,we present a flexible mathematical morphology-driven approach for shoreline extraction algorithm from satellite imageries.The salient features of this work are the preservation of actual size and shape of the shorelines,run-time structuring element definition,semi-automation,faster processing,and single band adaptability.The proposed approach is tested with various sensor-driven images with low to high resolutions.Accuracy of the developed methodology has been assessed with manually prepared ground truths of the study area and compared with an existing shoreline classification approach.The proposed approach is found successful in shoreline extraction from the wide variety of satellite images based on the results drawn from visual and quantitative assessments. 展开更多
关键词 FEATURE extraction SHORELINE detection satellite image processing REMOTE sensing mathematical morphology
全文增补中
形态学滤波器结构元素选取原则研究与分析 被引量:52
16
作者 赵昭 刘利林 +2 位作者 张承学 李海涛 汪建敏 《电力系统保护与控制》 EI CSCD 北大核心 2009年第14期21-25,35,共6页
形态学滤波器作为一种非线性滤波工具,以其良好的消噪性能越来越多地被运用到电力系统采样数据的处理中。形态学滤波器所选用的结构元素对滤波效果有着重要的影响,但目前结构元素的选取还没有针对具体应用背景的选取原则。针对电力系统... 形态学滤波器作为一种非线性滤波工具,以其良好的消噪性能越来越多地被运用到电力系统采样数据的处理中。形态学滤波器所选用的结构元素对滤波效果有着重要的影响,但目前结构元素的选取还没有针对具体应用背景的选取原则。针对电力系统中的常见噪声,通过数值仿真,对几种常用结构元素的滤波效果及计算速度进行了详细的分析研究,进而给出了结构元素类型的一般选取原则。同时提出了关于结构元素宽度及幅值选取的一些规律,为形态学滤波器的设计提供了参考依据。 展开更多
关键词 数学形态学 形态学滤波器 结构元素 去噪
下载PDF
数学形态学在图像处理中的应用 被引量:198
17
作者 王树文 闫成新 +1 位作者 张天序 赵广州 《计算机工程与应用》 CSCD 北大核心 2004年第32期89-92,共4页
介绍了数学形态学的基本运算及数学形态学在图像处理中的主要应用,并讨论了结构元素的选取方法。
关键词 数学形态学 图像处理 边缘检测 骨架
下载PDF
基于多结构元的噪声污染灰度图像边缘检测研究 被引量:32
18
作者 范立南 韩晓微 +1 位作者 王忠石 徐心和 《武汉大学学报(工学版)》 CAS CSCD 北大核心 2003年第3期86-90,共5页
提出了具有多结构元的灰度形态学边缘检测梯度算子 ,根据图像的几何特征 ,采用多结构元对图像细节进行匹配 ,既能提取精细的边缘 ,又能很好地抑制噪声 .
关键词 数学形态学 多结构元 噪声 灰度图像 边缘检测
下载PDF
基于数学形态学的数字滤波器设计与分析 被引量:111
19
作者 陈平 李庆民 《中国电机工程学报》 EI CSCD 北大核心 2005年第11期60-65,共6页
针对电力信号监测中可能遇到的各种干扰,通过数值仿真详细研究了结构元素的形状、幅值和宽度对形态学数字滤波器性能的影响。分析指出,最优结构元素的选取,与干扰的类型和频率、待处理数据序列的采样率等因素密切相关,一般要根据信号和... 针对电力信号监测中可能遇到的各种干扰,通过数值仿真详细研究了结构元素的形状、幅值和宽度对形态学数字滤波器性能的影响。分析指出,最优结构元素的选取,与干扰的类型和频率、待处理数据序列的采样率等因素密切相关,一般要根据信号和干扰的具体特征,通过数值仿真预先确定。对于宽带干扰的消去,采用余弦型结构元素时滤波效果较好;对于窄带干扰的消去,矩形结构元素的应用特性较佳。随着信号采样频率的增加,结构元素宽度应按线性递增规律选取,以获得较优的滤波特性。这些研究结果为形态学滤波器在电力信号监测和处理中的应用提供了设计依据。 展开更多
关键词 滤波器设计 数学形态学 结构元素 信号监测 数值仿真 数字滤波器 数据序列 宽带干扰 窄带干扰 滤波效果 采样频率 滤波特性 设计依据 研究结果 采样率 余弦型 电力 宽度 消去 应用
下载PDF
数学形态滤波与大地电磁噪声压制 被引量:78
20
作者 汤井田 李晋 +2 位作者 肖晓 张林成 吕庆田 《地球物理学报》 SCIE EI CAS CSCD 北大核心 2012年第5期1784-1793,共10页
数学形态滤波是一种新型的非线性滤波方法.介绍了形态学滤波的基本原理,针对大地电磁信号表现出的非线性、非平稳性和非最小相位特性,综合结构元素特征我们提出一种基于数学形态滤波的大地电磁噪声压制方法.为了有效抑制目标信号中的噪... 数学形态滤波是一种新型的非线性滤波方法.介绍了形态学滤波的基本原理,针对大地电磁信号表现出的非线性、非平稳性和非最小相位特性,综合结构元素特征我们提出一种基于数学形态滤波的大地电磁噪声压制方法.为了有效抑制目标信号中的噪声干扰及修正统计偏倚现象,通过选用合理的结构元素及形态开-闭、闭-开组合,将正、负结构元素级联构造组合广义形态滤波器对实测大地电磁信号进行噪声压制.实验结果表明,该方法是切实可行的,有效地剔除了大尺度干扰及基线漂移,较好地还原了大地电磁信号的原始特征,修正了标准形态算子所产生的统计偏倚现象,去噪精度高.该方法计算速度快,具有潜在优势,为矿集区海量大地电磁信号与强干扰的分离提供了一条新的途径,应用前景广阔. 展开更多
关键词 数学形态滤波 结构元素 非线性滤波 大地电磁 噪声压制
下载PDF
上一页 1 2 33 下一页 到第
使用帮助 返回顶部