已回答
How to made a graph of two images?
Could you please be a bit more specific? Are you trying to determine whether two images contain the same object? Whether they a...

10 years 前 | 0

已回答
Error generating samples for cascade classifier training
Hi Ferran, Essentially, this error means that the first stage of your classifier has a very high false negative rate. In othe...

10 years 前 | 0

| 已接受

已回答
Is there any Matlab video tutorial that gives a full guide line on "how-to "creating an image database for training under supervised learning
I don't know about a video tutorial, but there is an <http://www.mathworks.com/help/vision/ug/label-images-for-classification-mo...

10 years 前 | 0

| 已接受

已回答
how can do a process on some images in a loop process while these images are not like a sequence?
If you have MATLAB R2014b or later and the Computer Vision System Toolobx, then try using <http://www.mathworks.com/help/vision/...

10 years 前 | 0

已回答
How to extract head region of a motocyclist wearing helmet from an image for further computation
Try |vision.CascadeObjectDetector| in the Computer Vision System Toolbox. If detecting the face does not work well because of th...

10 years 前 | 1

已回答
How to apply SVM train for group of pictures after extracting HOG features?
Hi Abu, The following <http://www.mathworks.com/help/vision/examples/digit-classification-using-hog-features.html example> sh...

10 years 前 | 0

已回答
How to obtain centroids from cascade object detector?
Hi William, The best you can do, is to get the centroid of the box. The bounding box format is |[x, y, widht, height]|. So th...

10 years 前 | 0

已回答
Camera Calibration/Parameters help - distance/pixel ratio?
Hi Yale, You can actually do better than a distance/pixel ratio. If you know the extrinsics between the camera and the plane,...

10 years 前 | 0

已回答
remove extra objects detect
You can use morphological operations for that. |imopen| will remove smaller blobs. |imclose| will fill in small gaps. If there a...

10 years 前 | 0

已回答
Accurate stereo reconstruction of high resolution image
Hi Meghana, I am glad that you are getting better results! There are a couple of things you can try to fill in the holes in y...

10 years 前 | 0

| 已接受

已回答
about the function trainCascadeObjectDetector
Hi Sun, You are correct. |trainCascadeObjectDetector| generates negative samples automatically from the negative images. The ...

10 years 前 | 0

| 已接受

已回答
background subtraction in video or image
You can use |vision.ForegroundDetector| object in the Computer Vision System Toolbox.

10 years 前 | 0

| 已接受

已回答
Error in image processing.
Hi Massimo, As Walter pointed out, detectFASTFeatures takes a grayscale image. Please use |rgb2gray| to convert |I| to graysc...

10 years 前 | 0

已回答
Calculation of distance (z-axis) to object using CVST
Hi Meghana, The first thing I see is that if your images are RGB, you are doing disparity only on the blue channel. The bette...

10 years 前 | 0

已回答
Detecing and Extracting Feature/ object in vedio processing
Hi Altaf, Assuming that your camera is stationary, I would suggest using |vision.ForegroundDetector| in the Computer Vision S...

10 years 前 | 0

已回答
I am getting this error while trying to store the unmatched features of a frame in brisk features extraction.. Please someone help
Hi Pritam, Walter is absolutely correct. You cannot have an array |binaryFeatures| objects. However, you can store them in a ...

10 years 前 | 0

已回答
Distance between the legs of a person in an image
If you get a reasonably good segmentation of the player, you can use |regionprops| to get a tight bounding box around the figure...

10 years 前 | 0

已回答
I am using MATLAB for my masters project and need to be able to locate and track shapes but I'm not sure how to do this. Any help would be much appreciated
If your camera is stationary, you can start with <http://www.mathworks.com/help/vision/examples/motion-based-multiple-object-tra...

10 years 前 | 0

已回答
Improper Disparity map obtained for stereo scene reconstruction
He Meghana, Your calibration looks fine. The problem here is that the wheel is too close to the cameras. The overlap betwee...

10 years 前 | 1

已回答
Slow during object tracking in video
Hi Mohammad, Try setting the. |ReturnedDataType| property of the video device object to |'uint8'|. It would also help to set...

10 years 前 | 0

已回答
Slow during object tracking in video
If you post your tracking code, that would be helpful. There are any number of things that can be contributing to the bad per...

10 years 前 | 0

已回答
problem in Matlab Computer vision example.
Hi Gopalkrishna, As a workaround, you can simply comment out the call to showMatchedFeatures. It is there for display only, ...

10 years 前 | 0

| 已接受

已回答
How to change the parameter width and height of bbox from vision.cascade object detector?
There are multiple things you can try to fix this problem: * The simplest approach is to enlarge the box returned by |vision....

10 years 前 | 1

| 已接受

已回答
how to find the landmark location in a face by EBGM algorithm
That depends on how you define landmarks. You can use |vision.CascadeObjectDetector| to detect eyes, nose, and mouth, which can ...

10 years 前 | 0

已回答
Hello Everyone!!!! I have a project to identify a moving object in night time video...I have to tell that whether a moving object is human ,animal ,car or any other thing....?????
Here's how you may go about <http://www.mathworks.com/help/vision/examples/motion-based-multiple-object-tracking.html detecting ...

10 years 前 | 0

已回答
how can i detect only the glass area for his spec
You can create another `vision.CascadeObjectDetector` object to detect the eyes, by setting |'ClassificationModel'| to |'Eye Pa...

10 years 前 | 0

| 已接受

已回答
how to use a point cloud in matlab
Hi Nada, The point cloud gives you 3D coordinates for (almost) every pixel, if you can detect the object in image 1, you can ...

10 years 前 | 0

已回答
What is the difference between Matlab's and OpenCV's undistortPoints?
I would check what |srcMat| looks like after the call to |put()|. You have created |srcMat| to be a 2x1 column vector, yet the o...

10 years 前 | 0

已回答
3D sparse reconstruction issues. Somehow I can't get the final scatter plot of the points to work.
Hello Riccardo, The first problem you have is that you are cropping the images. Once you do that, all your coordinates are of...

10 years 前 | 0

| 已接受

加载更多