Réponse apportée
Remove entire row if sum is lesser than parameter
Try this: >> cell1(find(sum(cell2mat(cell1),2)>10),:)

plus de 10 ans il y a | 0

| A accepté

Réponse apportée
Plz tell me how to detect the face of a person in an image.I want matlab code for this.
If you have the Computer Vision System Toolbox, you can use the <http://www.mathworks.com/help/vision/ref/vision.cascadeobjectde...

plus de 10 ans il y a | 0

Réponse apportée
Detecting cars and vehicles in an image
If you have a set of labelled training images, you can use the |trainCascadeObjectDetector| function in the Computer Vision Syst...

plus de 10 ans il y a | 0

Réponse apportée
how to convert Low Resolution Image To High definition image?
You could look into techniques for super resolution. This is an entire field of research that uses multiple low resolution image...

plus de 10 ans il y a | 0

Réponse apportée
Finding pixel locations of labels
You're question could be clearer. We don't know what your end goal is so its difficult to give a good answer. If you just ne...

plus de 10 ans il y a | 0

Réponse apportée
bwconncomp returns a variable with 4 fields. one of them is pixelIdxlist. it contains the connected component list.how can we extract each component and show in different images.
You can use the |<http://www.mathworks.com/help/images/ref/regionprops.html regionprops>| function with |<http://www.mathworks.c...

plus de 10 ans il y a | 1

| A accepté

Réponse apportée
Manual median filter design
Well if you don't have the Image Processing Toolbox, I'm afraid you won't be able to use |blockproc|. In that case, you would ha...

plus de 10 ans il y a | 1

| A accepté

Réponse apportée
how to save the video frame as a image before detecting the next video frame in Face Detection and Tracking Using the KLT Algorithm?
If I understand your question correctly, all you need to do is have a call to |imwrite| inside the loop that writes the video fr...

plus de 10 ans il y a | 1

| A accepté

Réponse apportée
Extract HOG Features in Matlab
The |extractHOGFeatures| function was introduced in R2013b. If you have a version of the Computer Vision System Toolbox prior to...

plus de 10 ans il y a | 1

| A accepté

Réponse apportée
Cannot figure out why in this code, GPU imdilate takes significantly longer than its CPU counterpart.
Hello Alex, The reason you are noticing a slowdown for the GPU in comparison to the CPU is that the CPU implementation is hig...

plus de 10 ans il y a | 1

| A accepté

Réponse apportée
need code for segmentation based on traditional level set with re-initialization method.
Have you tried the <http://www.mathworks.com/help/images/ref/activecontour.html activecontour> function in the Image Processing ...

plus de 10 ans il y a | 0

Réponse apportée
I have a binary image. It contains some text part and some non text part. I want to separate text and non-text by using SVM in MATLAB. How can it be done?
You're going to have to read some literature and come up with a suitable approach: <https://www.google.com/search?q=recognize...

plus de 10 ans il y a | 0

Réponse apportée
Image processing: finding transfer function of histogram equalization
Or use the two argument syntax for |histeq|. [histIm,T] = histeq(grayImage); plot(T,'b-')

plus de 10 ans il y a | 1

Réponse apportée
Draw a marker: problems with PTS parameter
The coordinates may be integer valued, but are not stored in an integer datatype. You can see this if you do the following: ...

plus de 10 ans il y a | 1

| A accepté

Réponse apportée
What are Integral Images and how does it speed up processing in SURF?
I can give this a try. Look at Fig. 1 in the paper. For SURF, you convolve your image with the filters on the right (3rd and 4th...

plus de 10 ans il y a | 0

| A accepté

Réponse apportée
HELP...How to detect corners using Harris corner detection Algorithm?
Try the syntax with the 'ROI' parameter, something like this: corners = detectHarrisFeatures(Irgb2gray,'ROI',bboxes(1,:)); ...

plus de 10 ans il y a | 0

| A accepté

Réponse apportée
Can you please help me to write MATLAB code for eye detection ?
If you have the Computer Vision System Toolbox, you may want to try the vision.CascadeObjectDetector with one of the 'EyePairS...

plus de 10 ans il y a | 0

Réponse apportée
How can I get the reference background image for each instance of video
Does this mean you would like the part of the background behind whatever the foreground object is? I don't think getting that is...

plus de 10 ans il y a | 1

Réponse apportée
Extracting T features from an Image
Its not clear to me what exactly you want - feature points, an area or something else. But this should get you started nevert...

plus de 10 ans il y a | 0

| A accepté

Réponse apportée
how to scan image for specific pattern
Use normalized cross correlation (NCC) provided by the <http://www.mathworks.com/help/images/ref/normxcorr2.html normxcorr2> fun...

plus de 10 ans il y a | 1

Réponse apportée
bwboundaries - label each object with different color
The third input to label2rgb is the specification for zero-color, i.e. the background. You can specify a black background by ...

presque 11 ans il y a | 0

Réponse apportée
how to do logarithmic image normalization?
It sounds like you want to just take the log of the image and rescale the range from 0 to 255. This is something you might want ...

presque 11 ans il y a | 2

Réponse apportée
Average width of lines
Another (more complicated and time-consuming) approach to try is the following: 1. Use edge to find edges in the image. Adjus...

presque 11 ans il y a | 0

Réponse apportée
what method should i use to remove the noise?
Try a moving average filter using the smooth function. I think this function is part of the Curve Fitting Toolbox.

presque 11 ans il y a | 0

Réponse apportée
Viola and Jones gives very bad results
There could be a bazillion things wrong...who knows! You're going to have to do some digging here. Here are a couple of thing...

presque 11 ans il y a | 0

| A accepté

Réponse apportée
how to mask an image?
I = im2double(imread('..')); I = rgb2gray(I); J = ones(3)/9; K = conv2(I,J,'same');

presque 11 ans il y a | 0

| A accepté

Réponse apportée
Feature Extraction & Selection from a standard Face Image.
If you have the Computer Vision System Toolbox, you can use any of the following built-in feature extraction methods: detec...

presque 11 ans il y a | 1

Réponse apportée
Changing data type without changing bits
Firstly, 127 is the largest positive number that can be represented with the int8 type, because the first bit is a sign bit. You...

presque 11 ans il y a | 0

Réponse apportée
Filling objects that share a border
Steve Eddins just posted about this. Here's an alternative approach: <http://blogs.mathworks.com/steve/2013/09/05/defining-an...

presque 11 ans il y a | 0

Réponse apportée
Rotate the all center positions in the certain angle
If you have the Image Processing Toolbox, you can use the <http://www.mathworks.com/help/images/ref/affine2dclass.html affine2d>...

presque 11 ans il y a | 0

| A accepté

Charger plus