![photo](/responsive_image/150/150/0/0/0/cache/matlabcentral/profiles/3612924.jpg)
Rushikesh Tade
IBM
Followers: 0 Following: 0
Professional Interests: Image processing, Pattern Recognition , Signal Processing
Programming Languages:
Python
Spoken Languages:
English
Pronouns:
He/him
Python
Spoken Languages:
English
Pronouns:
He/him
Feeds
已回答
How to read the image timestamp data from its text file?
It would have been useful if could have attached one/few of that files. Anyways MATLAB has an option to read data from .txt file...
How to read the image timestamp data from its text file?
It would have been useful if could have attached one/few of that files. Anyways MATLAB has an option to read data from .txt file...
9 years 前 | 0
已回答
Skin type classification and clustering
Hi Adriano, Try doing this: * Use k-NN classifier, use the Fitzpatrick Scale color ranges for the training. * Calculat...
Skin type classification and clustering
Hi Adriano, Try doing this: * Use k-NN classifier, use the Fitzpatrick Scale color ranges for the training. * Calculat...
9 years 前 | 0
已回答
how can I write and reads an image from a folder?
* read an image from a folder variable_name=imread('image_name.ext') * select image and show it into axe...
how can I write and reads an image from a folder?
* read an image from a folder variable_name=imread('image_name.ext') * select image and show it into axe...
9 years 前 | 0
已回答
Teeth Segmentation from a given X-ray image
Try this code , clc; clear all; close all; image_name='10.gif.jpg'; %%Change this if you have diff name ...
Teeth Segmentation from a given X-ray image
Try this code , clc; clear all; close all; image_name='10.gif.jpg'; %%Change this if you have diff name ...
9 years 前 | 0
已回答
FFT of a selected range of points
if you know the time where it started you can simply do it by using: fft(signal(initial_time:final_time))
FFT of a selected range of points
if you know the time where it started you can simply do it by using: fft(signal(initial_time:final_time))
9 years 前 | 0
| 已接受
已回答
Should XOR operation performed on binary images only?
I think so because XOR is binary operator.
Should XOR operation performed on binary images only?
I think so because XOR is binary operator.
9 years 前 | 0
已回答
If A is a 378-by-1 matrix and B is a 378-by-2401 matrix, what does is it mean 'A\B'?
Ref from <http://dali.feld.cvut.cz/ucebna/matlab/techdoc/ref/arithmeticoperators.html> Backslash or matrix left division. I...
If A is a 378-by-1 matrix and B is a 378-by-2401 matrix, what does is it mean 'A\B'?
Ref from <http://dali.feld.cvut.cz/ucebna/matlab/techdoc/ref/arithmeticoperators.html> Backslash or matrix left division. I...
9 years 前 | 0
| 已接受
已回答
how to save the captured image in target folder
imwrite(variable_name,'C:\Users\admin\Desktop\rrrrrr\TestDatabase\image_name_to_saved.format')
how to save the captured image in target folder
imwrite(variable_name,'C:\Users\admin\Desktop\rrrrrr\TestDatabase\image_name_to_saved.format')
10 years 前 | 1
已回答
Finding if numbers are within range
input_vector=1:100; range_upper_limit=50; range_lower_limit=25; indices_in_input_vector_within_the_range= int...
Finding if numbers are within range
input_vector=1:100; range_upper_limit=50; range_lower_limit=25; indices_in_input_vector_within_the_range= int...
10 years 前 | 0
已回答
Use Matlab to get a dc voltage through microphone jack
see if this one helps : <http://in.mathworks.com/matlabcentral/fileexchange/18596-real-time-microphone-and-camera-data-acquisit...
Use Matlab to get a dc voltage through microphone jack
see if this one helps : <http://in.mathworks.com/matlabcentral/fileexchange/18596-real-time-microphone-and-camera-data-acquisit...
10 years 前 | 0
已回答
Serial Communication involving terminator in MATLAB
Use MATLAB Serial port object: serialObj= serial('COM1','BaudRate',115200,'DataBits',7); For more info and documenta...
Serial Communication involving terminator in MATLAB
Use MATLAB Serial port object: serialObj= serial('COM1','BaudRate',115200,'DataBits',7); For more info and documenta...
10 years 前 | 0
| 已接受
已回答
Trying to create exe from GUI..
Why don't you use application compiler from apps. I find it easy that way. <</matlabcentral/answers/uploaded_files/18158/...
Trying to create exe from GUI..
Why don't you use application compiler from apps. I find it easy that way. <</matlabcentral/answers/uploaded_files/18158/...
10 years 前 | 0
| 已接受
已回答
How to delete selective part of image?
By removing if you mean crop then, Image(row_start:row_end,col_start:col_end)=[];
How to delete selective part of image?
By removing if you mean crop then, Image(row_start:row_end,col_start:col_end)=[];
10 years 前 | 0
已回答
ip camera connect to matlab
Try searching in Image Acquisition Toolbox <http://www.mathworks.in/products/imaq/index.html?s_tid=brdcrb>
ip camera connect to matlab
Try searching in Image Acquisition Toolbox <http://www.mathworks.in/products/imaq/index.html?s_tid=brdcrb>
10 years 前 | 0
已回答
How to delete every second pixel of each row from a photo?
Try following code: function output_image=alternate_rows(input_image) output_image=[]; for i=1:size...
How to delete every second pixel of each row from a photo?
Try following code: function output_image=alternate_rows(input_image) output_image=[]; for i=1:size...
10 years 前 | 1
已回答
How to detect a polygon of following Shape in an image with other objects. I greatly appreciate for some help.
You can use Active shape model for that. Here is one paper which seems to be solving same type problem. <www.itu.dk/~marlee...
How to detect a polygon of following Shape in an image with other objects. I greatly appreciate for some help.
You can use Active shape model for that. Here is one paper which seems to be solving same type problem. <www.itu.dk/~marlee...
10 years 前 | 0
已回答
Attempted to access y(5); index out of bounds because numel(y)=2.
Thats because you have declared as: y=zeros(2,1); which creates y variable as: y=[0;0] which means y variable is ...
Attempted to access y(5); index out of bounds because numel(y)=2.
Thats because you have declared as: y=zeros(2,1); which creates y variable as: y=[0;0] which means y variable is ...
10 years 前 | 0
已回答
How can I calculate area of an object in the image with .png extension?
I have converted the image into problem image by removing the text which you used to describe the problem and filling the backgr...
How can I calculate area of an object in the image with .png extension?
I have converted the image into problem image by removing the text which you used to describe the problem and filling the backgr...
10 years 前 | 2
| 已接受
已回答
which type of camera should be used for detecting road lanes for good processing in matlab
I would have considered * Resolution of camera (usually 5 MP or more) * Image Stabilization * White balance
which type of camera should be used for detecting road lanes for good processing in matlab
I would have considered * Resolution of camera (usually 5 MP or more) * Image Stabilization * White balance
10 years 前 | 1
已回答
minimum value array issue
If removing of values is allowed : [TransmiterNode,ind]=min(dn(:)); dn(ind)=[];
minimum value array issue
If removing of values is allowed : [TransmiterNode,ind]=min(dn(:)); dn(ind)=[];
10 years 前 | 0
已回答
Separate the red and purple pixels in a photo
Tried to separate out the colors using K-Means Clustering using guide shown <http://www.mathworks.in/help/images/examples/color-...
Separate the red and purple pixels in a photo
Tried to separate out the colors using K-Means Clustering using guide shown <http://www.mathworks.in/help/images/examples/color-...
10 years 前 | 1