Feeds
답변 있음
pixel by pixel squaring of image?
outImage = zeros(size(inputImage)); for i = 1 : size(inputImage, 1) for j = 1 : size(inputImage, 2) o...
pixel by pixel squaring of image?
outImage = zeros(size(inputImage)); for i = 1 : size(inputImage, 1) for j = 1 : size(inputImage, 2) o...
8년 초과 전 | 1
답변 있음
Combine two cell array of different dimension
Try this A = {1,2}; B = {3, 5, 6}; C = horzcat(A, B) ans = C = {1 2 3 5 6}
Combine two cell array of different dimension
Try this A = {1,2}; B = {3, 5, 6}; C = horzcat(A, B) ans = C = {1 2 3 5 6}
9년 초과 전 | 1
답변 있음
Launch a file with a popupmenu without Switch
If it is a script, Just include the file name " |ME_1| " in the editor window. Like this: str = str2double(get(handles.m...
Launch a file with a popupmenu without Switch
If it is a script, Just include the file name " |ME_1| " in the editor window. Like this: str = str2double(get(handles.m...
10년 초과 전 | 0
질문
Find the increasing and decreasing point in array?
I have an array. Which is increasing. At one point it starts decreases. This trend starts repeating many times in array. How ...
거의 11년 전 | 답변 수: 2 | 0
2
답변질문
How to smoothen the edges?
In the following Hand Image, How to smooth the edges in the indicated region? <</matlabcentral/answers/uploaded_files/8389/sa...
거의 11년 전 | 답변 수: 2 | 0
2
답변답변 있음
count the number of objects in the eight.tif.
Check this out I = imread('eight.tif'); imshow(I) level = graythresh(I); BW = im2bw(I,level); imshow(...
count the number of objects in the eight.tif.
Check this out I = imread('eight.tif'); imshow(I) level = graythresh(I); BW = im2bw(I,level); imshow(...
거의 11년 전 | 0
| 수락됨
답변 있음
face-recognition code in matlab
If you have MATLAB R2013a, Then you can find the face detector which comes inbuilt with MATLAB. % Create a cascade detector...
face-recognition code in matlab
If you have MATLAB R2013a, Then you can find the face detector which comes inbuilt with MATLAB. % Create a cascade detector...
거의 11년 전 | 1
질문
kmeans Segmentation Clarification for color images
I had segmented the attached image using kmeans. After kmeans color image segmentation, when I had plotted the cluster centers, ...
거의 11년 전 | 답변 수: 2 | 0
2
답변답변 있음
How to count the number of object present in binary image?
You can use |bwconncomp|. cc = bwconncomp(yourBinaryImage,4); number = cc.NumObjects;
How to count the number of object present in binary image?
You can use |bwconncomp|. cc = bwconncomp(yourBinaryImage,4); number = cc.NumObjects;
거의 11년 전 | 4
답변 있음
How to plot the 4th dimension of an array?
Extract the 4th dimension first. fourthDimMatrix = allMatrix(:,:,4) Then try |plot| function
How to plot the 4th dimension of an array?
Extract the 4th dimension first. fourthDimMatrix = allMatrix(:,:,4) Then try |plot| function
거의 11년 전 | 0
답변 있음
how to take a value from matlab workspace
Try |fwrite| <http://www.mathworks.in/help/matlab/ref/serial.fwrite.html fwrite>
how to take a value from matlab workspace
Try |fwrite| <http://www.mathworks.in/help/matlab/ref/serial.fwrite.html fwrite>
거의 11년 전 | 0
답변 있음
i have 1000*1000 pixel image.how can i convert it into m*n(400*300) pixel image.
outputImage = imresize(inputImage,[400 300]);
i have 1000*1000 pixel image.how can i convert it into m*n(400*300) pixel image.
outputImage = imresize(inputImage,[400 300]);
거의 11년 전 | 0
답변 있음
find position of the matrix
x(1), x(2) ... x(end), Gives you each every value in the array.
find position of the matrix
x(1), x(2) ... x(end), Gives you each every value in the array.
대략 11년 전 | 0
| 수락됨
답변 있음
how to do real image acquisition using webcam?
After Connecting Webcam with your computer, Just type |imaqtool| in your command window. Refresh the Hardware Browser to find yo...
how to do real image acquisition using webcam?
After Connecting Webcam with your computer, Just type |imaqtool| in your command window. Refresh the Hardware Browser to find yo...
대략 11년 전 | 0
답변 있음
Use of the Pop-up menu in a GUI
get(handles.Vt_Callback,'Value') This returns the value. Try using: get(handles.Vt_Callback,'String')
Use of the Pop-up menu in a GUI
get(handles.Vt_Callback,'Value') This returns the value. Try using: get(handles.Vt_Callback,'String')
대략 11년 전 | 0
답변 있음
To Know the total number of pixels which belongs to one color
I = imread('peppers.png'); RedPlane = I(:,:,1); GreenPlane = I(:,:,2); BluePlane = I(:,:,3); This how you may extr...
To Know the total number of pixels which belongs to one color
I = imread('peppers.png'); RedPlane = I(:,:,1); GreenPlane = I(:,:,2); BluePlane = I(:,:,3); This how you may extr...
11년 초과 전 | 0
답변 있음
randomly access a file in matlab
Please specify the type of data you are reading from the current folder in this line. f = dir(['myfolder\*.jpg']); or an...
randomly access a file in matlab
Please specify the type of data you are reading from the current folder in this line. f = dir(['myfolder\*.jpg']); or an...
11년 초과 전 | 0
질문
Warning in reading data from serial port.
I'm trying to read a single character 'A' from serial port, But it is issuing a warning always. CharVar = fscanf(SerialObj,...
11년 초과 전 | 답변 수: 1 | 0
1
답변질문
Communication with PIC Microcontroller
I have designed a face recognition system. If the face is recognized, I'm sending a character |'a'| via serial port to microcont...
11년 초과 전 | 답변 수: 1 | 1
1
답변질문
How to assign classes for group of images in a classifier?
I'm developing a Finger knuckle print biometric system. For that I had extracted SIFT and SURF Features for the image. I am havi...
11년 초과 전 | 답변 수: 1 | 0
1
답변답변 있음
How to match features
This |showMatchedFeatures| feature was available only in MATLAB R2013a and not in any lower versions.
How to match features
This |showMatchedFeatures| feature was available only in MATLAB R2013a and not in any lower versions.
11년 초과 전 | 0
질문
MATLAB R2013a is not installing.
I'm trying to install MATLAB R2013a. I'm getting error while installing. When I invoke the "setup.exe" program in the setup, it ...
11년 초과 전 | 답변 수: 1 | 0
1
답변질문
Creating a 2-D matrix from a 1-D Array?
Considering that I have an array of |A = [150 11 12 134 130 152]|. How to replicate these elements in this array to get a matri...
11년 초과 전 | 답변 수: 3 | 0
3
답변질문
How to draw this figure?
I have this figure. I have the color portion. That is they are surface plot that are visible from the top. Also I plotted those ...
11년 초과 전 | 답변 수: 1 | 0
1
답변질문
How to draw this figure?
I have these figures with the equation also shown. I tried making this. But I did not got the expected result. Please give me so...
11년 초과 전 | 답변 수: 1 | 0
1
답변답변 있음
what is the formula used for Approximation quality metrics(measerr)?
I see a formula for the same in MATLAB help. <http://www.mathworks.in/help/wavelet/ref/measerr.html Try this.>
what is the formula used for Approximation quality metrics(measerr)?
I see a formula for the same in MATLAB help. <http://www.mathworks.in/help/wavelet/ref/measerr.html Try this.>
11년 초과 전 | 0
답변 있음
Can GUI files share data?
Yes, You can do. Declare the variables which you need to plot as global. Then you just call the other file. There you can plot.
Can GUI files share data?
Yes, You can do. Declare the variables which you need to plot as global. Then you just call the other file. There you can plot.
11년 초과 전 | 0
질문
How can I convert MATLAB Code to VHDL Code?
I have a MATLAB Code. Is it possible to convert into VHDL Code?
11년 초과 전 | 답변 수: 4 | 0
4
답변답변 있음
How can i change image file format from .jpg to .tiff?
Use |imwrite| command to write images in the required format.
How can i change image file format from .jpg to .tiff?
Use |imwrite| command to write images in the required format.
거의 12년 전 | 0
답변 있음
how can i implement edge detection ?
Refer <http://www.mathworks.in/help/images/ref/edge.html here>. For more details.
how can i implement edge detection ?
Refer <http://www.mathworks.in/help/images/ref/edge.html here>. For more details.
거의 12년 전 | 0