Feeds
質問
How to get region information
I am thinking to find the length but not sure how to do that. An example image is shown below: <</matlabcentral/answers/up...
7年以上 前 | 1 件の回答 | 0
1
回答回答済み
MATLAB GUI : How to set the checkbox ticked
Another option could be to use set(handles.checkbox,'value',1) where 1 for checked and 0 for unchecked.
MATLAB GUI : How to set the checkbox ticked
Another option could be to use set(handles.checkbox,'value',1) where 1 for checked and 0 for unchecked.
9年以上 前 | 2
回答済み
add circles to starting and ending point of a line
x = [1 17]; y= [19.99 18.57]; line(x,y,'Color','r','LineWidth',4) radius = 1; centerX = 1; centerY = 19.99; ...
add circles to starting and ending point of a line
x = [1 17]; y= [19.99 18.57]; line(x,y,'Color','r','LineWidth',4) radius = 1; centerX = 1; centerY = 19.99; ...
10年以上 前 | 1
| 採用済み
回答済み
draw lines based on coordinates
You can try this to draw the line x = [1 17]; y= [19.99 18.57]; line(x,y,'Color','r','LineWidth',4) You can change...
draw lines based on coordinates
You can try this to draw the line x = [1 17]; y= [19.99 18.57]; line(x,y,'Color','r','LineWidth',4) You can change...
10年以上 前 | 1
| 採用済み
回答済み
How to change the size using imshow?
You can try this x=imresize(x,([300 300])); figure, imshow(x);
How to change the size using imshow?
You can try this x=imresize(x,([300 300])); figure, imshow(x);
10年以上 前 | 0
回答済み
currently i am doing project on secured image compression using independent component analysis and neural network... so as a resultant i am getting white image. my code is as follows:
You need to work with pb,qb,sb. Did you check what pb, qb and sb gives you?
currently i am doing project on secured image compression using independent component analysis and neural network... so as a resultant i am getting white image. my code is as follows:
You need to work with pb,qb,sb. Did you check what pb, qb and sb gives you?
10年以上 前 | 1
回答済み
how to run an already written code?
You do not have to unzip and save that to MATLAB folder. Unzip the file where you want to unzip. Can be anywhere in your compute...
how to run an already written code?
You do not have to unzip and save that to MATLAB folder. Unzip the file where you want to unzip. Can be anywhere in your compute...
10年以上 前 | 1
回答済み
Monitoring the Speed of write.m/save.m on a network
Agree with Orion. You can try with tic/toc. At the beginning of your process use tic and at the end of your process use toc. ...
Monitoring the Speed of write.m/save.m on a network
Agree with Orion. You can try with tic/toc. At the beginning of your process use tic and at the end of your process use toc. ...
10年以上 前 | 1
回答済み
error occurring stating that image is too big to fit on screen, displaying at resolution 1%
You can use resize() if it is too big.
error occurring stating that image is too big to fit on screen, displaying at resolution 1%
You can use resize() if it is too big.
10年以上 前 | 2
| 採用済み
回答済み
please tell me how to seprate each block of image given below..please help me
Could you please let us know what do you mean by each block of image ??? There are 7 separate boxes and each box has some lines ...
please tell me how to seprate each block of image given below..please help me
Could you please let us know what do you mean by each block of image ??? There are 7 separate boxes and each box has some lines ...
10年以上 前 | 0
回答済み
Ideas for breaking up an image based on pixel values
You can have a look at region based segmentation http://www.mathworks.com/matlabcentral/fileexchange/authors/116449
Ideas for breaking up an image based on pixel values
You can have a look at region based segmentation http://www.mathworks.com/matlabcentral/fileexchange/authors/116449
10年以上 前 | 1
回答済み
How to detect white regions in image
Your question is not clear. According to your code you need to concentrate (threshold and bwareaopen). You will get exactly what...
How to detect white regions in image
Your question is not clear. According to your code you need to concentrate (threshold and bwareaopen). You will get exactly what...
10年以上 前 | 1
回答済み
im new to matlab, pls help me by explaining DoOG and code for it
You can have a look >> The INface toolbox v2.0 for illumination invariant face recognition Photometric normalization techniq...
im new to matlab, pls help me by explaining DoOG and code for it
You can have a look >> The INface toolbox v2.0 for illumination invariant face recognition Photometric normalization techniq...
10年以上 前 | 0
回答済み
How to cut an object from this image?
Could you please tell for what purpose you want to cut the rectangle? You can use imcrop() to crop the region from the whole ...
How to cut an object from this image?
Could you please tell for what purpose you want to cut the rectangle? You can use imcrop() to crop the region from the whole ...
10年以上 前 | 1
| 採用済み
回答済み
Changing image not showing upon display.
Do you mean you want original image, cropped of the original and then enhancement to blue fro the cropped one next to the or...
Changing image not showing upon display.
Do you mean you want original image, cropped of the original and then enhancement to blue fro the cropped one next to the or...
10年以上 前 | 0
質問
How to use different file format in MATLAB
Hi there, I was using same file format (.tif) as input while processing with my following code. However, I have got new image...
10年以上 前 | 2 件の回答 | 0
2
回答質問
How to save output image
Hi there, I do have a batch of image files. I do know how to save them in a folder using the directory option. However, I n...
10年以上 前 | 1 件の回答 | 1
1
回答質問
How to use filter
Hi all, I am new to Matlab. I need to know how to use a filter to eliminate non-uniformity in an image.
10年以上 前 | 2 件の回答 | 0
2
回答質問
Save files using MATLAB
Hi, I have used a function like below. function rough1(src,des) p = dir(fullfile(src,'*.tif')); ...
10年以上 前 | 1 件の回答 | 0