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

3 months ago | 0

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

3 months ago | 1

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

3 months ago | 0

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

3 months ago | 0

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

3 months ago | 1

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

3 months ago | 0

Answered
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); ...

3 months ago | 0

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

3 months ago | 0

| accepted

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

3 months ago | 0

Answered
How to create a new image with average color of input image in the segmentation region?
There are several ways to approach this. I'm going to assume "color" implies that the image may either be RGB or grayscale. Co...

3 months ago | 0

Answered
I can't load the lighthouse.mat image
I found this one (attached), but I can't be sure if it's the right one. I have to wonder, since it seems that you're expecting ...

3 months ago | 0

Answered
Could you please tell me how to extract the particular bits from each bit map images. and a way to store all these constructed files, The matlab program of getting 8 bits map images is as follows
imwrite() exists. For logical images, use PNG. That said, I don't know why you'd be saving the bitplanes as individual images....

3 months ago | 0

Answered
how to store(imwrite) all the extracted coin images in Labeling labeled objects .
At first I thought the code just needed a little cleanup and debugging, but the more I looked at it, I'm thinking it's just a co...

3 months ago | 0

Answered
Sensitivity adaptive threshold : number of pixels ?
The usage of the sensitivity parameter doesn't influence the neighborhood statistics. It's simply used as a polarity-independen...

3 months ago | 0

Answered
How to superimpose a segment image to original image?
don't save images by taking screenshots of the figure, unless you want the result to be arbitrarily resized and padded. don't s...

3 months ago | 0

Answered
Know which branchpoints are connected to other branchpoints?
There are probably smarter ways to do it, but: % a logical image inpict = imread('hands1-mask.png'); % the skeleton sk = b...

3 months ago | 0

Answered
Divide 3d line into segments
I don't think that what's requested is necessarily the only way to get around the problem, but consider the following image: %%...

3 months ago | 1

| accepted

Answered
Incorrect image in bwconncomp function documentation
Yep. That looks like when they edited the example to include the new cc2bw() function, they changed the variable name, but didn...

3 months ago | 0

| accepted

Answered
Some .jpeg photos can not be processed by Matlab code.
The sum of the elements will always be <=255. You're adding uint8 values, so they'll be truncated. % inputs inclusion_darknes...

3 months ago | 0

Answered
Function definitions are not permitted in this context.
OP was running R2014b, so local functions are not allowed in script files.

3 months ago | 1

Answered
how can i enter the pi symbol on keyboard
It depends where you're trying to enter it and why, but these are some examples https://www.mathworks.com/matlabcentral/answers...

3 months ago | 0

Answered
I wrote this code for detecting the edge of the image but the result is different that the built in function result. what is the problem ?
IPT edge() uses multiple different methods for finding edges, then it binarizes and skeletonizes the results. Since we still do...

3 months ago | 0

Answered
Adaptative filter problem with Matlab
Hmh. Well. I don't know what to do with this on the forum, so I'll just attach it. Both files have been fixed. Here's a short...

3 months ago | 0

Answered
Matrix1= randn(3,4,5); Matrix1(2,:,:)是一个1行、4列、5层的三维矩阵; Matrix1(:,2,:)是一个3行、1列、5层的三维矩阵; Matrix1(:,:,2)却是一个3行、4列的二维矩阵。为什么?
This array has 3 rows, 4 columns, and 5 pages. M = randn(3,4,5); Try to visualize it in three dimensions: The colon, : ope...

3 months ago | 0

| accepted

Answered
converting and shifting photo from osciloscope
Again, this would normally be my recommendation: https://www.mathworks.com/matlabcentral/answers/1929130-searching-for-a-line-o...

3 months ago | 0

Answered
Unable to perform assignment because the size of the left side is 1-by-1 and the size of the right side is 3-by-1.
Just use imapplymatrix() inpict = imread('peppers.png'); M = [0.393 0.769 0.189; 0.349 0.686 0.168; 0.272 0.534 0.131]; out...

3 months ago | 0

Answered
Displaying NITFs containing JPEG2000 imagery
Try: https://www.mathworks.com/matlabcentral/fileexchange/42178-read-nitf-file-with-jpeg-2000-image-compression Given a filena...

3 months ago | 0

Answered
reading NITF jpeg2000 compressed images
Try: https://www.mathworks.com/matlabcentral/fileexchange/42178-read-nitf-file-with-jpeg-2000-image-compression Given a filena...

3 months ago | 0

Answered
'Mean Intensity Gradiënt'
Here's my guess % a uint8 grayscale image inpict = imread('https://www.mathworks.com/matlabcentral/answers/uploaded_files/1112...

3 months ago | 0

Answered
graythresh dosn't work with variables other than uint8?
Like many tools in IPT, graythresh() depends on the class of the image array to know what its scale is. When you change classes...

3 months ago | 2

| accepted

Load more