亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

蟲蟲首頁| 資源下載| 資源專輯| 精品軟件
登錄| 注冊

LOCATION

  • Analysis of GPS data frame The design of the following four main data collection format: GPGGA (loc

    Analysis of GPS data frame The design of the following four main data collection format: GPGGA (LOCATION information), GPRMC (Recommended Minimum LOCATION information), GPVTG (ground speed information), PGRME (forecast error message)

    標簽: data collection following Analysis

    上傳時間: 2017-09-25

    上傳用戶:onewq

  • LatentSVM論文

    The object detector described below has been initially proposed by P.F. Felzenszwalb in [Felzenszwalb2010]. It is based on a Dalal-Triggs detector that uses a single filter on histogram of oriented gradients (HOG) features to represent an object category. This detector uses a sliding window approach, where a filter is applied at all positions and scales of an image. The first innovation is enriching the Dalal-Triggs model using a star-structured part-based model defined by a “root” filter (analogous to the Dalal-Triggs filter) plus a set of parts filters and associated deformation models. The score of one of star models at a particular position and scale within an image is the score of the root filter at the given LOCATION plus the sum over parts of the maximum, over placements of that part, of the part filter score on its LOCATION minus a deformation cost easuring the deviation of the part from its ideal LOCATION relative to the root. Both root and part filter scores are defined by the dot product between a filter (a set of weights) and a subwindow of a feature pyramid computed from the input image. Another improvement is a representation of the class of models by a mixture of star models. The score of a mixture model at a particular position and scale is the maximum over components, of the score of that component model at the given LOCATION.

    標簽: 計算機視覺

    上傳時間: 2015-03-15

    上傳用戶:sb_zhang

  • DAKOTA

    Computational models are commonly used in engineering design and scientific discovery activities for simulating complex physical systems in disciplines such as fluid mechanics, structural dynamics, heat transfer, nonlinear structural mechanics, shock physics, and many others. These simulators can be an enormous aid to engineers who want to develop an understanding and/or predictive capability for complex behaviors typically observed in the corresponding physical systems. Simulators often serve as virtual prototypes, where a set of predefined system parameters, such as size or LOCATION dimensions and material properties, are adjusted to improve the performance of a system, as defined by one or more system performance objectives. Such optimization or tuning of the virtual prototype requires executing the simulator, evaluating performance objective(s), and adjusting the system parameters in an iterative, automated, and directed way. System performance objectives can be formulated, for example, to minimize weight, cost, or defects; to limit a critical temperature, stress, or vibration response; or to maximize performance, reliability, throughput, agility, or design robustness. In addition, one would often like to design computer experiments, run parameter studies, or perform uncertainty quantification (UQ). These approaches reveal how system performance changes as a design or uncertain input variable changes. Sampling methods are often used in uncertainty quantification to calculate a distribution on system performance measures, and to understand which uncertain inputs contribute most to the variance of the outputs. A primary goal for Dakota development is to provide engineers and other disciplinary scientists with a systematic and rapid means to obtain improved or optimal designs or understand sensitivity or uncertainty using simulationbased models. These capabilities generally lead to improved designs and system performance in earlier design stages, alleviating dependence on physical prototypes and testing, shortening design cycles, and reducing product development costs. In addition to providing this practical environment for answering system performance questions, the Dakota toolkit provides an extensible platform for the research and rapid prototyping of customized methods and meta-algorithms

    標簽: Optimization and Uncertainty Quantification

    上傳時間: 2016-04-08

    上傳用戶:huhu123456

  • Microphone Arrays : A Tutorial

    This report presents a tutorial of fundamental array processing and beamforming theory relevant to microphone array speech processing. A microphone array consists of multiple microphones placed at different spatial LOCATIONs. Built upon a knowledge of sound propagation principles, the multiple inputs can be manipulated to enhance or attenuate signals emanating from particular directions. In this way, microphone arrays provide a means of enhancing a desired signal in the presence of corrupting noise sources. Moreover, this enhancement is based purely on knowledge of the source LOCATION, and so microphone array techniques are applicable to a wide variety of noise types. Microphone arrays have great potential in practical applications of speech processing, due to their ability to provide both noise robustness and hands-free signal acquisition.

    標簽: Microphone array Tutorial Array Signal Processing

    上傳時間: 2016-06-12

    上傳用戶:halias

  • asp實現限制一個ip只能訪問一次的方法

    asp實現限制一個ip只能訪問一次的方法 <%  '/////////////////////////////////////////////////////  '// //  '//作用:一個IP地址只允許訪問本頁一次 //  '//引用:<!-- #include file="Check_Ip.asp" --> //  '// //  '/////////////////////////////////////////////////////    'Response.Charset = 936 '設置輸出編碼為簡體中文  'Response.Buffer = false '關閉緩沖區    Dim Fso,ts,IpList,Cfs    '設置Cookies函數  Function SetCookie()  Response.Cookies("IsBrow") = "Brow" Response.Cookies("IsBrow").Expires = Date+365  End Function    '記錄IP地址函數  Function WriteIp(FileName, IpAddress)  Set Fso = Server.CreateObject("Scripting.FileSystemObject")  Set ts = Fso.OpenTextFile(Server.MapPath(FileName),8,true)  ts.WriteLine IpAddress  ts.Close  Set ts = Nothing  Set Fso = Nothing  End Function    '讀取IP地址函數  Function ReadIpList(FileName)  Set Fso = Server.CreateObject("Scripting.FileSystemObject")  If Not Fso.FileExists(Server.MapPath(FileName)) Then  CreateFile("Iplist.txt")  Exit Function  End If    Set ts = Fso.OpenTextFile(Server.MapPath(FileName))  Iplist = ts.ReadAll  ts.Close  Set ts = Nothing  Set Fso = Nothing  ReadIpList = Iplist  End Function    '創建文件函數  Function CreateFile(FileName)  Set Fso = Server.CreateObject("Scripting.FileSystemObject")  Set Cfs = Fso.CreateTextFile(Server.MapPath(FileName))  Cfs.Close  Set Cfs = Nothing  Set Fso = Nothing  End Function    '關閉當前IE窗口函數(注:IE6下通過,其他瀏覽器未測試)  Function CloseWindow()  'Response.Write "<script>window.LOCATION='javascript:window.opener=null;window.close();'</script>"  Response.Redirect "http://www.baidu.com" End Function    Ip = Request.ServerVariables("REMOTE_ADDR") '獲取瀏覽者IP地址    Cookie = Request.Cookies("IsBrow") '獲取當前Cookies  'Response.Write Cookie    If Request.ServerVariables("HTTP_X_FORWARDED_FOR") <> "" Then  Response.Write "本站不允許使用代理訪問" Response.End()  Else  If Cookie = "Brow" Then  CloseWindow()  Else  If Instr(ReadIpList("Iplist.txt"),Ip) <>0  Then  CloseWindow()  Else  WriteIp "Iplist.txt" , Ip  End If  SetCookie()  End If  End If  %>

    標簽: asp 訪問

    上傳時間: 2016-07-14

    上傳用戶:helei0915

  • 傳感器網絡中基于到達時間差有效的凸松弛方法的穩健定位

    We consider the problem of target localization by a network of passive sensors. When an unknown target emits an acoustic or a radio signal, its position can be localized with multiple sensors using the time difference of arrival (TDOA) information. In this paper, we consider the maximum likelihood formulation of this target localization problem and provide efficient convex relaxations for this nonconvex optimization problem.We also propose a formulation for robust target localization in the presence of sensor LOCATION errors. Two Cramer-Rao bounds are derived corresponding to situations with and without sensor node LOCATION errors. Simulation results confirm the efficiency and superior performance of the convex relaxation approach as compared to the existing least squares based approach when large sensor node LOCATION errors are present.

    標簽: 傳感器網絡

    上傳時間: 2016-11-27

    上傳用戶:xxmluo

  • Architectures for Baseband Signal Processing

    Mobile communication devices like smart phones or tablet PCs enable us to consume information at every LOCATION and at every time. The rapid development of new applications and new services and the demand to access data in real time create an increasing throughput demand. The data have to be transmitted reliably to ensure the desired quality of service. Furthermore, an improved utilization of the bandwidth is desired to reduce the cost of transmission.

    標簽: Architectures Processing Baseband Signal for

    上傳時間: 2020-05-26

    上傳用戶:shancjb

  • Next Generation Mobile Broadcasting

    Mobile wireless communications are in constant evolution due to the continu- ously increasing requirements and expectations of both users and operators. Mass multimedia* services have been for a long time expected to generate a large amount of data traffic in future wireless networks [1]. Mass multimedia services are, by definition, purposed for many people. In general, it can be distinguished between the distribution of any popular content over a wide area and the distribu- tion of LOCATION-dependent information in highly populated areas. Representative examples include the delivery of live video streaming content (like sports compe- titions, concerts, or news) and file download (multimedia clips, digital newspa- pers, or software updates).

    標簽: Broadcasting Generation Mobile Next

    上傳時間: 2020-05-31

    上傳用戶:shancjb

  • Technology+Trends+in+Wireless+Communications

    The use of mobile devices now surpasses that of traditional computers: wireless users will hence soon be demanding the same rich multimedia services on their mobile devices that they have on their desktop personal computers. In addition, new services will be added, especially related with their mobile needs, such as LOCATION-based information services.

    標簽: Communications Technology Wireless Trends in

    上傳時間: 2020-06-01

    上傳用戶:shancjb

  • Electric+Distribution+Network+Planning

    Electric distribution networks are critical parts of power delivery systems. In recent years, many new technologies and distributed energy resources have been inte- grated into these networks. To provide electricity at the possible lowest cost and at required quality, long-term planning is essential for these networks. In distribution planning, optimal LOCATION and size of necessary upgrades are determined to satisfy the demand and the technical requirements of the loads and to tackle uncertainties associated with load and distributed energy resources.

    標簽: Distribution Electric Planning Network

    上傳時間: 2020-06-07

    上傳用戶:shancjb

主站蜘蛛池模板: 鄂托克前旗| 德钦县| 中宁县| 信宜市| 高雄市| 黄冈市| 苏尼特左旗| 麟游县| 湘潭县| 客服| 秦皇岛市| 婺源县| 青浦区| 黔南| 金塔县| 凤凰县| 卓资县| 惠州市| 西丰县| 蓬溪县| 武平县| 平湖市| 工布江达县| 巴里| 越西县| 林口县| 大连市| 右玉县| 亳州市| 广汉市| 阳谷县| 揭西县| 襄樊市| 会同县| 敖汉旗| 伊宁市| 富阳市| 晴隆县| 曲周县| 黎川县| 井研县|