Respondida
Checking if two handle objects are identical using 'isequal' and '=='
I don't know if there's a generalized canonical way to compare the similarity of graphics objects, but they're going to differ. ...

más de 2 años hace | 1

Respondida
Issue with imresize, resizeParseInputs
See the comments. It ran without errors, but I don't know if the output is right or if I'm using it correctly. %blend the lapl...

más de 2 años hace | 0

| aceptada

Respondida
Brace indexing into the result of a function call is not supported
Hm. I'm going to guess on this one. function blendedPyramid = blendLaplacianPyramids(pyramids) % the variable is 'pyramids' ...

más de 2 años hace | 0

| aceptada

Respondida
How do I change a black and white grating to red and green?
I'm going to do this with MIMT tools because I'm lazy, and that's why convenient tools exist. Assume we have a single-channel g...

más de 2 años hace | 0

Respondida
Vertical lines artifacts while using ShapeInserter of Vision toolbox ?
See also: https://www.mathworks.com/matlabcentral/answers/411443-problem-with-insertshape It's probably an earlier version th...

más de 2 años hace | 0

Respondida
how to delete value of hsv and convert hsv to gray?
This is a nonsense question. In one sentence, your goal is to preserve color information only and delete brightness information...

más de 2 años hace | 0

Respondida
I have a binary mask, with let's say 40 images (Mask(:,:,40) and I want to calculate centroids per image.
You aren't using the loop index for anything, so nothing changes. You don't appear to be preallocating anything. Your entire s...

más de 2 años hace | 0

Respondida
imfill an specific hole
% a logical image with holes mask = imread('blobs.png'); imshow(mask,'border','tight') % select a particular hole and get a m...

más de 2 años hace | 0

Respondida
Image processing Image conversion
Okay, so the output is a 24b RGB image. We can assume this means an 8,8,8,0,0 arrangement; that's pretty common. So the goal s...

más de 2 años hace | 0

Respondida
Imrotate help - black pixel border remains despite changing the colour of the background?
This answer covers mulptile approaches to controlling the padding color, and the halo left by simple workarounds is addressed wi...

más de 2 años hace | 0

Respondida
Image rotate
See this thread for multiple different solutions: https://www.mathworks.com/matlabcentral/answers/499506-how-to-change-backgrou...

más de 2 años hace | 0

Respondida
Image processing Image rotation
IPT imrotate() has supported interpolation since at least R2009b. % an image % inverted so that the edges have contrast again...

más de 2 años hace | 0

Respondida
convert 8bits image to 16bits
See im2uint16(), im2int16(), etc.

más de 2 años hace | 0

Respondida
convert 16 bit image to 8 bit image
I don't know why nobody brought it up in 10+ years, but: outpict = im2uint8(inpict); % recast with appropriate scaling This wi...

más de 2 años hace | 0

Respondida
how to scan an grayscale image to detect the gray-level value of grayscale image using matlab?
Oh that's easy. Consider the following image. A = imread('cameraman.tif'); Now you're done. Seriously though. This is a...

más de 2 años hace | 0

Respondida
How to convert specific pixel value to pseudocolor?
IPT imoverlay is convenient here, and it will work fine for either I/RGB inputs. While imoverlay() wasn't available at the time...

más de 2 años hace | 0

Discussion


Is it just me, or is the most recent poll now broken?
I noticed a couple new replies show up on the recent poll a day or so ago, but since then, the page can't be loaded anymore in a...

más de 2 años hace | 0

Pregunta


Is it just me, or is the most recent poll now broken?
I noticed a couple new replies show up on the recent poll a day or so ago, but since then, the page can't be loaded anymore in a...

más de 2 años hace | 1 respuesta | 0

1

respuesta

Respondida
Symmetric (Diverging) log color scale
Here's a shoddy example, but at least it does what's described. % let A be your data % note that the data is asymmetric and ...

más de 2 años hace | 1

Respondida
Display a bit plane
The given code more or less does what's requested, though it's not generalized. I'm just going to throw this out there. I'm ...

más de 2 años hace | 0

Respondida
how to add rician noise in image?
MIMT imnoiseFB() is largely a replacement for IPT imnoise(), though it offers a few new options not offered in the original. On...

más de 2 años hace | 0

Respondida
how to convert a grayscale image to rgb image
This answer covers multiple ways, depending on what your expected results are: https://www.mathworks.com/matlabcentral/answers/...

más de 2 años hace | 0

Respondida
Why I recive such an answer:"Incorrect number or types of inputs or outputs for function range."
x = [1 -1.65 2.2 -3.1]; y = range(x) The code you posted should work fine. You probably have something shadowing the intended...

más de 2 años hace | 1

| aceptada

Respondida
what is the map in this example?
Ah. This is one of the hazards of using load() like this. When you run the line load mri ... you're loading the contents o...

más de 2 años hace | 0

Respondida
Image Processing Challenge using edge detection
Well, given that the two images are vastly different, I have no idea where this is going, or what criteria should be used for se...

más de 2 años hace | 0

Respondida
Backgroud Added to images after imwrap transformations
Your image has alpha, but you're not using it. % you need to read the whole image [I,~,alpha] = imread('https://www.mathworks....

más de 2 años hace | 1

| aceptada

Respondida
Image Processing Challenge using edge detection
Without knowing the answers to the clarifications, this is one idea. I recovered a crude image from the damaged screenshot. ...

más de 2 años hace | 0

Respondida
cant detect valid coins and segement them fully, have a deadline in 4 days
Hm. Std alone seems a bit marginal given that some of the valid coins are quite overexposed and some of the painted coins have ...

más de 2 años hace | 0

| aceptada

Respondida
i want to export 3d stl format image into matlab and want to see in matlab
I've used STL Tools from the FEX before. % needed to zip attachments for the forum unzip things.zip % read the file fnam...

más de 2 años hace | 1

Respondida
How do I get help on homework questions on MATLAB Answers?
In the hopes that this stays at the bottom of the thread. (i.e. pls no upvote) Don't paste your unembellished homework as an a...

más de 2 años hace | 0

Cargar más