A répondu
Error message in Intensity-Based Automatic Image Registration
|imregister| expects the 2-D images to be in grayscale. It does not use color information as part of the registration. If you...

plus de 9 ans il y a | 2

A répondu
Why does bwperim give wrong perimeter?
The circle you are trying to measure is not a perfect circle, so technically you can't use |2*pi*radius| as the formula for peri...

plus de 9 ans il y a | 0

| A accepté

A répondu
Problem on "assignDetectionsToTracks",thank you!
You need to upgrade to R2012b or higher. |assignDetectionsToTracks| was introduced in R2012b.

plus de 9 ans il y a | 1

A répondu
Writing a program to detect motion in a still video.
If you have the Computer Vision System Toolbox, you can use the |vision.ForegroundDetector| object. <http://www.mathworks.com...

plus de 9 ans il y a | 0

A répondu
Features to be considered in classifying currency images?
use google: <http://www.ijcsit.com/docs/Volume%204/Vol4Issue1/ijcsit2013040129.pdf>

plus de 9 ans il y a | 0

A répondu
Methods for object detection during sudden illumination change..
Go through the documentation links on this page: <http://www.mathworks.com/help/vision/object-detection.html> There are ex...

plus de 9 ans il y a | 0

A répondu
How can I read huge amount of image files and take the corresponding histogram data to a matrix in order?
If you have the parallel computing toolbox, you could try something like this: allHists = zeros(256,numel(file)); parpoo...

plus de 9 ans il y a | 2

A répondu
in "fun" have access to the center values of the "colfilt" kernels?
You're going to have to store the linear index of where you expect the pixel to be and access that element of the array passed i...

plus de 9 ans il y a | 0

| A accepté

A répondu
How to find out discontinuous edges?
For |'canny'|, have you tried changing the sensitivity thresholds or the standard deviation? The standard deviation allows you t...

plus de 9 ans il y a | 0

A répondu
How to train a group of images Using SVM classifier ?
I don't know anything about the code you're using, but if you would like to use an SVM classifier, look at this <http://www.m...

plus de 9 ans il y a | 0

A répondu
How to detect eyes and mouth on a single image in MATLAB?
%Read the input image I = imread('extract1.png'); %To detect Mouth MouthDetect = vision.CascadeObjectDetector('M...

plus de 9 ans il y a | 1

| A accepté

A répondu
How can I get median filtered background image from sequence of video frames? I am trying to store the corresponding pixels values of sequence of frames in respective cells and then to find the median value, but I cannot get values in cells.
Why is |E| a cell array and why are you using |cellfun|? Try using the <http://www.mathworks.com/help/images/ref/medfilt2.ht...

plus de 9 ans il y a | 0

A répondu
Clustering performance and validation
Try this for DB Index: <http://www.mathworks.com/help/stats/clustering.evaluation.daviesbouldinevaluationclass.html Davies-Boul...

plus de 9 ans il y a | 0

A répondu
errors in using RESHAPE FUNCTION......PLEASE HELP ME.
b = imresize(a,[128 128]); z = b(:);

plus de 9 ans il y a | 0

| A accepté

A répondu
Help with image thresholding?
Try working in the HSV space. Here's what I got I = imread('http://www.mathworks.com/matlabcentral/answers/uploaded_files/...

plus de 9 ans il y a | 0

A répondu
Sobel Operator no threshold
[Gx,Gy] = imgradientxy(im,'sobel');

plus de 9 ans il y a | 0

A répondu
RGB to opponent color space code
From what I can tell, this should do it: %load RGB image im = im2double(imread('peppers.png')); %extract each chann...

presque 10 ans il y a | 3

| A accepté

A répondu
How to find the center point of the object?
Look at the |'Centroid'| property of the <http://www.mathworks.com/help/images/ref/regionprops.html regionprops> function.

presque 10 ans il y a | 1

A répondu
HELP, How to do real time face tracking in matlab?
You can use |imaqhwinfo| to see which cameras are connected to your machine and then accordingly use the |videoinput| command to...

presque 10 ans il y a | 0

| A accepté

A répondu
how can I make this code faster on the GPU?
There is no operation in the above code that can take advantage of the GPU. All you are doing is looping over every 4th pixel se...

presque 10 ans il y a | 4

A répondu
How can I detect and recognize road traffic signs ?? using matlab
Here's a couple of links to examples that might help: <http://www.mathworks.com/help/vision/examples/traffic-warning-sign-rec...

presque 10 ans il y a | 0

| A accepté

A répondu
gpuArray takes more time than CPU - imrotate
A couple of questions in helping you answer the question: 1. Which graphics card do you have? GPU performance is highly depen...

presque 10 ans il y a | 1

A répondu
how ot code gui scrollbar ?
Use the <http://www.mathworks.com/help/matlab/ref/uicontrol.html uicontrol> function with |'slider'| as the first input. Look at...

presque 10 ans il y a | 0

A répondu
kindly mention the standard testing technique for face recognition system???
The question is unclear and the description is unrelated to the question. You have compressed images, but want to test a facial ...

presque 10 ans il y a | 0

A répondu
kmeans Segmentation Clarification for color images
Your cluster centers are not in the XY co-ordinate space. They are in the AB color space. So |cluster_center| does not refer to ...

presque 10 ans il y a | 0

| A accepté

A répondu
How can i remove the black color from inside the white curve boundary
Use |imfill| with the |'holes'| option. % read the image im = imread('http://www.mathworks.com/matlabcentral/answe...

presque 10 ans il y a | 1

| A accepté

A répondu
32 bits effect on tif images
If you're problem is that you are converting to |uint32| with a direct cast like |uint32(im)| and then calling |imshow| for disp...

presque 10 ans il y a | 0

A répondu
how to divide the image into overlapping blocks?
You could use the <http://www.mathworks.com/help/images/ref/blockproc.html blockproc> function. You would need to specify a |'Bo...

presque 10 ans il y a | 2

A répondu
less connected pixels should be removed from image
Your definition of 'less connected' is not clear to me. However, if you want just the big round component, you can use |regionpr...

presque 10 ans il y a | 0

| A accepté

A répondu
how to form a gaussian pyramid from a image
Use <http://www.mathworks.com/help/images/ref/impyramid.html impyramid>.

presque 10 ans il y a | 0

| A accepté

Charger plus