Can vision.For​egroundDet​ector work on GUI

1 visualización (últimos 30 días)
Leona Chan
Leona Chan el 14 de Ag. de 2017
Comentada: Leona Chan el 15 de Ag. de 2017
Hi, Can I use GUI to display foreground from vision.ForegroundDetector? By using the same method I can extract the foreground. But in the GUI I can't display the foreground. Please help, thanks
  3 comentarios
Leona Chan
Leona Chan el 14 de Ag. de 2017
Yes, I had. I can display the frame, but foreground cannot. These are some pieces of code
function playCallback(hObject,~,videoSrc,hAxes)
while strcmp(hObject.String, 'Pause') && ~isDone(videoSrc)
[frame,result] = getAndProcessFrame(videoSrc);
showFrameOnAxis(hAxes.axis1, frame);
showFrameOnAxis(hAxes.axis2, result);
end
function [frame,foreground] = getAndProcessFrame(videoSrc)
foregroundDetector = vision.ForegroundDetector('NumGaussians', 4, ... 'NumTrainingFrames', 60);
frame = step(videoSrc);
foreground = step(foregroundDetector, frame); end
Jiro Doke
Jiro Doke el 15 de Ag. de 2017
Editada: Jiro Doke el 15 de Ag. de 2017
What do you mean by "you can't display the foreground"? Do you get an error? Does it show something but not what you expect? Is it possible that for the frame input, no foreground was detected? What exactly is the situation?

Iniciar sesión para comentar.

Respuesta aceptada

Leona Chan
Leona Chan el 15 de Ag. de 2017
As above code, showFrameOnAxis(hAxes.axis1, frame); showFrameOnAxis(hAxes.axis2, foreground); The frame can show in both axis1 or axis2, but put foreground either axis1 or axis2 also nothing to display.
  6 comentarios
Jiro Doke
Jiro Doke el 15 de Ag. de 2017
"Same method" as in using foregroundDetector in a loop with video frames?
I can't say for certain, but you may need to take the vision.ForegroundDetector initialization outside of the "loop". If I remember correctly, the detector uses past frames to estimate the background. Currently, in your snippet of code, you are recreating the detector for each frame, thus clearing the past frames from its algorithm. Just using your code snippet, you may need to change to something like this.
function playCallback(hObject,~,videoSrc,hAxes)
foregroundDetector = vision.ForegroundDetector('NumGaussians', 4, ...
'NumTrainingFrames', 60);
while strcmp(hObject.String, 'Pause') && ~isDone(videoSrc)
[frame,result] = getAndProcessFrame(videoSrc,foregroundDetector);
showFrameOnAxis(hAxes.axis1, frame);
showFrameOnAxis(hAxes.axis2, result);
end
end
function [frame,foreground] = getAndProcessFrame(videoSrc,foregroundDetector)
frame = step(videoSrc);
foreground = step(foregroundDetector, frame);
end
Leona Chan
Leona Chan el 15 de Ag. de 2017
Yes, work now, thank you very much

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Computer Vision with Simulink en Help Center y File Exchange.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by