回答済み
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...

10年以上 前 | 0

回答済み
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...

10年以上 前 | 0

回答済み
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 = ...

10年以上 前 | 0

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

10年以上 前 | 0

| 採用済み

回答済み
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');

10年以上 前 | 3

| 採用済み

回答済み
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...

10年以上 前 | 0

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

10年以上 前 | 1

回答済み
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...

10年以上 前 | 0

| 採用済み

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

10年以上 前 | 0

回答済み
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...

10年以上 前 | 0

回答済み
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...

10年以上 前 | 0

| 採用済み

回答済み
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...

10年以上 前 | 0

| 採用済み

回答済み
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 ...

10年以上 前 | 0

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

11年弱 前 | 0

| 採用済み

回答済み
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/...

11年弱 前 | 1

| 採用済み

回答済み
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...

11年弱 前 | 0

回答済み
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...

11年弱 前 | 0

回答済み
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...

11年弱 前 | 0

回答済み
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...

11年弱 前 | 0

| 採用済み

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

11年弱 前 | 0

回答済み
conversion of pixel values in a gray scale image
im(im==0) = 255;

11年弱 前 | 0

| 採用済み

回答済み
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....

11年弱 前 | 0

回答済み
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...

11年弱 前 | 0

回答済み
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...

11年弱 前 | 1

| 採用済み

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

11年弱 前 | 0

| 採用済み

回答済み
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...

11年弱 前 | 1

回答済み
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...

11年弱 前 | 0

| 採用済み

回答済み
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 ...

11年弱 前 | 0

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

11年弱 前 | 0

回答済み
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...

11年弱 前 | 0

さらに読み込む