Feeds
提问
How to implement Geodesic Active Countours
How to implement Geodesic Active Countours?Is there any helpful link regarding this.
8 years 前 | 0 个回答 | 0
0
个回答已回答
How to save recorded audio on computer
Right click on the matlab icon and run as administrator.Try this for a solution. If that does not work try out this one. <h...
How to save recorded audio on computer
Right click on the matlab icon and run as administrator.Try this for a solution. If that does not work try out this one. <h...
8 years 前 | 0
已回答
How can i segregate the horse object(foreground object) by eliminating its background? How can i do it?
You can have a try at the Matlab File Exchange where you can find lot more of files regarding this. One of which i found was <h...
How can i segregate the horse object(foreground object) by eliminating its background? How can i do it?
You can have a try at the Matlab File Exchange where you can find lot more of files regarding this. One of which i found was <h...
8 years 前 | 0
已回答
How to have 2 different appearances to Axes4 and Axes5 for SKIN DETECTION? Why Error?
In your 3rd line of the code again your specifying I. I=get(proyek.axes3,'Userdata'); I hope that needs to change to ...
How to have 2 different appearances to Axes4 and Axes5 for SKIN DETECTION? Why Error?
In your 3rd line of the code again your specifying I. I=get(proyek.axes3,'Userdata'); I hope that needs to change to ...
8 years 前 | 0
| 已接受
已回答
How do make the guide?
I hope you are looking for something like this. 1) First create a folder named 'Frames'(without quotes) in your current direc...
How do make the guide?
I hope you are looking for something like this. 1) First create a folder named 'Frames'(without quotes) in your current direc...
8 years 前 | 0
提问
Unable to load DLL mclmcrrt78.dll
I am using a dot net application and matlab for the project Online Signature Verification . This is the link from where i found...
8 years 前 | 0 个回答 | 0
0
个回答已回答
Need help on my DCT and Quantization code for Image Compression.
I = imread('cameraman.tif'); I = im2double(I); T = dctmtx(8); B = blkproc(I,[8 8],'P1*x*P2',T,T'); ...
Need help on my DCT and Quantization code for Image Compression.
I = imread('cameraman.tif'); I = im2double(I); T = dctmtx(8); B = blkproc(I,[8 8],'P1*x*P2',T,T'); ...
8 years 前 | 0
已回答
How to skip the no of frames in a video
Use read option to read only particular frames.Remaining files will be discarded automatically. v = VideoReader('xylophon...
How to skip the no of frames in a video
Use read option to read only particular frames.Remaining files will be discarded automatically. v = VideoReader('xylophon...
8 years 前 | 0
提问
How to interface a fingerprint device into matlab.
Presently i am working on a project of fingerprint recognition and matching.For this i am integrating an fingerprint device(digi...
9 years 前 | 0 个回答 | 0
0
个回答已回答
i am trying to read the .wav file through "wavread" giving path of wave using following code but it always give error 67(i-e ??? Error using ==> wavread at 67 Cannot open file)
You can directly use y = wavread('filename') y = wavread('filename') loads a WAVE file specified by the string filename...
i am trying to read the .wav file through "wavread" giving path of wave using following code but it always give error 67(i-e ??? Error using ==> wavread at 67 Cannot open file)
You can directly use y = wavread('filename') y = wavread('filename') loads a WAVE file specified by the string filename...
9 years 前 | 0
已回答
how can get this numbers in to array and the text in another array
You can use the string split function for that seperation.See this particular mathworks page. <http://in.mathworks.com/help/mat...
how can get this numbers in to array and the text in another array
You can use the string split function for that seperation.See this particular mathworks page. <http://in.mathworks.com/help/mat...
9 years 前 | 0
已回答
i want to develop an project on text to speech for blind
Searching the file exchange would be best.
i want to develop an project on text to speech for blind
Searching the file exchange would be best.
9 years 前 | 0
已回答
how to read the code in a method file such as 'CPFSKModulator.p'....open '_____' does not work
Go through this thread.The .p extension files are protected files and it cant be just read by using 'open' command. <https://...
how to read the code in a method file such as 'CPFSKModulator.p'....open '_____' does not work
Go through this thread.The .p extension files are protected files and it cant be just read by using 'open' command. <https://...
9 years 前 | 0
已回答
Combining individual GUI into single GUI using tabs
Check out this File exchange. <http://www.mathworks.com/matlabcentral/fileexchange/25938-multiple-tab-gui>
Combining individual GUI into single GUI using tabs
Check out this File exchange. <http://www.mathworks.com/matlabcentral/fileexchange/25938-multiple-tab-gui>
9 years 前 | 0
| 已接受
已回答
How to solve two variable equations using matlab?
It looks like MATLAB versions compatibility issue: < <http://in.mathworks.com/matlabcentral/newsreader/view_thread/337715> >...
How to solve two variable equations using matlab?
It looks like MATLAB versions compatibility issue: < <http://in.mathworks.com/matlabcentral/newsreader/view_thread/337715> >...
9 years 前 | 0
已回答
I don't know this watermarking code~ please explain code~
I apologize for not replying to your previous query. Its just that after this : figure,imshow(uint8(dec2d));title('DWT2 ...
I don't know this watermarking code~ please explain code~
I apologize for not replying to your previous query. Its just that after this : figure,imshow(uint8(dec2d));title('DWT2 ...
9 years 前 | 0
已回答
How to change color of box with bar function?
U can use this. b=bar(x,diag(y),'stacked');
How to change color of box with bar function?
U can use this. b=bar(x,diag(y),'stacked');
9 years 前 | 0
| 已接受
已回答
How can I make some action on listbox by double clicking?
There is a good example in mathworks documentation only.You can have a look at this . <http://in.mathworks.com/help/matlab/cr...
How can I make some action on listbox by double clicking?
There is a good example in mathworks documentation only.You can have a look at this . <http://in.mathworks.com/help/matlab/cr...
9 years 前 | 1
已回答
How to detect watermarking in DWT~ Include matlab source~ please help me~~
clc close all %host rgbimage=imread('host.jpg'); figure;imshow(rgbimage);title('original color image'); ...
How to detect watermarking in DWT~ Include matlab source~ please help me~~
clc close all %host rgbimage=imread('host.jpg'); figure;imshow(rgbimage);title('original color image'); ...
9 years 前 | 0
| 已接受
已回答
how to get confusion matrix when neural network toolbox is used?
As soon as you train the network you get the option to plot the confusion matrix.Take a look at this pdf. <http://www.mathwor...
how to get confusion matrix when neural network toolbox is used?
As soon as you train the network you get the option to plot the confusion matrix.Take a look at this pdf. <http://www.mathwor...
9 years 前 | 0
已回答
how can set "off" the visibility of axes in gui
set(handles.axes1,'visible', 'off'); This may solve
how can set "off" the visibility of axes in gui
set(handles.axes1,'visible', 'off'); This may solve
9 years 前 | 0
已回答
text in editor
Select the text which you want to highlight > right click > Insert Text Markup
text in editor
Select the text which you want to highlight > right click > Insert Text Markup
9 years 前 | 0
已回答
Do Matlab structures leak memory?
I suggest you to try: File > Preferences > General > Java Heap Memory. Then you can increase the amount of memory beyond ...
Do Matlab structures leak memory?
I suggest you to try: File > Preferences > General > Java Heap Memory. Then you can increase the amount of memory beyond ...
9 years 前 | 0
已回答
How to call a function of a matlab file in another matlab file ?
U can take a look at this one.Is it the same u want to know? <https://in.mathworks.com/matlabcentral/answers/222005-2-m-file-in...
How to call a function of a matlab file in another matlab file ?
U can take a look at this one.Is it the same u want to know? <https://in.mathworks.com/matlabcentral/answers/222005-2-m-file-in...
9 years 前 | 1
已回答
Comparing the two structure
U can use the isequal command to compare between structs. tf = isequaln(A,B) And if the result is 1,u can remove those f...
Comparing the two structure
U can use the isequal command to compare between structs. tf = isequaln(A,B) And if the result is 1,u can remove those f...
9 years 前 | 3
已回答
Create a two variables function, including several law in MATLAB
I think this might help u. <http://in.mathworks.com/matlabcentral/answers/uploaded_files/5510/MATLAB%252520-%252520C#>
Create a two variables function, including several law in MATLAB
I think this might help u. <http://in.mathworks.com/matlabcentral/answers/uploaded_files/5510/MATLAB%252520-%252520C#>
9 years 前 | 1
| 已接受
已回答
how to use imwrite in matlab?
imwrite(A,filename,fmt); This is the general format of imwrite. Its not necessary that image needs to be present in u...
how to use imwrite in matlab?
imwrite(A,filename,fmt); This is the general format of imwrite. Its not necessary that image needs to be present in u...
9 years 前 | 0
已回答
In which scenarios the developer prefer bug finder and code prover ?
U can have a look at these links.It explains cleanly wht the two function does. <http://in.mathworks.com/products/polyspace-bug...
In which scenarios the developer prefer bug finder and code prover ?
U can have a look at these links.It explains cleanly wht the two function does. <http://in.mathworks.com/products/polyspace-bug...
9 years 前 | 0
已回答
how to calculate standared deviation of each block images
I think these links will be helpfull <http://www.mathworks.com/matlabcentral/answers/uploaded_files/12188/blockproc_demo1.m> ...
how to calculate standared deviation of each block images
I think these links will be helpfull <http://www.mathworks.com/matlabcentral/answers/uploaded_files/12188/blockproc_demo1.m> ...
9 years 前 | 0
已回答
if statement with message display
After each message1 put the msgbox. U can just use msgbox(message1);
if statement with message display
After each message1 put the msgbox. U can just use msgbox(message1);
9 years 前 | 0