![photo](/responsive_image/150/150/0/0/0/cache/matlabcentral/profiles/7391433_1522121314686_DEF.jpg)
Neelum Dave
Followers: 0 Following: 0
Statistics
7 Questions
0 Answers
RANK
21,978
of 297,016
REPUTATION
2
CONTRIBUTIONS
7 Questions
0 Answers
ANSWER ACCEPTANCE
14.29%
VOTES RECEIVED
2
RANK
of 20,419
REPUTATION
N/A
AVERAGE RATING
0.00
CONTRIBUTIONS
0 Files
DOWNLOADS
0
ALL TIME DOWNLOADS
0
RANK
of 157,725
CONTRIBUTIONS
0 Problems
0 Solutions
SCORE
0
NUMBER OF BADGES
0
CONTRIBUTIONS
0 Posts
CONTRIBUTIONS
0 Public Channels
AVERAGE RATING
CONTRIBUTIONS
0 Highlights
AVERAGE NO. OF LIKES
Feeds
Question
What does this instruction returns.
[hueChannel,~,~] = rgb2hsv(videoFrame)
9 years ago | 1 answer | 0
1
answerQuestion
While tracking face in a video Iam using these instructions but the face is not getting tracked properly.Also I am not getting why the position in line 3 is kept [300 300 videoInfo. VideoSize]
tracker = vision.HistogramBasedTracker; % Initialize the tracker histogram using the Hue channel pixels from the % nose. in...
9 years ago | 0 answers | 0
0
answersQuestion
how step method performs different functions at different time
videoFileReader = vision.VideoFileReader('h1.avi'); videoFrame = step(videoFileReader); figure, imshow(videoFrame) ...
9 years ago | 1 answer | 0
1
answerQuestion
What does step instruction in matlab do?
videoFileReader = vision.VideoFileReader('h1.avi'); videoFrame = step(videoFileReader);
9 years ago | 1 answer | 2
1
answerQuestion
How to know the detected face is of which frame in a matlab code of face detection and how to save first and last frame.
videoFileReader = vision.VideoFileReader('h1.avi'); videoFrame = step(videoFileReader); figure, imshow(videoFrame) faceD...
9 years ago | 1 answer | 0
1
answerQuestion
I am getting this error while running a matlab code for face detection and tracking Error in noseDetector = vision.CascadeObjectDetector('Nose', 'UseROI', true);
% Create a cascade detector object. faceDetector = vision.CascadeObjectDetector(); % Read a video frame and run the detector...
9 years ago | 2 answers | 0
2
answersQuestion
While running a matlab code for face detection in a video using camshift algorithm, i am getting the error Attempt to execute SCRIPT insertObjectAnnotation as a function. How to remove this error.
my code is % Read a video frame and run the detector. videoFileReader = vision.VideoFileReader('a1.avi'); videoFrame ...
9 years ago | 1 answer | 0