Community Profile

photo

DGM


Last seen: Today 2015 年からアクティブ

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. -- I don't reply to email anymore. If you have a question about my questionable FEX submissions, leave a comment on the FEX page and I'll get the notification. Alternatively, ask a question on the forum and @DGM me so I'll get notified.

統計

All
  • Thankful Level 5
  • Editor's pick for Answers
  • Solver
  • Personal Best Downloads Level 4
  • GitHub Submissions Level 3
  • 24 Month Streak
  • Most Accepted 2022
  • Ace
  • Most Accepted 2021
  • 5-Star Galaxy Level 4
  • Revival Level 3
  • Knowledgeable Level 5

バッジを表示

Content Feed

表示方法

回答済み
Find which halftone was used
I imagine the answer is "maybe, but probably not". The big problem I see is that it seems that when most people say "halftone",...

約21時間 前 | 0

回答済み
How to calculate average intensity of image having some range?
That's simple enough for a single channel image. % inputs inpict = imread('cameraman.tif'); % single-channel (I) roirange = [...

1日 前 | 0

回答済み
Line/FreeDrawROI is not visible in axis w/ Point Cloud
I haven't checked the documentation, but I seem to recall that the images.roi tools need an image object in the given axes. It's...

3日 前 | 0

回答済み
Why does Matlab duplicate the output image ?
There are a number of things going wrong here, none of which should cause an image to be displayed multiple times. ... at least...

4日 前 | 0

| 採用済み

回答済み
extract colored image from white background
Checks are (usually) some light pastel color. Sometimes they'll have a helpful dark border, but other times (like this case, th...

4日 前 | 0

回答済み
Normalizing pixel colours of an RGB image
inpict = imread('peppers.png'); % uint8 inpict = im2double(inpict); % unit-scale float outpict = inpict./sum(inpict,3); % al...

5日 前 | 0

| 採用済み

回答済み
how can i create this image in matlab
Without clarification, I'm going to take the liberty to assume that you want a plain line plot with no dimensioning marks. % pa...

5日 前 | 1

| 採用済み

回答済み
how to extract images from pure white background
Well if it's a pure white background, you can just create a mask that selects everything that's not white and then ... inpict =...

5日 前 | 0

回答済み
Problem with making cash change
I see two problems: First, there's no provision for amounts which are not integer-divisible by 0.1. I don't know if that's cus...

6日 前 | 0

| 採用済み

回答済み
Find path through logical matrix (only walking right or down)
I think my comment still stands. I believe that this works, but I haven't really proven it. I don't think it's very elegant. ...

6日 前 | 0

回答済み
how this command works"meanGL = mean(blackMaskedImage(binaryImage));". My input image is a HSV image. How it calculates the mean.
What it means is probably not a good place to start. Let's back up, because we're probably not doing what we think we're doing ...

6日 前 | 0

回答済み
Why my code calculates values for image statistics, which are far greater or less than the standard ones? Both for encrypted and decrypted images.
Let me guess, they're off by a factor of 255? Pay attention to data scaling and class. Most images you load will be unsigned i...

7日 前 | 0

| 採用済み

回答済み
manually cropping an rgb image to get output in rgb
In this line, the image is MxNx3, but the mask is MxNx1. blackMaskedImage(~BW) = 0; So the mask is only applied to the first c...

8日 前 | 0

送信済み


Image Manipulation Toolbox
A large collection of image manipulation tools of varying utility

10日 前 | ダウンロード 139 件 |

Thumbnail

回答済み
How to display 10 sets of 26 images in a plot?
If you arrange your plots in a regular grid, you don't need all the labels between them. You can move the labels to the edge an...

10日 前 | 0

| 採用済み

回答済み
I have a text file that contains the pixel values of an image, how do I convert it into matrix and then form the image.
Assuming you know what the image size is and how it's stored, you read the file, reshape it, and cast it to a class appropriate ...

11日 前 | 1

| 採用済み

回答済み
issue with rgb2ind
When I was adding gray2pcolor()/uniquant() to MIMT, I thought about this question. I took the time to add dithering modes to bo...

11日 前 | 0

送信済み


Image blending functions
Image blending & compositing with support for 4D images, influence scaling, and several uncommon modes

11日 前 | ダウンロード 12 件 |

Thumbnail

送信済み


Tools to read and write animated gif files
Functions to read and write animated gifs to and from 4-D RGB image arrays

11日 前 | ダウンロード 17 件 |

Thumbnail

回答済み
I need help animating the evolution of a polar plot and saving it as a gif.
A few things: You're only plotting one point at a time, so if you use a linestyle but no marker style, there's nothing to plot....

12日 前 | 0

回答済み
Suppose you thresholded an image at value t1 and thresholded the result at value t2, describe the results if (a) t1>t2 and (b) t2>t1.
Say %B = A >= t1; % threshold A at t1 %C = B >= t2; % threshold B at t2 The relationship between t1,t2 is irrelevant. What ...

12日 前 | 1

| 採用済み

回答済み
How to replace range in matrix with specific value?
You can do that like so: A = [1 2 3; 2 3 4; 4 5 6]; A(:,1:2) = 5

14日 前 | 0

| 採用済み

回答済み
histogram for images in Y Cb Cr colour space.
See the answer here: https://www.mathworks.com/matlabcentral/answers/1936059-how-can-i-plot-the-ycbcr-histograms-with-the-corre...

14日 前 | 0

回答済み
Conversion of grayscale image into RGB and CIELAB color space
I would think that the obvious choice would be % an I/RGB image inpict = imread('https://www.mathworks.com/matlabcentral/answ...

14日 前 | 0

回答済み
Split repetitive image to find pattern
This isn't really an answer so much. I was going to look into it, but I found that it was easier to rewrite it in order to figu...

14日 前 | 0

| 採用済み

質問


What's the lowdown on chinese tag-team accounts posting questions+answers?
I'm sure everyone has seen them. One account posts a question, the other account posts an answer within a minute. Each account...

15日 前 | 1 件の回答 | 3

1

回答

回答済み
How can I plot overlapping rectangles so that they interact with each other?
Here's a start. w = 4; % ribbon width th = 0.2; % ribbon thickness m = 0; % in-plane distance between bend interior an...

15日 前 | 2

| 採用済み

回答済み
How can I rotate my images
The fact that they aren't JPG isn't relevant. If you can read the image as an array of typical numeric class ('double','single'...

16日 前 | 0

| 採用済み

回答済み
Kmeans clustering to detect pothole
I don't know why you'd use kmeans to do this. The absolute color of any pixel doesn't really tell you much about whether it bel...

16日 前 | 0

回答済み
How to draw a CIELAB color chart?
I would argue that a "color wheel" is inappropriate for the task, and in the effort to use it, the example given misrepresents m...

17日 前 | 1

さらに読み込む