Gopichandh Danala
Followers: 0 Following: 0
Statistik
RANG
727
of 295.448
REPUTATION
102
BEITRÄGE
26 Fragen
31 Antworten
ANTWORTZUSTIMMUNG
46.15%
ERHALTENE STIMMEN
17
RANG
of 20.227
REPUTATION
N/A
DURCHSCHNITTLICHE BEWERTUNG
0.00
BEITRÄGE
0 Dateien
DOWNLOADS
0
ALL TIME DOWNLOADS
0
RANG
of 153.872
BEITRÄGE
0 Probleme
0 Lösungen
PUNKTESTAND
0
ANZAHL DER ABZEICHEN
0
BEITRÄGE
0 Beiträge
BEITRÄGE
0 Öffentlich Kanäle
DURCHSCHNITTLICHE BEWERTUNG
BEITRÄGE
0 Highlights
DURCHSCHNITTLICHE ANZAHL DER LIKES
Feeds
Frage
Fit my Data to a pattern with some unknown parameters
Hi, I have a array with some noise and want to correct it to a know pattern (line-like). Here is an example: % type-1 my_a...
etwa 5 Jahre vor | 0 Antworten | 0
0
AntwortenFrage
How to change the border color of a pushbutton in guide
I am trying to see if I can add a color to the border of a pushbutton. I checked some undocumented matlab and found this: link ...
etwa 5 Jahre vor | 0 Antworten | 0
0
AntwortenFrage
How to automatically resize custom button.CData image with maximize and restore down clicks on guide?
Hi, I am trying to use cData feature to change the look of each button to some image. I was able to acheive this but when I tr...
mehr als 5 Jahre vor | 1 Antwort | 0
1
AntwortFrage
Not able to create csv file using writetable after creating .exe file in Mac
I need to store outputs of my application to a .csv file. The *.fig file works fine and saves the outputs to the csv file as ex...
mehr als 5 Jahre vor | 1 Antwort | 0
1
AntwortFrage
How to compute the maps of brain images shown in this reference article?
Hi, This is a desperate attempt, I am making to see if I can get any help related to my issue. I have CT perfusion images ...
mehr als 6 Jahre vor | 1 Antwort | 2
1
AntwortFrage
How to open/run/control an .exe application using Matlab on windows OS?
Hi, I want to run/ control an external *.exe application using Matlab. I need to pass some commands on open .exe or contro...
mehr als 6 Jahre vor | 1 Antwort | 0
1
AntwortFrage
Can we have an image in a matrix that can be called by a function?
Hi, This may sound odd, but I want to have a image data defined as a matrix. Which should be created by a function call. ...
mehr als 6 Jahre vor | 2 Antworten | 0
2
AntwortenFrage
How to divide the brain segmented slices in left and right compartments (halves)?
Hi. I have a series of brain CT images, the goal is to segment brain followed by separating brain into left and right halves to...
mehr als 6 Jahre vor | 1 Antwort | 0
1
Antwortfill data and Make an image White
This maybe a bad answer but it works: I tried to find the left and right cliffs in the image and connected them to obtain the r...
mehr als 6 Jahre vor | 1
| akzeptiert
Converting Image to Excel Format
Here I am considering a cell arrray and splitting them into multiple cells based on spaces then saving into csv with each word i...
mehr als 6 Jahre vor | 0
Detecting the position of a previously colored rectangle in an image
You can use thresholding, I am using hsv to fo this. [img, map] = imread('example.png'); if ~isempty(map) col...
mehr als 6 Jahre vor | 1
how can i remove the white object from binary image
You can use regionprops to compute circularity, eccentricity, or use major axis and minor axis lengths to find required shape of...
mehr als 6 Jahre vor | 0
| akzeptiert
How to label display image at different location ?
I am assuming that you have a single image consisting of 7 sub-images. In this case you can use <https://www.mathworks.com/h...
mehr als 6 Jahre vor | 0
Segment structure using threshold
*Quantize does what you are expecting.* It will divide the given image into a number of labels based on thresh values as sho...
mehr als 6 Jahre vor | 1
Find the diameter of fruit image in matlab
You can use regionprops to find many properties of BW. props = regionprops(BW,'EquivDiameter'); % equiv diameter of a ci...
mehr als 6 Jahre vor | 0
how to get the center of frame/frames of an rgb/greyscale image?
In case of a whole grayscale image, just count #.of.rows and #.of.cols and find center accordingly. For a specific shape or ...
mehr als 6 Jahre vor | 0
| akzeptiert
How to reset the current axes to display either color or grayscale image on the same axes in MATLAB?
I figured out the solution, we can set colormap and then imshow to display respective images.. % --- Executes on button p...
mehr als 7 Jahre vor | 0
Frage
How to reset the current axes to display either color or grayscale image on the same axes in MATLAB?
Hi, I have some grayscale images, which after some segmentation I converted a section to color for display purposes. But I ca...
mehr als 7 Jahre vor | 1 Antwort | 0
1
Antworthow can slect randomly numbers from two array s
%% A=[3818.36,7632.40,11446.44,15260.48,19074.52]; B=[657.15,1089.15,1521.15,1953.15,2385.15]; vals = zeros(1,...
mehr als 7 Jahre vor | 0
| akzeptiert
Hello, I am student working on Image processing. Right now I am upload two image in GUI with two different axes and extract Minutiae .Now my question is how to match two Minutiae. And if match give a massage the Fingerprints matched otherwise it’s no
If you have two outputs you want to compare use the function <https://www.mathworks.com/help/matlab/ref/isequal.html isequal> to...
mehr als 7 Jahre vor | 0
Is it possible to resize a region in a grayscale image?
The steps for this is to extract the largest Blob, resize it as per requirement, again map it back to the original image to incr...
mehr als 7 Jahre vor | 0
| akzeptiert
How to add a boundary into a image for saving
The problem may just be with either the way you save or with way you used bwboundaries. I wrote some sample code using bwperim ...
mehr als 7 Jahre vor | 0
| akzeptiert
how can i remove white spaces around this image ?
img = imread('whiteBG.jpg'); img = rgb2gray(img); figure, imshow(img) % count the pixels of each bin [counts, bins...
mehr als 7 Jahre vor | 0
| akzeptiert
Align & Distribute Multiple images in An image
If I understood correctly you don't want to display multiple images in a single figure axis as in <http://www.mathworks.com/help...
mehr als 7 Jahre vor | 0
Is there a way to get a "thicker" bwconncomp connection?
If you are just trying to replace all the white pixels in the surroundings to 0, all the connected white valleys on the edges al...
mehr als 7 Jahre vor | 0
To find the value in a vector for the corresponding indices from another vector
There is nothing wrong in your code, maybe some of the indices in bb are higher than length of aa, which is giving that error. ...
mehr als 7 Jahre vor | 0
Code Troubleshooting for replacing pixels in original image and ending with "index exceeds matrix dimensions."
I checked the attached image: It is not 1600 * 1200 >> I=imread('image2-1.jpg'); >> size(I) ans = 385 ...
mehr als 7 Jahre vor | 0
| akzeptiert
How to read and resize and change color image from URL link in our MATLAB commands?
I am assuming a few things here and you can modify it to suit your requirement % read image from url (I took a random ima...
mehr als 7 Jahre vor | 0
| akzeptiert
Frage
How to convert Dicom images (.dcm) into '.img' format ?
Hi, I have a c ++ program linked through MEX file to a Matlab program. The input to this is only '.img' format. Now I have a f...
mehr als 7 Jahre vor | 1 Antwort | 0
1
AntwortFrage
How to zero pad the cut image when it reached a boundary on actual image
Hi, I am trying to cut some images into smaller images based on some segmentation results. Actual images size: 665x512 doubl...
mehr als 7 Jahre vor | 1 Antwort | 0