Community Profile

photo

Peter


Con actividad desde 2016

Estadísticas

  • Thankful Level 1

Ver insignias

Content Feed

Ver por

Pregunta


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...

más de 7 años hace | 0 respuestas | 0

0

respuestas

Pregunta


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...

más de 7 años hace | 0 respuestas | 0

0

respuestas

Pregunta


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

más de 7 años hace | 1 respuesta | 1

1

respuesta

Pregunta


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...

más de 7 años hace | 1 respuesta | 0

1

respuesta

Pregunta


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

más de 7 años hace | 0 respuestas | 0

0

respuestas

Pregunta


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...

más de 7 años hace | 0 respuestas | 0

0

respuestas

Pregunta


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...

más de 7 años hace | 1 respuesta | 0

1

respuesta