photo

Peter


2016 年からアクティブ

Followers: 0   Following: 0

統計

MATLAB Answers

7 質問
0 回答

ランク
38,723
of 300,813

評判
1

コントリビューション
7 質問
0 回答

回答採用率
42.86%

獲得投票数
1

ランク
 of 21,086

評判
N/A

平均評価
0.00

コントリビューション
0 ファイル

ダウンロード
0

ALL TIME ダウンロード
0

ランク

of 171,169

コントリビューション
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年 前 | 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年 前 | 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年 前 | 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年 前 | 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年 前 | 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年 前 | 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年 前 | 1 件の回答 | 0

1

回答