
DGM
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.
Statistics
RANK
38
of 262.483
REPUTATION
4.569
CONTRIBUTIONS
28 Questions
1.791 Answers
ANSWER ACCEPTANCE
71.43%
VOTES RECEIVED
472
RANK
1.711 of 17.973
REPUTATION
1.006
AVERAGE RATING
5.00
CONTRIBUTIONS
9 Files
DOWNLOADS
174
ALL TIME DOWNLOADS
6559
RANK
of 113.508
CONTRIBUTIONS
0 Problems
0 Solutions
SCORE
0
NUMBER OF BADGES
0
CONTRIBUTIONS
0 Posts
CONTRIBUTIONS
0 Public Channels
AVERAGE RATING
CONTRIBUTIONS
0 Highlights
AVERAGE NO. OF LIKES
Content Feed
generating random particles effect to an image
This is built using MIMT tools: % parameters s = [500 300]; % output image size [height width] numspots = 20; % number of spo...
1 dag ago | 1
| accepted
heatmap color RGB data for manaully created image
The use of heatmap() is unnecessary. This is a basic use of indexed color. Generate a color table and find the indexes into it...
4 dagen ago | 0
| accepted
What non-built-in functions do you use frequently?
I know nobody needs a thread revival, but it's something that I'm constantly reminded of because I have to avoid it in posting t...
5 dagen ago | 0
Saving an imagesc file as .png without the white borders?
If you have an image and want to save the image, save the image. Don't display the image and then save a screenshot of the disp...
5 dagen ago | 0
sum a column per row with loops
I'm going to assume you mean to do a cumulative sum of rows: A = ones(5) % a smaller example B = cumsum(A,2)
5 dagen ago | 0
| accepted
How can i crop the image based on white pixel value
Assuming that the image is 2D, this is one way A = imread('pepcircmask.png'); imshow(A) % find the first and last row contain...
7 dagen ago | 0
Is Pixel Interpolation possible in MATLAB? If so, how?
You should be able to use regionfill() % a test array with a zero pixel A = uint8(randi([0 255],5,5)); A(3,3) = 0; imshow(A)...
8 dagen ago | 1
| accepted
unit 8 and im2double and white pixel
I think it was your comment I responded to earlier, so I suppose there's no harm repeating it here. Tools like imshow() and imwr...
11 dagen ago | 1
How to interpolate a closed polar plot
EDITED: You could enforce endslopes, but this is probably more accurate % the same fake data Angle = [0 90 180 270 360]; Ma...
11 dagen ago | 0
| accepted
Understand the algorithm(s) employed in imlocalbrighten function?
The majority of the work done by imlocalbrighten() is handled by imreducehaze(). The rest is just input parsing, inversion, and...
11 dagen ago | 1
| accepted
I'm trying to perform the XOR operation between a 4x4 block of an image and a pseudo-random matrix of size 4x4.
Use bitxor() on arrays of uint8 class. You'll have to cast your random array to match using uint8(). A = uint8([1 2 3]) B = u...
12 dagen ago | 0
| accepted
Save matrix as a spreadsheet image (in previous versions)
This is what I used to create the first image: tablesize = [3 4]; % size of table A = rand(tablesize); % some test data to fi...
12 dagen ago | 0
Using rgb2ind for colour animated gif
I posted this already as a comment in the other thread, but I'll put it here too: MIMT gifwrite() works to write I/IA/RGB/RGBA ...
13 dagen ago | 0
How can i define part of image to work on (Specific pixel range) not whole image ?
Depending on your needs, you may be able to use roifilt2(). Example Given a 2D (grayscale) image and a logical mask, roifilt2(...
13 dagen ago | 0
| accepted
Segment pink color spots from image
This is one example. A = imread('pink.jpg'); % HSV thresholds for pink areas th = [0.95 0.04; 0.15 1.00; 0.61 1.0...
13 dagen ago | 1
| accepted
Adding Specific Ratio of Noise to an Image
The 'salt & pepper' option is the only option with a density parameter. Salt & Pepper noise will affect a specified fraction of...
13 dagen ago | 0
| accepted
How can I delete part of a binary image?
If all you want to do is put a black region over that part of the image: myimage(310:end,150:300,:) = 0; Otherwise, you'll hav...
14 dagen ago | 0
| accepted
Is it possible to generate an encrypted function that can be used a limited number of times?
I suppose one way would be to make a function that deletes itself, though this could be defeated. function mayfly() %...
14 dagen ago | 1
How to covert figure to png after image stitching
What type of code should insert to generate the figure to png Don't save a screenshot of the image. Save the image itself, usi...
18 dagen ago | 0
Count occurences of row in matrix faster than by using nnz
If you know there are repeated rows, then you know that you're performing redundant operations. One thing you could do is to us...
18 dagen ago | 1
| accepted
How to multiply and sum extracted array elements based array indices held in another array?
I'm not sure about the index offsets you're using, but this is why you don't try doing scattered indexing using subscripts. If ...
18 dagen ago | 0
getting the index after comparing two logicals
Something like this: a = [1 0 0 0 1]; b = [0 0 0 0 1]; idx = find(a & b) Though depending on your needs, the usage of find...
18 dagen ago | 0
Why disk structuring element of disk is 4? It's usually 3 or 21
The size of the structuring element can be whatever is suitable for the task at hand. That's why it's user-specified. While st...
18 dagen ago | 0
Replacing elements in a vector
Your example isn't consistent. I'm assuming you want this: A = [10 20; 30 40; 50 60]; idx = [2 1; 1 4; 3 3]; B = A.'; B =...
22 dagen ago | 0
Find unique values in array
Since there's generally no guarantee that the rows have the same number of unique elements, then I wouldn't assume that would wo...
22 dagen ago | 0
Submitted
Image Manipulation Toolbox
A large collection of image manipulation tools of varying utility
22 dagen ago | 123 downloads |

border of random colour around grey image
While this answer covers a number of ways to get a border on an image, it also demonstrates that getting a colored border is a b...
22 dagen ago | 0
Creating border of an image
While it may suffice to use array indexing to insert the image into a larger image, there are other methods. Depending on what'...
23 dagen ago | 0
How do I create a gradient border around an image?
You could also do this by using inpainting tools. Using IPT regionfill(): A = imread('peppers.png'); padwidth = [30 30]; ...
23 dagen ago | 0
adding borders to images
The following reference answer covers black/gray/white borders, colored borders, and patterned/textured borders using MATLAB/IPT...
23 dagen ago | 0