photo

Peter


自 2016 起处于活动状态

Followers: 0   Following: 0

统计学

MATLAB Answers

7 个提问
0 个回答

排名
38,714
of 300,343

声誉
1

贡献数
7 个提问
0 个回答

回答接受率
42.86%

收到投票数
1

排名
 of 20,926

声誉
N/A

平均
0.00

贡献数
0 文件

下载次数
0

ALL TIME 下载次数
0

排名

of 168,172

贡献数
0 个问题
0 个答案

评分
0

徽章数量
0

贡献数
0 帖子

贡献数
0 公开的 个频道

平均

贡献数
0 个亮点

平均赞数

  • Thankful Level 1

查看徽章

Feeds

排序方式:

提问


how to get two-dimensional matrix from an generated image using frame2im
[image, Map] = frame2im(m(1)); points = detectSURFFeatures(image); There is an error about the incorrect input for the det...

9 years 前 | 0 个回答 | 0

0

个回答

提问


How to apply detectHarrisFeatures to a video frame then recreate a new video using frames with detectHarrisFeatures
function [ RecreateVideo ] = convertVideoCorner( path ) v = VideoReader(path); vidHeight = v.Height; vidWidth...

9 years 前 | 0 个回答 | 0

0

个回答

提问


How to convert struct to a video
v = VideoReader(path); vidHeight = v.Height; vidWidth = v.Width; mov=struct('cdata',zeros(vidHeight,vid...

9 years 前 | 1 个回答 | 1

1

个回答

提问


FFT output is a frequency vector that can apply to this function?
In the Description of <https://uk.mathworks.com/help/matlab/ref/fft.html fft>, it said "If X is a vector, then fft(X) returns th...

9 years 前 | 1 个回答 | 0

1

个回答

提问


HTK file writing parameters problem
% Open file for writing: fid = fopen(filename, 'w', 'ieee-be'); % Write the header information% fwrite(fid, nSam...

9 years 前 | 0 个回答 | 0

0

个回答

提问


Custom short time spectral processing function and plotting continuous
function [ Mag, Phase ] = magPhase( Frame ) xF = Frame(1:320)*hamming(320); y = fft(xF); Mag = abs(y); Phase = a...

9 years 前 | 0 个回答 | 0

0

个回答

提问


How to extract samples from audio and hamming window?
fs = 16000; r = audiorecorder(fs, 16, 1); recordblocking(r,3); x = getaudiodata(r, 'double'); plot(x); t = [1/fs: 1/fs: le...

9 years 前 | 1 个回答 | 0

1

个回答