estimation

Giving estimates for large scale projects in an Agile Environment [closed]

老子叫甜甜 提交于 2019-11-29 18:59:42
My firm just got its first large-scale development project inquiry and I would like to use an Agile process. The client has a vision for the application but openly admits to having very few requirements and recognizes that we will have to charge by the hour. Because of this, I've all but sold him on an Agile approach. The problem is that he wants a figure to budget around. I've read a number of articles that pretty much advocate against giving up an estimate because the client will budget for that number and even as requirements change, the number in their head and in the books doesn't. I've

Algorithm to determine fundamental frequency from potential harmonics

自古美人都是妖i 提交于 2019-11-29 03:21:42
I am attempting to extract a fundamental frequency from a sound source. maybe someone is singing A3 into the microphone, so I want to be detecting ~ 110Hz my approach is: FFT 1024 floats use the phase of each bin to accurately determine its precise frequency determine peaks (typically 50 or so) order them with the loudest first (Peak[0].power=1063.343750, .freq=2032.715088 (Peak[1].power=1047.764893, .freq=3070.605225 (Peak[2].power=1014.986877, .freq=5925.878418 (Peak[3].power=1011.707825, .freq=6963.769043 (Peak[4].power=1009.152954, .freq=4022.363037 (Peak[5].power=995.199585, .freq=4974

Does anyone work with Function Points?

我与影子孤独终老i 提交于 2019-11-28 20:35:35
问题 Some questions about Function Points: 1) Is it a reasonably precise way to do estimates? (I'm not unreasonable here, but just want to know compared to other estimation methods) 2) And is the effort required worth the benefit you get out of it? 3) Which type of Function Points do you use? 4) Do you use any tools for doing this? Edit : I am interested in hearing from people who use them or have used them. I've read up on estimation practices, including pros/cons of various techniques, but I'm

Noise Estimation / Noise Measurement in Image

烂漫一生 提交于 2019-11-28 18:26:22
I want to estimate the noise in an image. Let's assume the model of an Image + White Noise. Now I want to estimate the Noise Variance. My method is to calculate the Local Variance (3*3 up to 21*21 Blocks) of the image and then find areas where the Local Variance is fairly constant (By calculating the Local Variance of the Local Variance Matrix). I assume those areas are "Flat" hence the Variance is almost "Pure" noise. Yet I don't get constant results. Is there a better way? Thanks. P.S. I can't assume anything about the Image but the independent noise (Which isn't true for real image yet let

Giving estimates for large scale projects in an Agile Environment [closed]

天大地大妈咪最大 提交于 2019-11-28 15:29:53
问题 My firm just got its first large-scale development project inquiry and I would like to use an Agile process. The client has a vision for the application but openly admits to having very few requirements and recognizes that we will have to charge by the hour. Because of this, I've all but sold him on an Agile approach. The problem is that he wants a figure to budget around. I've read a number of articles that pretty much advocate against giving up an estimate because the client will budget for

How to use linear interpolation estimate current position between two Geo Coordinates?

冷暖自知 提交于 2019-11-28 11:19:04
I have the following available: last reported lat,lon w/timestamp target lat,lon estimated time to target heading How can I interpolate an estimated position over time? I know that's enough to calculate the required average velocity for the remainder of the trip. Given a straight-line distance, it's pretty trivial. I know it has to do with vectors but I'm a bit rusty and thought it better to consult some experts. The reason I need this update rate is limited, so to show smooth animation I need to guess at the current position between updates. The target platform is a Google Maps application so

Estimating/forecasting download completion time

有些话、适合烂在心里 提交于 2019-11-28 08:24:58
We've all poked fun at the 'X minutes remaining' dialog which seems to be too simplistic, but how can we improve it? Effectively, the input is the set of download speeds up to the current time, and we need to use this to estimate the completion time, perhaps with an indication of certainty, like '20-25 mins remaining' using some Y% confidence interval. Code that did this could be put in a little library and used in projects all over, so is it really that difficult? How would you do it? What weighting would you give to previous download speeds? Or is there some open source code already out

Algorithm to determine fundamental frequency from potential harmonics

不羁的心 提交于 2019-11-27 17:34:17
问题 I am attempting to extract a fundamental frequency from a sound source. maybe someone is singing A3 into the microphone, so I want to be detecting ~ 110Hz my approach is: FFT 1024 floats use the phase of each bin to accurately determine its precise frequency determine peaks (typically 50 or so) order them with the loudest first (Peak[0].power=1063.343750, .freq=2032.715088 (Peak[1].power=1047.764893, .freq=3070.605225 (Peak[2].power=1014.986877, .freq=5925.878418 (Peak[3].power=1011.707825,

How to estimate SQL query timing?

感情迁移 提交于 2019-11-27 12:27:28
I'm trying to get an rough (order-of-magnitude) estimate of how long time the following query could take: mysql> EXPLAIN SELECT t1.col1, t1_col4 FROM t1 LEFT JOIN t2 ON t1.col1=t2.col1 WHERE col2=0 AND col3 IS NULL; +----+-------------+--------------------+------+---------------+------------+---------+-----------------------------+---------+--------------------------+ | id | select_type | table | type | possible_keys | key | key_len | ref | rows | Extra | +----+-------------+--------------------+------+---------------+------------+---------+-----------------------------+---------+-------------

Noise Estimation / Noise Measurement in Image

邮差的信 提交于 2019-11-27 11:20:10
问题 I want to estimate the noise in an image. Let's assume the model of an Image + White Noise. Now I want to estimate the Noise Variance. My method is to calculate the Local Variance (3*3 up to 21*21 Blocks) of the image and then find areas where the Local Variance is fairly constant (By calculating the Local Variance of the Local Variance Matrix). I assume those areas are "Flat" hence the Variance is almost "Pure" noise. Yet I don't get constant results. Is there a better way? Thanks. P.S. I