統計
All
Feeds
回答済み
Scatter chart: How to adjust the transparency of marker?
Hello, Use this code: ax = axes; hold on; for i = 1:10 s = scatter(10*rand(1),10*rand(1),36,rand(1,3),'filled'); %T...
Scatter chart: How to adjust the transparency of marker?
Hello, Use this code: ax = axes; hold on; for i = 1:10 s = scatter(10*rand(1),10*rand(1),36,rand(1,3),'filled'); %T...
8年以上 前 | 0
回答済み
store variables with ascending names in array
Hello, Use this for creating as many variables as you want: for i=1:10 %I have taken 10 just for example and explanation...
store variables with ascending names in array
Hello, Use this for creating as many variables as you want: for i=1:10 %I have taken 10 just for example and explanation...
8年以上 前 | 0
| 採用済み
回答済み
How do I plot all my points in the same figure?
Hello sarah, You are getting 80+ figures because you have used figure in your for loop. This instruction always op...
How do I plot all my points in the same figure?
Hello sarah, You are getting 80+ figures because you have used figure in your for loop. This instruction always op...
8年以上 前 | 1
回答済み
Brain MRI DataSet (BRATS 2015)
Use this website: <http://www.oasis-brains.org/ OASIS> *What is OASIS?* _The Open Access Series of Imaging Studies (OASIS)...
Brain MRI DataSet (BRATS 2015)
Use this website: <http://www.oasis-brains.org/ OASIS> *What is OASIS?* _The Open Access Series of Imaging Studies (OASIS)...
8年以上 前 | 2
回答済み
Transform Circular Image For OCR
Hello Duane, You don't need radius to align these texts. Read this paper: <http://cennser.org/IJCVSP/finalPaper/030101.pd...
Transform Circular Image For OCR
Hello Duane, You don't need radius to align these texts. Read this paper: <http://cennser.org/IJCVSP/finalPaper/030101.pd...
8年以上 前 | 2
質問
open a transparent png and a jpg background together on a single graphical window
Hello everyone, I have 2 images. One is a normal jpg image (i.e. Background) and another is a .png image with the transparenc...
8年以上 前 | 1 件の回答 | 1
1
回答回答済み
compare two arrays of different length ( inequality)
Hello Elkhanssaa Marsali, Firstly, make the length of A and B equal by adding extra zeros to the array who is shorter. Aft...
compare two arrays of different length ( inequality)
Hello Elkhanssaa Marsali, Firstly, make the length of A and B equal by adding extra zeros to the array who is shorter. Aft...
8年以上 前 | 2
回答済み
extract object from image
Hello Sara, Read Image Analyst's answer on a similar question: <https://in.mathworks.com/matlabcentral/answers/214494-removin...
extract object from image
Hello Sara, Read Image Analyst's answer on a similar question: <https://in.mathworks.com/matlabcentral/answers/214494-removin...
8年以上 前 | 1
回答済み
Tracking Pedestrians from a Moving Car
Hello Pallavi, Do you have a reference video with no pedestrians in it? If yes, then it will be easy to find the size of p...
Tracking Pedestrians from a Moving Car
Hello Pallavi, Do you have a reference video with no pedestrians in it? If yes, then it will be easy to find the size of p...
8年以上 前 | 1
| 採用済み
質問
Save a figure as .bmp or .png WITHOUT background
Hello everyone, I have extracted this text from an image and removed all the extra parts apart from the text: <</matlabcen...
8年以上 前 | 2 件の回答 | 1
2
回答回答済み
LCH to RGB conversion
Hello danielle dan, Have a look at this: <https://in.mathworks.com/matlabcentral/fileexchange/57138-lch-%253C-%253E-rgb-conve...
LCH to RGB conversion
Hello danielle dan, Have a look at this: <https://in.mathworks.com/matlabcentral/fileexchange/57138-lch-%253C-%253E-rgb-conve...
8年以上 前 | 1
解決済み
Volume of a box
Given a box with a length a, width b, and height c. Solve the volume of the box.
8年以上 前
回答済み
How to connection bluetooth to matlab?
Hello donghyun kim, Type this in your command window and check whether all the required support packages are installed or not...
How to connection bluetooth to matlab?
Hello donghyun kim, Type this in your command window and check whether all the required support packages are installed or not...
8年以上 前 | 1
回答済み
How would I go about adding these scales to my figure?
Hello isaiah, Use this: I=imread('Amplitude2.0.jpg'); imagesc(I); colormap(gray(256)); colorbar; Input image: ...
How would I go about adding these scales to my figure?
Hello isaiah, Use this: I=imread('Amplitude2.0.jpg'); imagesc(I); colormap(gray(256)); colorbar; Input image: ...
8年以上 前 | 1
| 採用済み
回答済み
How can i crop multiple images
Hello shru, Use this code for properly cropping the regions and saving them in a folder: grayImage = imread('shapes.png')...
How can i crop multiple images
Hello shru, Use this code for properly cropping the regions and saving them in a folder: grayImage = imread('shapes.png')...
8年以上 前 | 2
| 採用済み
回答済み
How to find regions of any image using active contour
Hello Komal, Please make your code readable. And you forgot to attach your image as well. For detecting regions in an imag...
How to find regions of any image using active contour
Hello Komal, Please make your code readable. And you forgot to attach your image as well. For detecting regions in an imag...
8年以上 前 | 1
| 採用済み
回答済み
I have 2 "if" conditions and i need to apply it to multiple rows of data.
Hello Izza ismail, Your F is a variable. To get F same as D and T, your F should be an array of length 5. Hence you need to ...
I have 2 "if" conditions and i need to apply it to multiple rows of data.
Hello Izza ismail, Your F is a variable. To get F same as D and T, your F should be an array of length 5. Hence you need to ...
8年以上 前 | 1
| 採用済み
回答済み
I want to know harmonic progression code
Hello, If you have starting term(a) and common difference(d) then make a series till some definite number as: a, a+d, a+2d...
I want to know harmonic progression code
Hello, If you have starting term(a) and common difference(d) then make a series till some definite number as: a, a+d, a+2d...
8年以上 前 | 1
回答済み
I have a matrix and I am actually interested in obtaining a vector that will consist of the first column in each row that has values lower certain value.
Hello saint, Your question is not clear. Please edit it. By the description of your question I can guess that you want fir...
I have a matrix and I am actually interested in obtaining a vector that will consist of the first column in each row that has values lower certain value.
Hello saint, Your question is not clear. Please edit it. By the description of your question I can guess that you want fir...
8年以上 前 | 1
回答済み
How to get back an original image from its smoothed form applied by Gaussian smoothing filters?
Hello Mahmudul, Read this blog, it is very well explained: <https://blogs.mathworks.com/steve/2007/08/13/image-deblurring-int...
How to get back an original image from its smoothed form applied by Gaussian smoothing filters?
Hello Mahmudul, Read this blog, it is very well explained: <https://blogs.mathworks.com/steve/2007/08/13/image-deblurring-int...
8年以上 前 | 1
回答済み
How can i rotate an ellipse?
Hello, Use this: clc; xc=50; %xCenter yc=50; %yCenter a=25; %xRad b=100; %yRad m = 1000; x = zeros(m,1); y = zero...
How can i rotate an ellipse?
Hello, Use this: clc; xc=50; %xCenter yc=50; %yCenter a=25; %xRad b=100; %yRad m = 1000; x = zeros(m,1); y = zero...
8年以上 前 | 3
| 採用済み
回答済み
how can I delete some rows from 2-D array?
Hello Aniee, I tried this, it works as per your requirement. copy and paste this in command window: A=[ 0 2; 2 3; 0 5;...
how can I delete some rows from 2-D array?
Hello Aniee, I tried this, it works as per your requirement. copy and paste this in command window: A=[ 0 2; 2 3; 0 5;...
8年以上 前 | 1
回答済み
how can i convert decimal to hex or another basis without use dec2hex ?
Hello Mohammad Imam Malik, I guess you are asking for the principle behind these conversions. Read this: Steps:(Decimal...
how can i convert decimal to hex or another basis without use dec2hex ?
Hello Mohammad Imam Malik, I guess you are asking for the principle behind these conversions. Read this: Steps:(Decimal...
8年以上 前 | 2
回答済み
Save object's boundary as coordinate arrays.
Hello yaswanth, As you have not shared how you have traced object boundary, it is a bit difficult to answer you question effi...
Save object's boundary as coordinate arrays.
Hello yaswanth, As you have not shared how you have traced object boundary, it is a bit difficult to answer you question effi...
8年以上 前 | 1
回答済み
How to create an RGB image?
Hello, As far as I know, there is no direct function to do this. But if you want you can create a user defined function to ra...
How to create an RGB image?
Hello, As far as I know, there is no direct function to do this. But if you want you can create a user defined function to ra...
8年以上 前 | 2
回答済み
How to move "datatip" to a desired location in matlab plots??
Hello Pankaj, Click on Data-Cursor and move it wherever you want on graphical window. It clearly shows attributes of that poi...
How to move "datatip" to a desired location in matlab plots??
Hello Pankaj, Click on Data-Cursor and move it wherever you want on graphical window. It clearly shows attributes of that poi...
8年以上 前 | 1
| 採用済み
回答済み
I am using a function and i want to update counter on each function call and use value of that counter for some condition.But every function call counter initialize to zero and if i use counter=counter+1 it always give counter =1 so how to do this?
Hello Amit, Keep your initialization on top of the code (i.e. outside of loop if any). Check if it is in any loop which i...
I am using a function and i want to update counter on each function call and use value of that counter for some condition.But every function call counter initialize to zero and if i use counter=counter+1 it always give counter =1 so how to do this?
Hello Amit, Keep your initialization on top of the code (i.e. outside of loop if any). Check if it is in any loop which i...
8年以上 前 | 1










