Réponse apportée
how to mask on roi area
you can ask user to interactively specify ROI: I = imread('fullfilename'); imshow(I) h = imfreehand(gca); wait(h) % wai...

presque 12 ans il y a | 0

Réponse apportée
pan and zoom on image
Simultaneous pan and zoom: <http://blogs.mathworks.com/pick/2005/02/24/simultaneous-pan-and-zoom/>

presque 12 ans il y a | 0

Réponse apportée
vec2mat function unrecognized by Cody
*vec2mat* is defined in Communication system toolbox and cody doesn't recognize toolbox functions.

presque 12 ans il y a | 0

| A accepté

Réponse apportée
can I process on video which is live capturing by camera ?
you need to capture snapshots from live video in order to process them. vidobj = videoinput('winvideo'); snapshot = getsn...

presque 12 ans il y a | 0

| A accepté

Réponse apportée
How to implement gray level probability density function?
you can use built in function *imhist*.

presque 12 ans il y a | 0

Réponse apportée
Plotting RMS from .csv files
RMS = (sum(col2.^2)/length(col2))^0.5;

presque 12 ans il y a | 0

| A accepté

Réponse apportée
how to numbering the objects in the binary image ?
Go through this demo: <http://www.mathworks.com/matlabcentral/fileexchange/25157-image-segmentation-tutorial-blobsdemo>

presque 12 ans il y a | 0

Réponse apportée
How to get the YUV value for each pixel?
if you have a RGB image you can convert it into YUV using below mentioned equations: Y = R*(0.299000) + G*(0.587000) + B*(0...

presque 12 ans il y a | 0

| A accepté

Réponse apportée
How to separate the color components of the color image
[I map]=imread('kids.tif'); RGB = ind2rgb(I, map); R = RGB(:,:,1); G = RGB(:,:,2); B = RGB(:,:,3);

presque 12 ans il y a | 0

Question


How to add a folder permanently to matlab path?
I am using addpath to add specified folders to matlab path, but it removes the folders from the matlab path everytime the applic...

presque 12 ans il y a | 3 réponses | 4

3

réponses

Réponse apportée
replace the elements of a matrix
A(find(A==1))=B;

presque 12 ans il y a | 0

Réponse apportée
How to obtain the DCT ( discrete cosine transform )?
The image must be an indexed image not a RGB image. You shall use ind2gray. [I, map]=imread('kids.tif'); I1=ind2gray(I,map...

presque 12 ans il y a | 0

| A accepté

Réponse apportée
Need basic help with low pass filtering
go through fdesign documentation: doc fdesign;

presque 12 ans il y a | 1

Réponse apportée
poincare plot of heart sound
X = RRI; X(end)=[]; Y=RRI; Y(1)=[]; plot(Y,X,'.');

presque 12 ans il y a | 0

Réponse apportée
can any one tell me how to extract only the l component of the image ..if the image is rgb ..i want only the l component of the image ,how is it possible
R=YourImage(:,:,1); G=YourImage(:,:,2); B=YourImage(:,:,3);

presque 12 ans il y a | 0

Réponse apportée
How to invert the colors in an image
doc imcomplement

environ 12 ans il y a | 0

| A accepté

Réponse apportée
How to use gplot for co-ordinates
gplot(eye(length(x)) , [x' , y'], '*'); % x and y are row vectors containing co-ordinates.

plus de 12 ans il y a | 0

| A accepté

Réponse apportée
how to code rbg colour intensity of an image?????
you can extract all the three color planes using: R = YourImage(:,:,1); % Red color plane G = YourImage(:,:,2); % Green ...

plus de 12 ans il y a | 0

| A accepté

Réponse apportée
I need help with this trivial function.
This isn't a script, it's a function. You need to pass input argument while calling the function. x = 4 ; y = fibonacci(4)...

plus de 12 ans il y a | 0

| A accepté

Réponse apportée
how to add data to a gui table
scope of data is local to the function is defined in.It can't be used outside that function. If you still want to access it in a...

plus de 12 ans il y a | 0

| A accepté

Réponse apportée
How to increase amplitude of a peak in fft in MATLAB?
In the other software you might be plotting fft against indices and here you are doing it differently i.e fft vs frequency sa...

plus de 12 ans il y a | 0

Réponse apportée
Plotting Issue? Conversion of one type of plot to other?
set(gca, 'xcolor' ,[1 1 1] ,'xtick' ,[]) x - axis is still there, but it just makes it invisible by setting axis color ...

plus de 12 ans il y a | 0

Réponse apportée
I am getting an error that reads Index exceeds matrix dimensions. Error in lab09 (line 14) Both_Team_Scores=Full_Season(2:37,6:25);
use dbstop if error to debug your code, it will give exact location to where your code hangs. dbstop if error YourFunction...

plus de 12 ans il y a | 1

Réponse apportée
Saving an axes as jpg file using saveas
F = getframe(handles.axes1); Image = frame2im(F); imwrite(Image, 'Image.jpg')

plus de 12 ans il y a | 3

| A accepté

Réponse apportée
Plotting data from one GUI to other
You'll need to store handle of the 2nd figure/GUI in root. You can achieve this by typing the following code in opening function...

plus de 12 ans il y a | 0

| A accepté

Réponse apportée
Is it possible to pass an image as an input to a function in Matlab?
An image is nothing but a matrix, so you can pass it like any other variable. I=imread('YourImage'); yourFunction(I)

plus de 12 ans il y a | 1

| A accepté

Réponse apportée
error while using imshow function.
You should specify full image name(extension too ) within singles quotes. You are getting this error because logo is a predefine...

plus de 12 ans il y a | 0

| A accepté

Réponse apportée
How to reset toggle buttons with a push button?
push buttton callback: set(handles.togglebutton1,'value',0); set(handles.togglebutton2,'value',0);

plus de 12 ans il y a | 0

| A accepté

Réponse apportée
Font of a toggle button to change on a toggled state?
Type the following code in Togglebutton callback: h = get(hObject,'value'); if h set(handles.togglebutton1, 'string',...

plus de 12 ans il y a | 0

Charger plus