질문


Can anyone tell what does this histogram interpret ?
<</matlabcentral/answers/uploaded_files/9114/error_histogram.jpg>>

10년 초과 전 | 답변 수: 1 | 0

1

답변

질문


How to display figure of neural network structure ?
I have made a neural network and saved in net.mat Now I want to see its structure like shown below. <</matlabcentral/...

거의 11년 전 | 답변 수: 1 | 0

1

답변

질문


What formula MATLAB uses to find centroid of image?
I know, we can get centroid by writing following: stat = regionprops(BW, 'Centroid') ; c = stat.Centroid But how can...

거의 11년 전 | 답변 수: 1 | 0

1

답변

질문


How much number of hidden neurons should I take in nprtool ?
<</matlabcentral/answers/uploaded_files/8184/number_of_hidden_neurons.png>>

거의 11년 전 | 답변 수: 1 | 0

1

답변

질문


How many times should I re-train my images in nprtool ?
What should be the range of results (e.g Target MSE)? <</matlabcentral/answers/uploaded_files/8183/nprtool.png>>

거의 11년 전 | 답변 수: 2 | 0

2

답변

질문


How to generate matrix using MATLAB ?
How to generate matrix of 24 * 96 order using MATLAB as shown in figure. <</matlabcentral/answers/uploaded_files/8178...

거의 11년 전 | 답변 수: 4 | 0

4

답변

질문


Why I am getting Error?
*CODE* clear all; close all; imtool close all; clc; imag1 = imread('C:\Users\Explorer\Documents\MATLAB\ASL_signs\A.jpg'); ...

거의 11년 전 | 답변 수: 1 | 0

1

답변

질문


What's wrong with my feature extraction code?
I am getting same descriptors for different images. I tested it by: image1 = imread('C:\Users\Explorer\Documents\MATLAB\AS...

거의 11년 전 | 답변 수: 2 | 0

2

답변

질문


How to code up Neural Networks ?
I am new to Neural Networks. I have to code up whatever is written in below image. <</matlabcentral/answers/uploaded_files/8...

거의 11년 전 | 답변 수: 3 | 0

3

답변

질문


Not getting 360 values from Histogram
I should get 360 values of histogram of distances from centroid (signature of object) as mentioned here : http://www.2shared.com...

거의 11년 전 | 답변 수: 1 | 0

1

답변

질문


How to find signature of the object for the given binary image?
My binary images are like this. <</matlabcentral/answers/uploaded_files/8012/figure1.jpg>> _______________________________...

거의 11년 전 | 답변 수: 2 | 0

2

답변

질문


Problem in saving figure
hgexport(gcf, 'figure1.jpg', hgexport('factorystyle'), 'Format', 'jpeg'); By using above function I am saving figure which is...

거의 11년 전 | 답변 수: 1 | 0

1

답변

답변 있음
is matlab work with cctv camra?????????
Yeah, you can interface CCTV camera's with MATLAB.

거의 11년 전 | 0

질문


Why webcam preview in MATLAB is like a inverted mirror?
When I capture image from webcam using YouCam Software, my right hand in image is on right side but when I capture image from we...

거의 11년 전 | 답변 수: 1 | 0

1

답변

질문


Which variable stores contour image ?
<</matlabcentral/answers/uploaded_files/7862/output.png>> close all; clear all; clc; %Read the image, and cap...

거의 11년 전 | 답변 수: 2 | 0

2

답변

질문


Implementation of Snake Algorithmm for finding contours of Hand
I am following a research paper in which contour of hand is determined as shown in Figure 4. <</matlabcentral/answers/uplo...

거의 11년 전 | 답변 수: 3 | 0

3

답변

질문


How to place image one after the other?
Hello! I have 24 images and I would like place them one after the other as shown below. How can I do so using MATLAB? <</matl...

거의 11년 전 | 답변 수: 1 | 0

1

답변

질문


How to create a bounding box in webcam preview and capture image in that bounding box?
This is how I want to do it: 1. Determine positions in webcam preview 2. Create bounding box on that positions in webcam...

거의 11년 전 | 답변 수: 3 | 0

3

답변

질문


Matching signs Using SURF
I am trying to match signs of American Sign Language using SURF. <</matlabcentral/answers/uploaded_files/7557/output.jpg>> ...

거의 11년 전 | 답변 수: 1 | 0

1

답변

질문


Positive and Negative Image
What are positive and negative images? I read it while studying adaboost algorithm.

거의 11년 전 | 답변 수: 1 | 0

1

답변

질문


Can anyone help me in coding algorithms relating to AdaBoost and SIFT?
The algorithms are <</matlabcentral/answers/uploaded_files/7397/algorithms%20to%20code.jpg>> Or if you can refer ...

거의 11년 전 | 답변 수: 1 | 0

1

답변

질문


What are training Images?
How to train images using classifiers?

거의 11년 전 | 답변 수: 2 | 0

2

답변

답변 있음
i need to crop an image after face detection
May be this could help you. http://www.mathworks.com/matlabcentral/answers/112917-how-to-detect-hand

거의 11년 전 | 0

질문


FEATURE EXTRACTION OF CROPPED IMAGE
I am following this: <</matlabcentral/answers/uploaded_files/7148/feature%20extraction.png>> X=imread('croppedImage.jp...

거의 11년 전 | 답변 수: 0 | 0

0

답변

답변 있음
Need MATLAB code for image segmentation
Here it is http://www.mathworks.com/matlabcentral/fileexchange/25157-image-segmentation-tutorial-blobsdemo Code is written...

거의 11년 전 | 0

| 수락됨

답변 있음
How to label objects based on their area?
http://www.mathworks.com/matlabcentral/answers/112917-how-to-detect-hand Have a look on answer of Image Analyst. He has label...

거의 11년 전 | 0

질문


Facing error in combining two m-files
I have two codes having names skin_detection5.m and hand_detection4.m I am trying to combine these two m-files but getting er...

거의 11년 전 | 답변 수: 1 | 0

1

답변

질문


How to detect hand?
*INPUT IMAGE:* <</matlabcentral/answers/uploaded_files/7032/a_ASL3.JPG>> *MATLAB CODE* (also attached): clear all...

거의 11년 전 | 답변 수: 2 | 1

2

답변

질문


How to download a particular function of MATLAB ?
I want to download "estimateGeometricTransform" function. From where can I download it? Its a function of Computer Vision Too...

거의 11년 전 | 답변 수: 2 | 0

2

답변

질문


How a construct feature vector in MATLAB?
If the given parameters are area and centroid.

거의 11년 전 | 답변 수: 1 | 0

1

답변

더 보기