Answered
Detect humans and their position.
The Computer Vision System Toolbox has a way of detecting standing people ( |vision.PeopleDetector|) as well as faces and upper ...

11 years ago | 1

Answered
Is trainingImageLabeler available in 2013 version?
|trainingImageLabeler| was added to the Computer Vision System Toolbox in R2014a. However, you can use <http://www.mathworks.co...

11 years ago | 0

| accepted

Answered
add uint8 frame to vision.videofilewriter object using the step function
You can pass |uint8| frames into |vision.VideoFileWriter|. However, I think the frames are always stored as |uint8| on disk, and...

11 years ago | 0

Answered
how to write a MP4 video using vision toolbox ?
If you do >> help vision.VideoFileWriter and then click on FileFormat you should see this: FileFormat Format of c...

11 years ago | 1

Answered
Difference between MJPG and YUV formats?
These are two different things. MJPG is a video compression format, YUV is a color space.

11 years ago | 0

| accepted

Answered
Will it affect my result if I perform my camera calibration and image processing at different resolutions?
Yes it will. There is a way to transform the camera parameters to account for the change in resolution, but you are much better ...

11 years ago | 0

Answered
Need help with Phase Only Image Correlation
Image Processing Toolbox now includes the <http://www.mathworks.com/help/images/ref/imregcorr.html imregcorr> function, which do...

11 years ago | 0

Answered
Missing some block on Optical Flow SIMULINK?
There is an <www.mathworks.com/help/vision/ref/opticalflow.html Optical Flow block> in the Computer Vision System Toolbox.

11 years ago | 0

Answered
Help me with Phase Only Image Correlation!
Image Processing Toolbox now includes the <http://www.mathworks.com/help/images/ref/imregcorr.html imregcorr> function, which do...

11 years ago | 0

Answered
OPTICAL CHARACTER RECOGNITION (CONVERTING RESTAURANT RECEIPTS INTO TEXT)
You can use imcrop for cropping. But better yet, try the ocr() function in the Computer Vision System Toolbox.

11 years ago | 0

Answered
How can i process multiple images
You can use the imfindcircles() function in the Image Processing Toolbox.

11 years ago | 0

Answered
How to track how long a pixels moves for in a video
If you have the Computer Vision System Toolbox, try using <http://www.mathworks.com/help/vision/ref/vision.pointtracker-class.ht...

11 years ago | 0

Answered
In the Step 7 (Back projection) of stereo vision, there are two parameters (knownZs and knownDs) have been used. Can somebody please explain what are these parameters. Here is the 7th step as obtained from Matlab 2012b documentation:
This example assumes that you know distances to certain points in the scene. knownZs are those distances in meters. knownDs are ...

11 years ago | 0

Answered
How to rectify an image using camera parameters ?
There support for camera calibration in the Computer Vision System Toolbox. Please try the <http://www.mathworks.com/help/vision...

11 years ago | 0

Answered
how to do camera calibration?
Please try the <http://www.mathworks.com/help/vision/ug/find-camera-parameters-with-the-camera-calibrator.html Camera Calibrator...

11 years ago | 0

| accepted

Answered
Convert a character into a pixel matrix
If you have a recent version of MATLAB with the Computer Vision System Toolbox, you can use the insertText() function.

11 years ago | 0

Answered
About counting cars using Matlab
Here's an example <https://www.mathworks.com/help/vision/examples/detecting-cars-using-gaussian-mixture-models.html of detecting...

11 years ago | 0

| accepted

Answered
Object tracking in an rgb video
Try using vision.KalmanFilter. Since the object is moving in a circle, the constant acceleration motion model would be appropria...

11 years ago | 0

Answered
How to combine the process of object recognition/detcetion from start to finish?
Please take a look at this <http://www.mathworks.com/help/vision/examples/digit-classification-using-hog-features.html example o...

11 years ago | 0

Answered
How to match the features in a single image?
Unfortunately, matchFeatures() is not really suited for this task. You would have to write your own code to do the matching. You...

11 years ago | 0

Answered
Camera calibration toolbox and Matlab view
If you are still interested in calibrating cameras, please try the Camera Calibrator app in the Computer Vision System Toolbox.

11 years ago | 0

Answered
How to give different colors to each tracked object's bounding boxes in Kalman filter tracking?
If you are using the insertObjectAnnotation() function, you can set the color using the 'Color' parameter. Let's say you have 3 ...

11 years ago | 0

Answered
Detecting frames for which a face appears in a video...
If a face is not detected in a frame, bbox will be empty. So you can simply check if isempty(bbox) ... to handle the cas...

11 years ago | 0

Answered
Multi-Camera Calibration for Motion Tracking
I think you meant "translationVector" instead of "transposeMatrix". Is that right? The rotationMatrix and translationVector g...

11 years ago | 0

| accepted

Answered
Multi Face Detection-Tracking
A better way to do this is to concatenate all the detected corner points from all faces into one M-by-2 matrix and call the step...

11 years ago | 0

Answered
Detection of close objects using CascadeObjectDetector
The main issue here is that you need more training data. 50 positive samples and 40 negative images is very little, which is why...

11 years ago | 0

Answered
How to import stereoParams from the result of amcctoolbox?
Hello Michael, The simplest thing is to use the estimateCameraParameters() function to calibrate your stereo camera rig inste...

11 years ago | 0

Answered
drawing trajectory of detected people in video
There is currently no special built-in function to draw the trajectories. But once you have the points, you can use the insertS...

11 years ago | 0

Answered
How to find width and height of bounding box after using vision.blobanalysis?
In your example bbox is an M-by-4 matrix containing the bounding boxes represented as [x y w h]. First, you should delete the ro...

11 years ago | 0

Answered
how to use live video from webcam with foregrounddetector
You would either need to have the Image Acquisition Toolbox, or MATLAB version R2014a, which includes support for <http://www.ma...

11 years ago | 0

Load more