Community Profile

photo

Gopichandh Danala


Last seen: 3年弱 前 2016 年からアクティブ

Followers: 0   Following: 0

統計

  • Knowledgeable Level 3
  • First Review
  • 3 Month Streak
  • Thankful Level 3
  • Knowledgeable Level 2
  • First Answer

バッジを表示

Feeds

表示方法

質問


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...

4年以上 前 | 0 件の回答 | 0

0

回答

質問


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 ...

4年以上 前 | 0 件の回答 | 0

0

回答

質問


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...

4年以上 前 | 1 件の回答 | 0

1

回答

質問


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...

約5年 前 | 1 件の回答 | 0

1

回答

質問


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 ...

6年弱 前 | 1 件の回答 | 2

1

回答

質問


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...

6年弱 前 | 1 件の回答 | 0

1

回答

質問


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. ...

6年弱 前 | 2 件の回答 | 0

2

回答

質問


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...

6年弱 前 | 1 件の回答 | 0

1

回答

回答済み
fill 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...

6年弱 前 | 1

| 採用済み

回答済み
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...

6年弱 前 | 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...

約6年 前 | 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...

約6年 前 | 0

| 採用済み

回答済み
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...

約6年 前 | 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...

約6年 前 | 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...

約6年 前 | 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 ...

約6年 前 | 0

| 採用済み

回答済み
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...

7年弱 前 | 0

質問


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...

7年弱 前 | 1 件の回答 | 0

1

回答

回答済み
how 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,...

7年弱 前 | 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...

7年弱 前 | 0

| 採用済み

回答済み
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 ...

7年弱 前 | 0

| 採用済み

回答済み
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...

7年弱 前 | 0

| 採用済み

回答済み
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...

7年弱 前 | 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...

7年弱 前 | 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. ...

7年弱 前 | 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 ...

7年弱 前 | 0

| 採用済み

回答済み
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...

7年弱 前 | 0

| 採用済み

質問


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...

7年弱 前 | 1 件の回答 | 0

1

回答

質問


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...

7年弱 前 | 1 件の回答 | 0

1

回答

さらに読み込む