Respondida
Regionprops returns NaN as centroid value for a Label
The regionprops function tries searching for the component with label 16, which you seem to have filtered out. So, this componen...

casi 13 años hace | 0

Respondida
How to convert binary image to 2D triangulation?
Try using bwperim and delaunay. Something like this: BW = bwperim(im); [x,y] = find(BW); tri = delaunay(x,y); Hope...

casi 13 años hace | 0

Respondida
xlswrite without losing precision
You should not be seeing that. I tried the following and the Excel cell shows me the full value: >> x x = ...

casi 13 años hace | 0

Respondida
How do I obtain a composite of two grayscale images?
Have you tried this: [C,RC] = imfuse(A,RA,B,RB,'blend');

casi 13 años hace | 0

| aceptada

Respondida
comparison of two histograms using pdist2
You almost got it right. Just transpose the histograms. So you're last command should be d = pdist2(c1',c2');

casi 13 años hace | 3

| aceptada

Respondida
how to count number of cars,bikes in an image using matlab
Here's an approach you could try: 1. Use the <http://www.mathworks.com/help/vision/ref/traincascadeobjectdetector.html trainC...

casi 13 años hace | 0

Respondida
how otsu multithresh works?
Look at the paper referenced in the documentation page for multithresh. The link is below: <http://ieeexplore.ieee.org/stamp/...

casi 13 años hace | 1

Respondida
What do the output vectors in optical flow technique of live motion detection indicate?
V and H are the vertical and horizontal components of optic flow. They represent the horizontal and vertical components of motio...

casi 13 años hace | 0

| aceptada

Respondida
How to get the 4 pts for mouth in face parts detection????
img = imread('f5.jpg'); mouthDetector = vision.CascadeObjectDetector('Mouth'); bbox = step(mouthDetector,I);

casi 13 años hace | 0

Respondida
how to get the facial feature points from the faces???
You can feed the bounding box of the detected face to any one of the feature detectors in the Computer Vision System Toolbox: <h...

casi 13 años hace | 0

Respondida
can blkproc function is used in LBP?
You can use the <http://www.mathworks.com/help/images/ref/nlfilter.html nlfilter> function to implement this. It will be slow, t...

casi 13 años hace | 0

| aceptada

Respondida
feature extraction using Local Line Binary Patterm
From what I can tell of the reference you provided, it should be easy enough to use an existing implementation of local binary p...

casi 13 años hace | 0

| aceptada

Respondida
Manual Feature Extraction For Image Mosaicking/Panaroma
I wouldn't move to manual feature extraction so soon. I don't know enough to comment on whether that is a good option. Have ...

casi 13 años hace | 0

Respondida
How to match features
After having detected SURF feature descriptors from both images, you should call the <http://www.mathworks.com/help/releases/R20...

casi 13 años hace | 0

| aceptada

Respondida
How to obtain the translation and rotation from the given affine transformation matrix
Affine transformations involve a rotation, translation, scale and shear. It may not be possible to recover only the translation/...

casi 13 años hace | 1

| aceptada

Respondida
Reshape array for 256 by 256 matrix showing 16 by 256
This is what you should do for an image with 65536 pixels that you want to make square: nelem = numel(A); side = sqrt...

alrededor de 13 años hace | 0

Respondida
how to calculate translation and rotation of points of image from 2 consecutive frames
Given that you have already determined SURF features in both frames, you can use the <http://www.mathworks.com/help/vision/ref/m...

alrededor de 13 años hace | 0

Respondida
Matlab is making small errors during computations
You haven't given much information, but that's just floating point precision for you. There's tonnes of articles describing this...

alrededor de 13 años hace | 0

Respondida
How to detect larger corners in an image?
I'd suggest trying to play around with the 'FilterCoefficients' and 'QualityLevel' parameters. Increasing the kernel width an...

alrededor de 13 años hace | 0

| aceptada

Respondida
playing card extraction and identification
Look at the second demo from the following File Exchange submission: <http://www.mathworks.com/matlabcentral/fileexchange/356...

alrededor de 13 años hace | 0

Respondida
conversion of pixel values in a gray scale image
im(im==0) = 255;

alrededor de 13 años hace | 0

| aceptada

Respondida
How to identify object inside an image and find its position in that image
I think this blog post by Steve Eddins should be directly relevant to what you're trying to achieve: <http://blogs.mathworks....

alrededor de 13 años hace | 0

Respondida
how to track two objects from a given video?
Try using some of the techniques described here: <http://www.mathworks.com/help/vision/gs/object-detection-and-tracking.html#bt...

alrededor de 13 años hace | 0

Respondida
need code which created 'stopSigns.mat'
You don't really need a mat file. You need ground truth data for training. So, you need a set of images with bottles in them and...

alrededor de 13 años hace | 1

| aceptada

Respondida
how to find distance between 2 points of a image
Use the <http://www.mathworks.com/help/images/ref/imdistline.html imdistline> function.

alrededor de 13 años hace | 0

| aceptada

Respondida
how to define coordinate of SURF Points?
The SURFPoints object contains a data member called Location, which contains the co-ordinate of the point. For example, in th...

alrededor de 13 años hace | 1

Respondida
Colorbar is to large in colormapeditor when using imshow
Dominic, I don't think this is a bug. The image command gives a 64x3 colormap, whereas the imshow command gives a 256x3 colorma...

alrededor de 13 años hace | 0

| aceptada

Respondida
Selecting important features from a very large pool
If you have the latest release of the Computer Vision System Toolbox, there's a way to train a classifier using the Viola-Jones ...

alrededor de 13 años hace | 0

Respondida
Shape Based Image Retrieval
Are you talking about this paper? "Content Based Image Retrieval Using Color, Texture and Shape Features", Hiremath, Pujari ...

alrededor de 13 años hace | 0

Respondida
Help me with matlab code for lane detection and object detection in relation to vehicle.
Have a look at this: <http://www.mathworks.com/products/computer-vision/examples.html?file=/products/demos/shipping/vision/vi...

alrededor de 13 años hace | 0

Cargar más