DGM
Followers: 11 Following: 0
Hi, I'm nobody. I don't belong here, but I have nothing better to do. Matlab used to be part of my work. Now it's part of my hobbies. That's pretty sad, really.
Feeds
답변 있음
How to map each pixel in the image from the colour bar and assign temperature to the pixel from the colour bar
There are now quite a few examples of this on the forum. Here's another. % the image inpict = imread('image.jpeg'); imshow(i...
How to map each pixel in the image from the colour bar and assign temperature to the pixel from the colour bar
There are now quite a few examples of this on the forum. Here's another. % the image inpict = imread('image.jpeg'); imshow(i...
대략 23시간 전 | 0
답변 있음
How to count the amount of small squares in this picture?
The given answers have problems with accuracy. One way to help with discrimination is to do some sort of template matching. ...
How to count the amount of small squares in this picture?
The given answers have problems with accuracy. One way to help with discrimination is to do some sort of template matching. ...
4일 전 | 1
| 수락됨
답변 있음
How to randomly select the datapoints in a vector based on percentage for each group?
There has to be a smarter way than this, but I guess this is one idea. % some fake data x = randn(1000,1); % the percentile...
How to randomly select the datapoints in a vector based on percentage for each group?
There has to be a smarter way than this, but I guess this is one idea. % some fake data x = randn(1000,1); % the percentile...
6일 전 | 0
답변 있음
Digital image processing.
It's not clear what is expected by rotating an image without changing its size or resolution. What does "size" mean in this con...
Digital image processing.
It's not clear what is expected by rotating an image without changing its size or resolution. What does "size" mean in this con...
9일 전 | 0
답변 있음
Error in computing median filter and histogram equalization on an image. How can i solve it?
The image is a JPG, and most JPGs are RGB. fname = 'https://www.mathworks.com/matlabcentral/answers/uploaded_files/280425/1a.jp...
Error in computing median filter and histogram equalization on an image. How can i solve it?
The image is a JPG, and most JPGs are RGB. fname = 'https://www.mathworks.com/matlabcentral/answers/uploaded_files/280425/1a.jp...
10일 전 | 0
답변 있음
how to remove error ??? Error using ==> iptcheckinput Function MEDFILT2 expected its first input, A, to be two-dimensional. Error in ==> medfilt2>parse_inputs at 109 iptcheckinput(a, {'numeric','logical'}, {'2d','real'}, mfilename, 'A', 1); Error i
The image is a JPG. Most JPGs are RGB. Medfilt2() only accepts a single-channel input. You either need to make the input sing...
how to remove error ??? Error using ==> iptcheckinput Function MEDFILT2 expected its first input, A, to be two-dimensional. Error in ==> medfilt2>parse_inputs at 109 iptcheckinput(a, {'numeric','logical'}, {'2d','real'}, mfilename, 'A', 1); Error i
The image is a JPG. Most JPGs are RGB. Medfilt2() only accepts a single-channel input. You either need to make the input sing...
10일 전 | 0
| 수락됨
답변 있음
How can we apply a gaussian noise to a image?
If you want to add Gaussian noise to an image, just use imnoise(). That way, there's no need to jump through extra hoops to deal...
How can we apply a gaussian noise to a image?
If you want to add Gaussian noise to an image, just use imnoise(). That way, there's no need to jump through extra hoops to deal...
10일 전 | 0
답변 있음
How do i zoom imhist?
I see two potential needs here. Scaling YLim and possibly scaling XLim Adjusting YLim: The most common is probably a need t...
How do i zoom imhist?
I see two potential needs here. Scaling YLim and possibly scaling XLim Adjusting YLim: The most common is probably a need t...
12일 전 | 0
답변 있음
How to create axes in the center of an image and calculate angles between the points in an image?
There's no need to use manual transcription of a plot. Use the points that have already been found. Here is a hypothetical rec...
How to create axes in the center of an image and calculate angles between the points in an image?
There's no need to use manual transcription of a plot. Use the points that have already been found. Here is a hypothetical rec...
15일 전 | 0
답변 있음
Average distance between nearest neighbors of grain boundaries
Maybe a start, maybe not: % the image as a logical mask inpict = imread('unettestfile.png')>128; % if we're not going to fi...
Average distance between nearest neighbors of grain boundaries
Maybe a start, maybe not: % the image as a logical mask inpict = imread('unettestfile.png')>128; % if we're not going to fi...
16일 전 | 0
답변 있음
Why does imagesc show different outputs for the same input matrix?
The problem is the ydata spacing is not uniform between the two sets. Tools like image(), imagesc(), and imshow() don't use all...
Why does imagesc show different outputs for the same input matrix?
The problem is the ydata spacing is not uniform between the two sets. Tools like image(), imagesc(), and imshow() don't use all...
19일 전 | 1
| 수락됨
답변 있음
Controlling colors in scatter plots
This is what I threw together, but there's probably a better way to do this; I haven't really used gscatter() for anything befo...
Controlling colors in scatter plots
This is what I threw together, but there's probably a better way to do this; I haven't really used gscatter() for anything befo...
21일 전 | 0
| 수락됨
답변 있음
Big Tiff Grayscale image looks unsharp/ Grayvalue is not shown properly
It's hard to know without seeing the image. A TIFF can contain just about anything. It can be on an odd numeric scale. It can...
Big Tiff Grayscale image looks unsharp/ Grayvalue is not shown properly
It's hard to know without seeing the image. A TIFF can contain just about anything. It can be on an odd numeric scale. It can...
24일 전 | 0
| 수락됨
답변 있음
Are there MATLAB functions or scripts to perform boolean operations on triangulated solids?
If your solids can each be expressed as a manifold STL, then I don't see why you can't use external tools to do the job. I norm...
Are there MATLAB functions or scripts to perform boolean operations on triangulated solids?
If your solids can each be expressed as a manifold STL, then I don't see why you can't use external tools to do the job. I norm...
24일 전 | 0
| 수락됨
답변 있음
Finding contiguous regions of interest in a mask and calculating the mean values of those regions when the mask is applied to an array
You have a mask and a (assumed) grayscale image. Here are three ways: % a grayscale image and a logical mask of the same geome...
Finding contiguous regions of interest in a mask and calculating the mean values of those regions when the mask is applied to an array
You have a mask and a (assumed) grayscale image. Here are three ways: % a grayscale image and a logical mask of the same geome...
대략 1개월 전 | 1
답변 있음
Can I digitized color map into contour values according to it color bar?
No, not accurately. There are a number of problems. You can try anyway. Filled contour plots are ambiguous. The only parts...
Can I digitized color map into contour values according to it color bar?
No, not accurately. There are a number of problems. You can try anyway. Filled contour plots are ambiguous. The only parts...
대략 1개월 전 | 1
| 수락됨
답변 있음
capture focus change of a figure
This is based on the examples given in the comments. I've tested it in R2015b and R2019b, so I'm assuming it would have worked ...
capture focus change of a figure
This is based on the examples given in the comments. I've tested it in R2015b and R2019b, so I'm assuming it would have worked ...
대략 1개월 전 | 0
답변 있음
How to move figure window to front of all programs?
If you want the window to stay on top even if other windows are given focus, you can set that in the window manager. % you have...
How to move figure window to front of all programs?
If you want the window to stay on top even if other windows are given focus, you can set that in the window manager. % you have...
대략 1개월 전 | 0
답변 있음
image edge detection result
There are some tools for creating DXF files https://www.mathworks.com/matlabcentral/fileexchange/33884-dxflib ... but they're ...
image edge detection result
There are some tools for creating DXF files https://www.mathworks.com/matlabcentral/fileexchange/33884-dxflib ... but they're ...
대략 1개월 전 | 0
| 수락됨
답변 있음
How can the objects touching the boundary of the ROI polygon in an image be removed in Matlab?
You might want to use imclearborder(), but that's not what imclearborder() does. If you have logical masks, then: % say you ha...
How can the objects touching the boundary of the ROI polygon in an image be removed in Matlab?
You might want to use imclearborder(), but that's not what imclearborder() does. If you have logical masks, then: % say you ha...
대략 2개월 전 | 0
답변 있음
decoding of bitstream in image processing?
There are four possible transition states, but only three are (confusingly/incorrectly) described. Assuming the following: a 0...
decoding of bitstream in image processing?
There are four possible transition states, but only three are (confusingly/incorrectly) described. Assuming the following: a 0...
대략 2개월 전 | 0
답변 있음
How to shade the intersection area between two overlay image?
JPG screenshots of the ambiguous superposition of working images are not working images. % the only given image is a screenshot...
How to shade the intersection area between two overlay image?
JPG screenshots of the ambiguous superposition of working images are not working images. % the only given image is a screenshot...
대략 2개월 전 | 0
답변 있음
how to detect the haziness of the color image?
I wasn't going to post this, but I guess I will anyway. I went and grabbed a paper on a "haziness" metric. https://www.resea...
how to detect the haziness of the color image?
I wasn't going to post this, but I guess I will anyway. I went and grabbed a paper on a "haziness" metric. https://www.resea...
대략 2개월 전 | 1
답변 있음
Difference between manually-created gaussian filter and fspecial
I believe the original question was pasted incorrectly, since both examples appear to be identical (except a transpose). Neithe...
Difference between manually-created gaussian filter and fspecial
I believe the original question was pasted incorrectly, since both examples appear to be identical (except a transpose). Neithe...
대략 2개월 전 | 0
답변 있음
text image in matlab without using getframe
See: https://www.mathworks.com/matlabcentral/answers/101413-how-can-i-add-text-to-an-image-and-make-the-text-become-part-of-the...
text image in matlab without using getframe
See: https://www.mathworks.com/matlabcentral/answers/101413-how-can-i-add-text-to-an-image-and-make-the-text-become-part-of-the...
2개월 전 | 0
답변 있음
How to find the positions of pixels with 4 neighborhood in a binary pixel grid
I wouldn't bother with conditionally checking for out-of-bounds indexes in the loop. Simply pad the array and process it. Lett...
How to find the positions of pixels with 4 neighborhood in a binary pixel grid
I wouldn't bother with conditionally checking for out-of-bounds indexes in the loop. Simply pad the array and process it. Lett...
2개월 전 | 1
답변 있음
Superimposing two imagesc graphs over each other.
It can be done, but unless your colormaps are very simple and non-intersecting, you can't expect to be able to visually (or even...
Superimposing two imagesc graphs over each other.
It can be done, but unless your colormaps are very simple and non-intersecting, you can't expect to be able to visually (or even...
2개월 전 | 0
답변 있음
Background segmentation for low contrast images
Let's start by doing what was asked. % read and prepare the image inpict = imread('image.png'); inpict = im2gray(inpict); ...
Background segmentation for low contrast images
Let's start by doing what was asked. % read and prepare the image inpict = imread('image.png'); inpict = im2gray(inpict); ...
2개월 전 | 0
답변 있음
What can I do to make the pattern in the legend larger?I look up a lot of ways, can't solve, ask for help.Thinks!
@Star Strider pretty much reviewed what I dug through. There were changes to legend() over the years. A lot of the workarounds...
What can I do to make the pattern in the legend larger?I look up a lot of ways, can't solve, ask for help.Thinks!
@Star Strider pretty much reviewed what I dug through. There were changes to legend() over the years. A lot of the workarounds...
2개월 전 | 0
| 수락됨
답변 있음
Filters Main Function in Image Processing
At first I thought this was an issue of misusing uint8(), but no. This is just a collage of nonsense and dead code. Most of it...
Filters Main Function in Image Processing
At first I thought this was an issue of misusing uint8(), but no. This is just a collage of nonsense and dead code. Most of it...
2개월 전 | 0