![photo](/responsive_image/150/150/0/0/0/cache/matlabcentral/profiles/10264504_1565668067262.jpg)
awezmm
2017년부터 활동
Followers: 0 Following: 0
Feeds
문제를 풀었습니다
The Piggy Bank Problem
Given a cylindrical piggy bank with radius g and height y, return the bank's volume. [ g is first input argument.] Bonus though...
3년 초과 전
질문
Missing link for Instance segmentation?
On https://www.mathworks.com/help/vision/ug/getting-started-with-mask-r-cnn-for-instance-segmentation.html it says to see an exa...
4년 초과 전 | 답변 수: 1 | 0
1
답변질문
C code generation symbols not found linker error
I generated C code for my matlab functions and created a package by following the instructions at Package Code for Other Develo...
4년 초과 전 | 답변 수: 2 | 0
2
답변질문
Separating overlapping lines in image
I have lots images with one line or multiple overlapping lines. I want to determine if an image has overlapping lines and then s...
4년 초과 전 | 답변 수: 0 | 0
0
답변질문
Fast Fourier Transform component detection issue
I want to detect the different components in a signal. Here is an example of a signal: Fs = 1000; % Sampling freque...
4년 초과 전 | 답변 수: 1 | 0
1
답변답변 있음
Can I change the location of Malab preference folder via an environment variable?
Naum, https://www.mathworks.com/matlabcentral/answers/93696-how-do-i-change-the-matlab-preferences-directory-location Thank ...
Can I change the location of Malab preference folder via an environment variable?
Naum, https://www.mathworks.com/matlabcentral/answers/93696-how-do-i-change-the-matlab-preferences-directory-location Thank ...
대략 5년 전 | 0
| 수락됨
답변 있음
how can i use variables as part of a address?
You can use the fullfile function to build a path from different parts: https://www.mathworks.com/help/matlab/ref/fullfile.html...
how can i use variables as part of a address?
You can use the fullfile function to build a path from different parts: https://www.mathworks.com/help/matlab/ref/fullfile.html...
대략 5년 전 | 1
| 수락됨
답변 있음
Detect black pixels in arbitrary region of a an image
if img is the variable name of your original rgb image: redChannel = img(:,:,1); greenChannel = img(:,:,2); blueChannel = i...
Detect black pixels in arbitrary region of a an image
if img is the variable name of your original rgb image: redChannel = img(:,:,1); greenChannel = img(:,:,2); blueChannel = i...
대략 5년 전 | 0
답변 있음
How to extract images from groundTruth object?
Rummy18 and Joel, You can import the labeled images and mask at different class labels. Each element in a labeled image matrix ...
How to extract images from groundTruth object?
Rummy18 and Joel, You can import the labeled images and mask at different class labels. Each element in a labeled image matrix ...
대략 5년 전 | 1
답변 있음
How to export a figure as a spatially referenced image?
Use export_fig: https://www.mathworks.com/matlabcentral/fileexchange/23629-export_fig
How to export a figure as a spatially referenced image?
Use export_fig: https://www.mathworks.com/matlabcentral/fileexchange/23629-export_fig
대략 5년 전 | 0
답변 있음
how to save an image in exact size
Use imwrite to write image to graphics file: https://www.mathworks.com/help/matlab/ref/imwrite.html
how to save an image in exact size
Use imwrite to write image to graphics file: https://www.mathworks.com/help/matlab/ref/imwrite.html
대략 5년 전 | 0
답변 있음
How to access names of pictures in a file?
if all the image names follow the pattern: gh_someNumber1_someNumber2_someNumber3 and you need to store someNumber1 and someNum...
How to access names of pictures in a file?
if all the image names follow the pattern: gh_someNumber1_someNumber2_someNumber3 and you need to store someNumber1 and someNum...
대략 5년 전 | 0
| 수락됨
답변 있음
Saving image changes size.
Try using the export_fig package: https://www.mathworks.com/matlabcentral/fileexchange/23629-export_fig You have lots options w...
Saving image changes size.
Try using the export_fig package: https://www.mathworks.com/matlabcentral/fileexchange/23629-export_fig You have lots options w...
5년 초과 전 | 0
답변 있음
Freehand Masking a DICOM image?
Yes it is possible to use imfreehand on any image.
Freehand Masking a DICOM image?
Yes it is possible to use imfreehand on any image.
5년 초과 전 | 0
답변 있음
App Designer Tabs for already written Code
What do you mean access each one over a tab? You can have a menu with buttons and if the user clicks on one button then you can...
App Designer Tabs for already written Code
What do you mean access each one over a tab? You can have a menu with buttons and if the user clicks on one button then you can...
5년 초과 전 | 0
답변 있음
I was trying a program for car detection. Why it is showing error ? (Please also tell the solution to it)
I think you are in the wrong directory. Try running this in the MATLAB console: openExample('vision/videotrafficgmm')
I was trying a program for car detection. Why it is showing error ? (Please also tell the solution to it)
I think you are in the wrong directory. Try running this in the MATLAB console: openExample('vision/videotrafficgmm')
5년 초과 전 | 0
| 수락됨
답변 있음
Get the folder path in GUI
Running this: [file,path] = uiputfile; returns the selected or specified file path to path. You can get the fullfile path by...
Get the folder path in GUI
Running this: [file,path] = uiputfile; returns the selected or specified file path to path. You can get the fullfile path by...
5년 초과 전 | 1
| 수락됨
답변 있음
Auto refresh Matlab on Real TIme Data
Try using linkdata command: https://www.mathworks.com/help/matlab/creating_plots/making-graphs-responsive-with-data-linking.htm...
Auto refresh Matlab on Real TIme Data
Try using linkdata command: https://www.mathworks.com/help/matlab/creating_plots/making-graphs-responsive-with-data-linking.htm...
5년 초과 전 | 0
답변 있음
I'm sorry , How could do classification in Matlab
Image classfication links: https://www.mathworks.com/help/vision/examples/image-category-classification-using-deep-learning.htm...
I'm sorry , How could do classification in Matlab
Image classfication links: https://www.mathworks.com/help/vision/examples/image-category-classification-using-deep-learning.htm...
5년 초과 전 | 0
답변 있음
How to crop images in Matlab based on Intensity Profiles?
Try this where img is your original image: % get red, green, blue channels redC = img(:,:,1); greenC = img(:,:,2); blueC = i...
How to crop images in Matlab based on Intensity Profiles?
Try this where img is your original image: % get red, green, blue channels redC = img(:,:,1); greenC = img(:,:,2); blueC = i...
5년 초과 전 | 1
| 수락됨
답변 있음
How to change button color just by hovering the mouse cursor?
You can continuosly track the position of the cursor inside the figure window. When the coordinates of the curor are in the coo...
How to change button color just by hovering the mouse cursor?
You can continuosly track the position of the cursor inside the figure window. When the coordinates of the curor are in the coo...
5년 초과 전 | 1
답변 있음
Genetic Algorithm with for loop or while loop
Using the Global Optimization Toolbox, here the entire documentation on Genetic Algorithms: https://www.mathworks.com/discover...
Genetic Algorithm with for loop or while loop
Using the Global Optimization Toolbox, here the entire documentation on Genetic Algorithms: https://www.mathworks.com/discover...
5년 초과 전 | 0
답변 있음
How to extract a high resolution figure from MATLAB?
You can try using this package. It has lots of nice options for exporting figures and allows you to render images at native reso...
How to extract a high resolution figure from MATLAB?
You can try using this package. It has lots of nice options for exporting figures and allows you to render images at native reso...
5년 초과 전 | 1
| 수락됨
답변 있음
How do I export a faster RCNN detector, so that I can use it in python ?
You can try using the exportONNXNetwork framework:https://www.mathworks.com/help/deeplearning/ref/exportonnxnetwork.html
How do I export a faster RCNN detector, so that I can use it in python ?
You can try using the exportONNXNetwork framework:https://www.mathworks.com/help/deeplearning/ref/exportonnxnetwork.html
5년 초과 전 | 0
답변 있음
How can I convert multiple images (all the same size) into one matrix?
You can create a cell array that holds all the image matrices. Use a for loop to imread each image and then store it in a cell a...
How can I convert multiple images (all the same size) into one matrix?
You can create a cell array that holds all the image matrices. Use a for loop to imread each image and then store it in a cell a...
5년 초과 전 | 0
| 수락됨
답변 있음
Storing Images from Cell Array into Different Files
Here is a for loop that generates a different filename in each iteration: for i = 1:100 newfilename = strcat('Image', num2...
Storing Images from Cell Array into Different Files
Here is a for loop that generates a different filename in each iteration: for i = 1:100 newfilename = strcat('Image', num2...
5년 초과 전 | 0
| 수락됨
답변 있음
apply equations to all of the dicom images in a file
You can have a for loop that reads in each image and the runs the code you want. See: http://matlab.wikia.com/wiki/FAQ#How_can_...
apply equations to all of the dicom images in a file
You can have a for loop that reads in each image and the runs the code you want. See: http://matlab.wikia.com/wiki/FAQ#How_can_...
5년 초과 전 | 0
| 수락됨
답변 있음
How to add 'copy figure' function in the figures generated by GUI?
I think this is not available in the standalone executable but you can have another menu pop up that will allow copying. See: h...
How to add 'copy figure' function in the figures generated by GUI?
I think this is not available in the standalone executable but you can have another menu pop up that will allow copying. See: h...
5년 초과 전 | 0
| 수락됨
답변 있음
Build executable app that reads data from a file and displays it graphically
You can use uigetfile to have a file selection dialog box open for the user to select a file, using GUI. https://www.mathworks....
Build executable app that reads data from a file and displays it graphically
You can use uigetfile to have a file selection dialog box open for the user to select a file, using GUI. https://www.mathworks....
5년 초과 전 | 0
| 수락됨
답변 있음
Neural Network Classification Results
Are you doing semantic segmentation or image classification? The confusion matrix helps indicate differences in classification...
Neural Network Classification Results
Are you doing semantic segmentation or image classification? The confusion matrix helps indicate differences in classification...
5년 초과 전 | 0