Envelope

 

IEnvelope Interface

Provides access to methods and properties of envelopes. Note: the IEnvelope interface has been superseded byIEnvelope2. Please consider using the more recent version.

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

Description

Envelopes are the rectangular window that contain a specific element.  All Geometry objects have an envelope defined by the XMinXMaxYMin, and YMax of the object.  Envelopes can also serve as the viewing area for a particular view screen or data frame.

Members

Description

 

 

CenterAt

Moves this envelope so it is centered at p.

 

DefineFromPoints

Defines the envelope to cover all the points.

 

Depth

The depth of the envelope.

 

Dimension

The topological dimension of this geometry.

 

Envelope

Creates a copy of this geometry's envelope and returns it.

 

Expand

Moves the X and Y coordinates of the sides toward or away from each other.

 

ExpandM

Moves the measure of the sides toward or away from each other.

 

ExpandZ

Moves the Z attribute of the sides toward or away from each other.

 

GeometryType

The type of this geometry.

 

GeoNormalize

Shifts longitudes, if need be, into a continuous range of 360 degrees.

 

GeoNormalizeFromLongitude

Normalizes longitudes into a continuous range containing the longitude. This method is obsolete.

 

Height

The height of the envelope.

 

Intersect

Adjusts to include only the area also included by inEnvelope.

 

IsEmpty

Indicates whether this geometry contains any points.

 

LowerLeft

The lower left corner.

 

LowerRight

The lower right corner.

 

MMax

The maximum measure value in the area of the envelope.

 

MMin

The minimum measure value in the area of the envelope.

 

Offset

Moves the sides x units horizontally and y units vertically.

 

OffsetM

Moves the sides m units.

 

OffsetZ

Moves the sides z units.

 

Project

Projects this geometry into a new spatial reference.

 

PutCoords

Constructs an envelope from the coordinate values of lower, left and upper, right corners.

 

QueryCoords

Returns the coordinates of lower, left and upper, right corners.

 

QueryEnvelope

Copies this geometry's envelope properties into the specified envelope.

 

SetEmpty

Removes all points from this geometry.

 

SnapToSpatialReference

Moves points of this geometry so that they can be represented in the precision of the geometry's associated spatial reference system.

 

SpatialReference

The spatial reference associated with this geometry.

 

Union

Adjusts to overlap inEnvelope.

 

UpperLeft

The upper left corner.

 

UpperRight

The upper right corner.

 

Width

The width of the envelope.

 

XMax

The position of the right side.

 

XMin

The position of the left side.

 

YMax

The position of the top.

 

YMin

The position of the bottom.

 

ZMax

The maximum Z value in the area of the envelope.

 

ZMin

The minimum Z value in the area of the envelope.

Inherited Interfaces

Interfaces

Description

IGeometry

Provides access to members that describe properties and behavior of all geometric objects.

CoClasses that implement IEnvelope

CoClasses and Classes

Description

Envelope

A rectangle with sides parallel to a coordinate system defining the extent of another geometry; optionally has min and max measure, height and ID attributes.

[C#]

        //The following C# code shows how to create an envelope from coordinates:
        IEnvelope env = new EnvelopeClass() as IEnvelope;

        env.PutCoords(-10, -5, 10, 5);

 

没有整理与归纳的知识,一文不值!高度概括与梳理的知识,才是自己真正的知识与技能。 永远不要让自己的自由、好奇、充满创造力的想法被现实的框架所束缚,让创造力自由成长吧! 多花时间,关心他(她)人,正如别人所关心你的。理想的腾飞与实现,没有别人的支持与帮助,是万万不能的。


   本文转自wenglabs博客园博客,原文链接:http://www.cnblogs.com/arxive/p/6120193.html ,如需转载请自行联系原作者
### 语音包络技术及其应用 在语音处理领域,语音信号可以被分解成两个主要部分:激励源(excitation source)和声道滤波器(vocal tract filter)。其中,语音包络代表了经过声道滤波后的频谱特性[^1]。 #### 语音包络提取方法 为了有效地分析和合成语音信号,通常采用多种算法来提取语音包络。常见的方法包括: - **短时傅里叶变换 (STFT)** STFT 是一种常用的时间频率表示法,通过窗口化的方式计算局部频域特征,从而获得语音信号的幅度谱作为其包络估计。 - **线性预测编码 (LPC)** LPC 方法基于自回归模型拟合语音产生的物理过程,能够高效地捕捉共振峰位置并重建平滑的语谱图轮廓。 ```python import numpy as np from scipy.signal import lfilter def extract_envelope_lpc(signal, order=10): """Extract the speech envelope using Linear Predictive Coding.""" # Compute LPC coefficients a = librosa.lpc(signal, order) # Generate impulse response from LPC model h = np.hstack([[1], -a[1:]]) # Filter input signal by inverse system env = lfilter(h, [1], signal) return abs(env) ``` #### 应用场景 语音包络信息广泛应用于多个方面: - **语音识别** 提取稳定的声学特征有助于提高自动语音识别系统的鲁棒性和准确性[^2]。 - **情感检测** 不同情绪状态下说话人的音调变化会反映到语音包络上,因此可用于构建更细腻的情感分类模型。 - **跨语言迁移学习** 利用共享的低维表征空间实现多语言之间的知识传递,在资源匮乏的语言环境中尤为有用。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值